1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

""" 

Sparse Eigenvalue Solvers 

------------------------- 

 

The submodules of sparse.linalg.eigen: 

1. lobpcg: Locally Optimal Block Preconditioned Conjugate Gradient Method 

 

""" 

from __future__ import division, print_function, absolute_import 

 

from .arpack import * 

from .lobpcg import * 

 

__all__ = [s for s in dir() if not s.startswith('_')] 

 

from scipy._lib._testutils import PytestTester 

test = PytestTester(__name__) 

del PytestTester