projektAI/venv/Lib/site-packages/scipy/sparse/linalg/eigen/lobpcg/__init__.py

17 lines
420 B
Python
Raw Normal View History

2021-06-06 22:13:05 +02:00
"""
Locally Optimal Block Preconditioned Conjugate Gradient Method (LOBPCG)
LOBPCG is a preconditioned eigensolver for large symmetric positive definite
(SPD) generalized eigenproblems.
Call the function lobpcg - see help for lobpcg.lobpcg.
"""
from .lobpcg import *
__all__ = [s for s in dir() if not s.startswith('_')]
from scipy._lib._testutils import PytestTester
test = PytestTester(__name__)
del PytestTester