Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
alt
/
python35
/
lib64
/
python3.5
/
site-packages
/
scipy
/
sparse
/
linalg
/
eigen
/
File Content:
__init__.py
""" 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 numpy.testing import Tester test = Tester().test bench = Tester().bench
Submit
FILE
FOLDER
Name
Size
Permission
Action
__pycache__
---
0755
arpack
---
0755
lobpcg
---
0755
__init__.py
421 bytes
0644
setup.py
474 bytes
0644
N4ST4R_ID | Naxtarrr