Coverage for src/cvx/core/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-07-22 10:34 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-07-22 10:34 +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`,
5plus the :class:`ConeProgramBuilder` helper for assembling Clarabel problems.
7"""
9from .bounds import Bounds as Bounds
10from .conic import ConeProgramBuilder as ConeProgramBuilder
11from .model import Model as Model
12from .parameter import Parameter as Parameter
13from .variable import Variable as Variable