From 5265655dba893fca89b6ff641c4ca9b2a948a210 Mon Sep 17 00:00:00 2001 From: Abdullah Hasani <71054105+abdullah50053@users.noreply.github.com> Date: Sat, 28 Mar 2026 16:47:09 -0500 Subject: [PATCH] Swap time values in jssp.py to match docs example Resolves #147 --- examples/jssp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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))