Skip to content

Commit

Permalink
generate ortools+sirius reference
Browse files Browse the repository at this point in the history
  • Loading branch information
pet-mit committed Oct 11, 2024
1 parent 9bdef47 commit 9a45796
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/run_command_building.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,12 @@ def make_command_to_run(path_where_to_find_exe, batch_name, study_path):
print(f"Found executabled : {exe_path}")

command_to_run = [exe_path, "-i", str(study_path)]

command_to_run.append('--use-ortools')
if batch_name == "valid-milp":
command_to_run.append('--use-ortools')
command_to_run.append('--ortools-solver=coin')
else:
command_to_run.append('--ortools-solver=sirius')

if batch_name == "valid-named-mps":
command_to_run.append('--named-mps-problems')
Expand Down

0 comments on commit 9a45796

Please sign in to comment.