We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46ec8cd commit a7c6017Copy full SHA for a7c6017
test/model.jl
@@ -21,6 +21,15 @@
21
@test pm.model[:my_var] == x
22
@test m[:my_var] == x
23
end
24
+
25
+ @testset "run with user provided JuMP model in direct mode" begin
26
+ m = JuMP.direct_model(HiGHS.Optimizer())
27
+ JuMP.set_optimizer_attribute(m, "output_flag", false)
28
+ result = run_dc_opf("../test/data/matpower/case5.m", milp_solver, jump_model=m)
29
30
+ @test result["termination_status"] == OPTIMAL
31
+ @test isapprox(result["objective"], 17613; atol = 1e0)
32
+ end
33
34
35
0 commit comments