Coverage for src / cvx / core / __init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-13 06:46 +0000
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-13 06:46 +0000
1"""Core building blocks shared across cvx packages.
3Exposes the fundamental types used to build parametric optimization models:
4:class:`Model`, :class:`Bounds`, :class:`Parameter`, and :class:`Variable`.
6"""
8from .bounds import Bounds as Bounds
9from .model import Model as Model
10from .parameter import Parameter as Parameter
11from .variable import Variable as Variable