Skip to content

Commit

Permalink
docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Nov 4, 2023
1 parent 2c15221 commit 5c2c729
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions motile/expressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,24 @@


class VariableType(IntEnum):
"""Type of a variable."""

Continuous = 0
Integer = auto()
Binary = auto()


class Relation(IntEnum):
"""Type of a constraint relation."""

LessEqual = 0
Equal = auto()
GreaterEqual = auto()


class Sense(IntEnum):
"""Type of an objective sense."""

Minimize = 0
Maximize = auto()

Expand Down

0 comments on commit 5c2c729

Please sign in to comment.