From 1b5c51dd5617d6c7cc2efaf535882db5ef8b0683 Mon Sep 17 00:00:00 2001 From: Vincent Payet Date: Mon, 2 Dec 2024 16:15:47 +0100 Subject: [PATCH] remove use-ortools --- scripts/run_command_building.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/run_command_building.py b/scripts/run_command_building.py index 1d6019a..f5f5972 100644 --- a/scripts/run_command_building.py +++ b/scripts/run_command_building.py @@ -35,8 +35,7 @@ def make_command_to_run(path_where_to_find_exe, batch_name, study_path): command_to_run = [exe_path, "-i", str(study_path)] if batch_name == "valid-milp": - command_to_run.append('--use-ortools') - command_to_run.append('--ortools-solver=coin') + command_to_run.append('--solver=coin') if batch_name == "valid-named-mps": command_to_run.append('--named-mps-problems') @@ -47,4 +46,4 @@ def run_command(command): process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None) process.communicate() exit_code = process.wait() - return (exit_code == 0) \ No newline at end of file + return (exit_code == 0)