Coverage for src\pqlattice\typing\_types.py: 100%
6 statements
« prev ^ index » next coverage.py v7.11.0, created at 2026-01-05 00:30 +0100
« prev ^ index » next coverage.py v7.11.0, created at 2026-01-05 00:30 +0100
1from typing import Any
3from numpy.typing import NDArray
5type Array = NDArray[Any]
7type Vector = NDArray[Any]
8type Matrix = NDArray[Any]
9type SquareMatrix = NDArray[Any]