-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from ucl-bug/docs
Updated docs
- Loading branch information
Showing
10 changed files
with
120 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
::: jaxdf.mods | ||
handler: python | ||
selection: | ||
filters: | ||
- "__init__$" | ||
rendering: | ||
show_root_heading: true | ||
show_source: false | ||
show_object_full_path: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,37 @@ | ||
# nopycln: file | ||
from jaxdf.core import operator, debug_config, constants # isort:skip | ||
from jaxdf import util, geometry # isort:skip | ||
from jaxdf.discretization import * # isort:skip | ||
from jaxdf import conv, logger | ||
from jaxdf.core import constants, debug_config, discretization, operator | ||
# Import geometry elements | ||
from jaxdf.geometry import Domain | ||
from jaxdf.mods import Module | ||
|
||
from jaxdf.discretization import ( # isort:skip | ||
Continuous, FiniteDifferences, FourierSeries, Linear, OnGrid) | ||
|
||
from jaxdf.core import Field # isort:skip | ||
|
||
from jaxdf import util, geometry, mods, operators # isort:skip | ||
|
||
# Must be imported after discretization | ||
from jaxdf.operators.magic import * # isort:skip | ||
from jaxdf import operators # isort:skip | ||
|
||
__all__ = [ | ||
'constants', | ||
'conv', | ||
'discretization', | ||
'debug_config', | ||
'geometry', | ||
'logger', | ||
'operator', | ||
'operators', | ||
'util', | ||
'Continuous', | ||
'Domain', | ||
'FiniteDifferences', | ||
'FourierSeries', | ||
'Field', | ||
'Linear', | ||
'Module', | ||
'OnGrid', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters