Skip to content

Commit

Permalink
The SciPy solvers are not presently useful or adequately tested.
Browse files Browse the repository at this point in the history
They fail completely with newer versions of SciPy (ticket:163).
Some day (ticket:167) we'll redo them properly.
This resolves ticket:163.


git-svn-id: svn+ssh://code.matforge.org/fipy/trunk@2831 d80e17d7-ff13-0410-a124-85740d801063
  • Loading branch information
guyer committed Nov 20, 2008
1 parent 5441732 commit ec41569
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 415 deletions.
11 changes: 0 additions & 11 deletions fipy/solvers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
from fipy.solvers.trilinos import *
elif '--Pysparse' in sys.argv[1:]:
from fipy.solvers.pysparse import *
elif '--Scipy' in sys.argv[1:]:
from fipy.solvers.scipy import *
else:
import os
# Next, check for an environment variable telling us which solver to use
Expand All @@ -23,8 +21,6 @@
from fipy.solvers.pysparse import *
elif os.environ['FIPY_SOLVERS'].lower() == 'trilinos':
from fipy.solvers.trilinos import *
elif os.environ['FIPY_SOLVERS'].lower() == 'scipy':
from fipy.solvers.scipy import *
else:
raise ImportError, 'Unknown solver package %s' % os.environ['FIPY_SOLVERS']
else:
Expand All @@ -45,13 +41,6 @@
except:
pass

if not foundSolvers:
try:
from fipy.solvers.scipy import *
foundSolvers = True
except:
pass

if not foundSolvers:
raise ImportError, "Could not import any solver package. If you are using Trilinos, make sure you have all of the necessary Trilinos packages installed - Epetra, EpetraExt, AztecOO, Amesos, ML, and IFPACK."

Expand Down
3 changes: 0 additions & 3 deletions fipy/solvers/scipy/__init__.py

This file was deleted.

105 changes: 0 additions & 105 deletions fipy/solvers/scipy/linearCGSolver.py

This file was deleted.

102 changes: 0 additions & 102 deletions fipy/solvers/scipy/linearGMRESSolver.py

This file was deleted.

93 changes: 0 additions & 93 deletions fipy/solvers/scipy/linearLUSolver.py

This file was deleted.

54 changes: 0 additions & 54 deletions fipy/solvers/scipy/scipySolver.py

This file was deleted.

Loading

0 comments on commit ec41569

Please sign in to comment.