Skip to content

Commit a7c6017

Browse files
authored
add test for jump direct model, closes #275 (#879)
1 parent 46ec8cd commit a7c6017

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/model.jl

+9
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@
2121
@test pm.model[:my_var] == x
2222
@test m[:my_var] == x
2323
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
2433
end
2534

2635

0 commit comments

Comments
 (0)