Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/scipy/sparse/linalg/_eigen/lobpcg/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-23 06:43 +0000
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-23 06:43 +0000
1"""
2Locally Optimal Block Preconditioned Conjugate Gradient Method (LOBPCG)
4LOBPCG is a preconditioned eigensolver for large symmetric positive definite
5(SPD) generalized eigenproblems.
7Call the function lobpcg - see help for lobpcg.lobpcg.
9"""
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