__init__.py 439 B

123456789101112131415161718
  1. """
  2. Sparse Eigenvalue Solvers
  3. -------------------------
  4. The submodules of sparse.linalg.eigen:
  5. 1. lobpcg: Locally Optimal Block Preconditioned Conjugate Gradient Method
  6. """
  7. from __future__ import division, print_function, absolute_import
  8. from .arpack import *
  9. from .lobpcg import *
  10. __all__ = [s for s in dir() if not s.startswith('_')]
  11. from scipy._lib._testutils import PytestTester
  12. test = PytestTester(__name__)
  13. del PytestTester