solver submodule structure working again
This commit is contained in:
parent
bcf3650211
commit
c5e956f386
|
@ -16,7 +16,7 @@ from ._lattice import Symmetry, Lattice# noqa
|
||||||
from ._orientation import Orientation # noqa
|
from ._orientation import Orientation # noqa
|
||||||
from ._result import Result # noqa
|
from ._result import Result # noqa
|
||||||
from ._geom import Geom # noqa
|
from ._geom import Geom # noqa
|
||||||
from ._solver import Solver # noqa
|
from . import solver # noqa
|
||||||
|
|
||||||
# deprecated
|
# deprecated
|
||||||
from ._asciitable import ASCIItable # noqa
|
from ._asciitable import ASCIItable # noqa
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
"""Tools to control the various solvers."""
|
|
||||||
|
|
||||||
from .solver import Solver # noqa
|
|
||||||
from .marc import Marc # noqa
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
"""Tools to control the various solvers."""
|
||||||
|
|
||||||
|
from ._marc import Marc # noqa
|
|
@ -3,7 +3,7 @@ import subprocess
|
||||||
import shlex
|
import shlex
|
||||||
import string
|
import string
|
||||||
|
|
||||||
from .solver import Solver
|
from ._solver import Solver
|
||||||
import damask
|
import damask
|
||||||
|
|
||||||
class Marc(Solver):
|
class Marc(Solver):
|
Loading…
Reference in New Issue