Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove 1000 datasize case
7min is still running
  • Loading branch information
Zeroto521 committed Oct 21, 2025
commit 508beeca79edee7d1e90bb240d6865c1553cb786
2 changes: 1 addition & 1 deletion tests/test_matrix_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def test_matrix_sum_argument():
assert (m.getVal(y) == np.full((2, 4), 3)).all().all()


@pytest.mark.parametrize("n", [100, 500, 1000])
@pytest.mark.parametrize("n", [100, 200, 500])
def test_sum_performance(n):
model = Model()
x = model.addMatrixVar((n, n))
Expand Down
Loading