Skip to content

Commit 8e76458

Browse files
committed
Merge master
2 parents 28b810a + a0165ec commit 8e76458

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
print("Assuming that SCIP is installed globally, because SCIPOPTDIR is undefined.\n")
2020

2121
else:
22+
2223
# check whether SCIP is installed in the given directory
2324
if os.path.exists(os.path.join(scipoptdir, "include")):
2425
includedir = os.path.abspath(os.path.join(scipoptdir, "include"))

tests/test_matrix_variable.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,6 @@ def test_expr_from_matrix_vars():
9090
mvar = m.addMatrixVar(shape=(2, 2), vtype="B", name="A")
9191
mvar2 = m.addMatrixVar(shape=(2, 2), vtype="B", name="B")
9292

93-
assert isinstance(mvar, MatrixVariable)
94-
assert isinstance(mvar2, MatrixVariable)
95-
9693
mvar_double = 2 * mvar
9794
assert isinstance(mvar_double, MatrixExpr)
9895
for expr in np.nditer(mvar_double, flags=["refs_ok"]):

0 commit comments

Comments
 (0)