Skip to content

Commit

Permalink
Remove HIGHS solver from scip options
Browse files Browse the repository at this point in the history
  • Loading branch information
pablormier committed Jan 13, 2025
1 parent bcc2219 commit 1faa5e0
Show file tree
Hide file tree
Showing 3 changed files with 199 additions and 147 deletions.
2 changes: 1 addition & 1 deletion corneto/backend/_cvxpy_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def _solve(
cfg = options.get("mosek_params", dict())
cfg.update({"mioMaxTime": float(max_seconds)})
options["mosek_params"] = cfg
elif s == "SCIPY" or s == "HIGHS":
elif s == "SCIPY":
cfg = options.get("scipy_options", dict())
cfg.update({"time_limit": float(max_seconds), "disp": verbosity > 0})
options["scipy_options"] = cfg
Expand Down
Loading

0 comments on commit 1faa5e0

Please sign in to comment.