Skip to content

Commit a8ed977

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

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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)