decomp_cholesky.py 649 B

123456789101112131415161718192021
  1. # This file is not meant for public use and will be removed in SciPy v2.0.0.
  2. # Use the `scipy.linalg` namespace for importing the functions
  3. # included below.
  4. from scipy._lib.deprecation import _sub_module_deprecation
  5. __all__ = [ # noqa: F822
  6. 'cholesky', 'cho_factor', 'cho_solve', 'cholesky_banded',
  7. 'cho_solve_banded', 'LinAlgError', 'get_lapack_funcs'
  8. ]
  9. def __dir__():
  10. return __all__
  11. def __getattr__(name):
  12. return _sub_module_deprecation(sub_package="linalg", module="decomp_cholesky",
  13. private_modules=["_decomp_cholesky"], all=__all__,
  14. attribute=name)