Skip to content

Commit

Permalink
bake in max performance parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Sep 21, 2023
1 parent 9e724b4 commit f9540e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/python/rcpsp_sat.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
_PARAMS = flags.DEFINE_string("params", "", "Sat solver parameters.")
_USE_INTERVAL_MAKESPAN = flags.DEFINE_bool(
"use_interval_makespan",
False,
True,
"Whether we encode the makespan using an interval or not.",
)
_HORIZON = flags.DEFINE_integer("horizon", -1, "Force horizon.")
Expand All @@ -51,7 +51,7 @@
)
_DELAY_TIME_LIMIT = flags.DEFINE_float(
"delay_time_limit",
0.0,
20.0,
"Time limit when computing min delay between tasks."
+ " A non-positive time limit disable min delays computation.",
)
Expand Down

0 comments on commit f9540e8

Please sign in to comment.