Browse Source

Correct typos

Arthur Bit-Monnot 3 years ago
parent
commit
9802bd39fd
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      README.md
  2. 1
    1
      src/main/java/jobshop/solvers/DescentSolver.java

+ 1
- 1
README.md View File

@@ -27,7 +27,7 @@ AVG      -        -          1.0        -   9.1
27 27
 
28 28
 Fields in the result view are the following :
29 29
 - `instance`: name of the instance
30
-- `size`: size of the instance `{nom-jobs}x{num-tasks}`
30
+- `size`: size of the instance `{num-jobs}x{num-tasks}`
31 31
 - `best`: best known resultfor this instance
32 32
 - `runtime`: time taken by the solver in milliseconds (rounded)
33 33
 - `makespan`: makespan of the solution

+ 1
- 1
src/main/java/jobshop/solvers/DescentSolver.java View File

@@ -44,7 +44,7 @@ public class DescentSolver implements Solver {
44 44
      * machine 1 : (0,2) (2,1) (1,1)
45 45
      * machine 2 : ...
46 46
      *
47
-     * The swam with : machine = 1, t1= 0 and t2 = 1
47
+     * The swap with : machine = 1, t1= 0 and t2 = 1
48 48
      * Represent inversion of the two tasks : (0,2) and (2,1)
49 49
      * Applying this swap on the above resource order should result in the following one :
50 50
      * machine 0 : (0,1) (1,2) (2,2)

Loading…
Cancel
Save