solver submodule structure working again

This commit is contained in:
Martin Diehl 2020-03-21 20:14:15 +01:00
parent bcf3650211
commit c5e956f386
5 changed files with 5 additions and 6 deletions

View File

@ -16,7 +16,7 @@ from ._lattice import Symmetry, Lattice# noqa
from ._orientation import Orientation # noqa
from ._result import Result # noqa
from ._geom import Geom # noqa
from ._solver import Solver # noqa
from . import solver # noqa
# deprecated
from ._asciitable import ASCIItable # noqa

View File

@ -1,4 +0,0 @@
"""Tools to control the various solvers."""
from .solver import Solver # noqa
from .marc import Marc # noqa

View File

@ -0,0 +1,3 @@
"""Tools to control the various solvers."""
from ._marc import Marc # noqa

View File

@ -3,7 +3,7 @@ import subprocess
import shlex
import string
from .solver import Solver
from ._solver import Solver
import damask
class Marc(Solver):