@@ -969,18 +969,13 @@ def add_constraint(self, coefficients, new_b, new_constraint_type="<="):
969
969
sage: P2 = P.add_constraint(([2, 4, 6]), 2000, new_constraint_type="<=")
970
970
Traceback (most recent call last):
971
971
...
972
- ValueError: A and coefficients have incompatible dimensions
972
+ TypeError: number of columns must be the same, not 2 and 3
973
973
sage: P3 = P.add_constraint(([2, 4]), 2000, new_constraint_type="<")
974
974
Traceback (most recent call last):
975
975
...
976
976
ValueError: unknown constraint type
977
977
"""
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 ,)
984
979
A , b , c , x = self .Abcx ()
985
980
A = A .stack (matrix (coefficients ))
986
981
b = vector (tuple (b ) + (new_b ,))
@@ -2070,10 +2065,8 @@ def add_constraint(self, coefficients, new_b, new_slack_variable=None):
2070
2065
sage: P3 = P.add_constraint(([2, 4, 6]), 2000)
2071
2066
Traceback (most recent call last):
2072
2067
...
2073
- ValueError: A and coefficients have incompatible dimensions
2068
+ TypeError: number of columns must be the same, not 2 and 3
2074
2069
"""
2075
- if self .n_variables () != matrix (coefficients ).ncols ():
2076
- raise ValueError ("A and coefficients have incompatible dimensions" )
2077
2070
A , b , c , x = self .Abcx ()
2078
2071
slack = list (self .slack_variables ())
2079
2072
0 commit comments