Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/scipy/sparse/linalg/eigen/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2Sparse Eigenvalue Solvers
3-------------------------
5The submodules of sparse.linalg.eigen:
6 1. lobpcg: Locally Optimal Block Preconditioned Conjugate Gradient Method
8"""
9from .arpack import *
10from .lobpcg import *
12__all__ = [s for s in dir() if not s.startswith('_')]
14from scipy._lib._testutils import PytestTester
15test = PytestTester(__name__)
16del PytestTester