Coverage for /usr/lib/python3/dist-packages/scipy/optimize/_lsq/__init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.9.1, created at 2025-06-14 15:55 +0200

1"""This module contains least-squares algorithms.""" 

2from .least_squares import least_squares 

3from .lsq_linear import lsq_linear 

4 

5__all__ = ['least_squares', 'lsq_linear']