Fix wording

This commit is contained in:
Corentin Le Molgat
2022-05-18 11:19:34 +02:00
parent 2c7d13d6cd
commit 2c63042708
2 changed files with 2 additions and 2 deletions

View File

@@ -192,7 +192,7 @@ def main(args):
l_machine = task[alt_id][1]
l_type = task[alt_id][2]
# Link the master variables with the local ones.
# Link the original variables with the local ones.
model.Add(start == l_start).OnlyEnforceIf(l_presence)
model.Add(duration == l_duration).OnlyEnforceIf(l_presence)
model.Add(end == l_end).OnlyEnforceIf(l_presence)

View File

@@ -36,7 +36,7 @@ At the very least, it can provide a starting point and hopefully
minimize stress and arguments.
Adapted from
https://github.com/google/or-tools/blob/master/examples/csharp/wedding_optimal_chart.cs
https://github.com/google/or-tools/blob/main/examples/csharp/wedding_optimal_chart.cs
"""