VarType Bases: Enum Constants defining variable type. Source code in q3as/quadratic/problems/types.py 11 12 13 14 15 16class VarType(Enum): """Constants defining variable type.""" CONTINUOUS = 0 BINARY = 1 INTEGER = 2