Add _gurobipy suffix to all build_model functions

This commit is contained in:
2024-02-06 16:08:24 -06:00
parent fb3f219ea8
commit b55554d410
28 changed files with 99 additions and 102 deletions

View File

@@ -62,7 +62,7 @@ def test_usage_stab(
stab_pyo_h5: List[str],
default_extractor: FeaturesExtractor,
) -> None:
for (h5, build_model) in [
for h5, build_model in [
(stab_pyo_h5, build_stab_model_pyomo),
(stab_gp_h5, build_stab_model_gurobipy),
]:

View File

@@ -56,7 +56,7 @@ def test_usage_tsp(
tsp_pyo_h5: List[str],
default_extractor: FeaturesExtractor,
) -> None:
for (h5, build_model) in [
for h5, build_model in [
(tsp_pyo_h5, build_tsp_model_pyomo),
(tsp_gp_h5, build_tsp_model_gurobipy),
]: