Skip to content

Commit

Permalink
Work around failing test because of HiGHS (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Aug 12, 2024
1 parent 61cc99b commit 9582039
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion test/test_solver.jl
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,14 @@ end
test_solver = optimizer_with_attributes(
Alpine.Optimizer,
"nlp_solver" => IPOPT,
"mip_solver" => HIGHS,
# We don't use the default HiGHS because it struggles with the numerical
# scaling of this example.
# "mip_solver" => HIGHS,
"mip_solver" => optimizer_with_attributes(
HiGHS.Optimizer,
MOI.Silent() => true,
"presolve" => "off",
),
"disc_var_pick" => 3,
"presolve_bp" => true,
"presolve_bt" => false,
Expand Down

0 comments on commit 9582039

Please sign in to comment.