diff --git a/examples/jssp.py b/examples/jssp.py index d889b1d3..cc08d419 100644 --- a/examples/jssp.py +++ b/examples/jssp.py @@ -8,8 +8,8 @@ n = m = 3 -times = [[2, 1, 2], - [1, 2, 2], +times = [[1, 2, 2], + [2, 1, 2], [1, 2, 1]] M = sum(times[i][j] for i in range(n) for j in range(m))