correct possible ambiguation of and

This commit is contained in:
Trolli Schmittlauch 2017-06-26 14:16:02 +02:00
parent 3b8fd60ede
commit e82512f2b0

4
doc.md
View file

@ -31,6 +31,6 @@ Both operations require that the start times are recomputed.
- only one job on a machine any given time
## implementation in Python
- translate jobs into lists of tasks, problem into list of jobs, ie problem = [$T_0, T_1,\dots,T_{k-1}$], $T_i$ = [$\tau_1,\tau_2,\dots$]
- address tasks based on their indices, ie [0][1] is the second job of the first task.
- translate problem into list of jobs, jobs into lists of tasks, ie problem = [$T_0, T_1,\dots,T_{k-1}$], $T_i$ = [$\tau_1,\tau_2,\dots$]
- address tasks based on their indices, ie [0][1] is the second task of the first job.
- compute only one possible next solution, rate, drop/accept. $\delta$ is computed iteratively during generation