Skip to content

Commit 5265655

Browse files
Swap time values in jssp.py to match docs example
Resolves #147
1 parent ea8c109 commit 5265655

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/jssp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
n = m = 3
1010

11-
times = [[2, 1, 2],
12-
[1, 2, 2],
11+
times = [[1, 2, 2],
12+
[2, 1, 2],
1313
[1, 2, 1]]
1414

1515
M = sum(times[i][j] for i in range(n) for j in range(m))

0 commit comments

Comments
 (0)