Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 7c93d94

Browse files
author
Matthias Koeppe
committed
add_constraint: Delegate error checking to constructor
1 parent 6d5f861 commit 7c93d94

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/sage/numerical/interactive_simplex_method.py

+3-10
Original file line numberDiff line numberDiff line change
@@ -969,18 +969,13 @@ def add_constraint(self, coefficients, new_b, new_constraint_type="<="):
969969
sage: P2 = P.add_constraint(([2, 4, 6]), 2000, new_constraint_type="<=")
970970
Traceback (most recent call last):
971971
...
972-
ValueError: A and coefficients have incompatible dimensions
972+
TypeError: number of columns must be the same, not 2 and 3
973973
sage: P3 = P.add_constraint(([2, 4]), 2000, new_constraint_type="<")
974974
Traceback (most recent call last):
975975
...
976976
ValueError: unknown constraint type
977977
"""
978-
if self.n_variables() != matrix(coefficients).ncols():
979-
raise ValueError("A and coefficients have incompatible dimensions")
980-
if new_constraint_type in ["<=", ">=", "=="]:
981-
constraint_type = self._constraint_types + (new_constraint_type,)
982-
else:
983-
raise ValueError("unknown constraint type")
978+
constraint_type = self._constraint_types + (new_constraint_type,)
984979
A, b, c, x = self.Abcx()
985980
A = A.stack(matrix(coefficients))
986981
b = vector(tuple(b) + (new_b,))
@@ -2070,10 +2065,8 @@ def add_constraint(self, coefficients, new_b, new_slack_variable=None):
20702065
sage: P3 = P.add_constraint(([2, 4, 6]), 2000)
20712066
Traceback (most recent call last):
20722067
...
2073-
ValueError: A and coefficients have incompatible dimensions
2068+
TypeError: number of columns must be the same, not 2 and 3
20742069
"""
2075-
if self.n_variables() != matrix(coefficients).ncols():
2076-
raise ValueError("A and coefficients have incompatible dimensions")
20772070
A, b, c, x = self.Abcx()
20782071
slack = list(self.slack_variables())
20792072

0 commit comments

Comments
 (0)