Skip to content

Commit

Permalink
Updates to pymatsolver not working
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanc1 committed Jan 9, 2017
1 parent 6758341 commit 1d69569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymatsolver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from pymatsolver.direct import Pardiso
AvailableSolvers['Pardiso'] = True
PardisoSolver = Pardiso # backwards compatibility
except ImportError:
except Exception:
SolverHelp['Pardiso'] = """Pardiso is not working
Ensure that you have pyMKL installed, which may also require Python
Expand All @@ -39,7 +39,7 @@
from pymatsolver.mumps import Mumps
AvailableSolvers['Mumps'] = True
MumpsSolver = Mumps # backwards compatibility
except ImportError:
except Exception:
SolverHelp['Mumps'] = """Mumps is not working.
Ensure that you have Mumps installed, and know where the path to it is.
Expand Down

0 comments on commit 1d69569

Please sign in to comment.