Coverage for src / cvx / linalg / types.py: 100%
4 statements
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-19 05:40 +0000
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-19 05:40 +0000
1"""Type aliases for linear algebra utilities.
3Defines a NumPy ndarray alias used across the linalg subpackage.
4"""
6from typing import TypeAlias
8import numpy as np
9import numpy.typing as npt
11Matrix: TypeAlias = npt.NDArray[np.float64]