From 234019bb4d6518693bc59da2ed096a692c88f1cf Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Tue, 3 Sep 2019 15:41:16 -0700 Subject: [PATCH] dummy stuff not needed --- python/damask/solver/__init__.py | 2 -- python/damask/solver/solver.py | 3 --- python/damask/solver/spectral.py | 9 --------- 3 files changed, 14 deletions(-) delete mode 100644 python/damask/solver/spectral.py diff --git a/python/damask/solver/__init__.py b/python/damask/solver/__init__.py index cd8f0b193..90ae1298b 100644 --- a/python/damask/solver/__init__.py +++ b/python/damask/solver/__init__.py @@ -1,7 +1,5 @@ -# -*- coding: UTF-8 no BOM -*- """Tools to control the various BVP solvers""" from .solver import Solver # noqa -from .spectral import Spectral # noqa from .marc import Marc # noqa from .abaqus import Abaqus # noqa diff --git a/python/damask/solver/solver.py b/python/damask/solver/solver.py index d210595b5..7a6177bf5 100644 --- a/python/damask/solver/solver.py +++ b/python/damask/solver/solver.py @@ -1,6 +1,3 @@ -# -*- coding: UTF-8 no BOM -*- - - import damask.solver class Solver(): diff --git a/python/damask/solver/spectral.py b/python/damask/solver/spectral.py deleted file mode 100644 index 7d40c1ec3..000000000 --- a/python/damask/solver/spectral.py +++ /dev/null @@ -1,9 +0,0 @@ -# -*- coding: UTF-8 no BOM -*- - - -from .solver import Solver - -class Spectral(Solver): - - def __init__(self): - self.solver='Spectral'