File tree Expand file tree Collapse file tree 4 files changed +7
-21
lines changed Expand file tree Collapse file tree 4 files changed +7
-21
lines changed Original file line number Diff line number Diff line change 1-
2- from . import distributor
3- from . import domain
4- #from . import spaces
Original file line number Diff line number Diff line change 77from .system import CoeffSystem
88from ..tools .array import apply_sparse
99
10+
11+ # Public interface
12+ __all__ = []
13+
1014# Track implemented schemes
1115schemes = OrderedDict ()
1216def add_scheme (scheme ):
17+ __all__ .append (scheme .__name__ )
1318 schemes [scheme .__name__ ] = scheme
1419 return scheme
1520
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11"""Dedalus public interface."""
22
33# Import public interfaces from submodules
4+ from .core .arithmetic import *
5+ from .core .basis import *
46from .core .coords import *
57from .core .distributor import *
6- from .core .basis import *
78from .core .field import *
89from .core .operators import *
9- from .core .arithmetic import *
1010from .core .problems import *
1111from .core .timesteppers import *
1212
You can’t perform that action at this time.
0 commit comments