Skip to content

Commit 76eb296

Browse files
committed
MacOS binaries
Former-commit-id: d95d95d [formerly 6834d7c] Former-commit-id: 26d941b
1 parent eea20f6 commit 76eb296

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

mip/constants.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
# infinity representation
1111
INF = float("inf")
1212

13-
1413
# constraint senses
1514
EQUAL = "="
1615
LESS_OR_EQUAL = "<"

mip/exceptions.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ class InvalidLinExpr(Exception):
44
pass
55

66

7+
class InvalidParameter(Exception):
8+
"""Exception that is raised when an invalid/non-existent
9+
parameter is used or set"""
10+
pass
11+
12+
13+
class ParameterNotAvailable(Exception):
14+
"""Exception that is raised when some parameter is not
15+
available for the current solver"""
16+
pass
17+
18+
719
class SolutionNotAvailable(Exception):
820
"""Exception that is raised when some method to query some
921
solution property is used but no solution is available"""
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
851e0c8c9801a8ad5027bd354a4390a6a7d8be5f
1+
acc32d4deb23be424f96c36138377e08b2a639d1

0 commit comments

Comments
 (0)