Skip to content

VarType

Bases: Enum

Constants defining variable type.

Source code in q3as/quadratic/problems/types.py
class VarType(Enum):
    """Constants defining variable type."""

    CONTINUOUS = 0
    BINARY = 1
    INTEGER = 2