Skip to content

Commit 3930e2b

Browse files
committed
Update
1 parent 1d677ea commit 3930e2b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/MOI_wrapper.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ function test_MOI_Test_cached()
7979
r"^test_solve_ObjectiveBound_MAX_SENSE_LP$",
8080
# KNITRO doesn't support INFEASIBILITY_CERTIFICATE results.
8181
r"^test_solve_DualStatus_INFEASIBILITY_CERTIFICATE_$",
82+
# Cannot get ConstraintDualStart
83+
r"^test_model_ModelFilter_AbstractConstraintAttribute$",
8284
# ConstraintDual not supported for SecondOrderCone
8385
second_order_exclude...,
8486
],
@@ -285,7 +287,7 @@ function test_RawOptimizerParameter_option_file()
285287
write(filename, "outlev 1")
286288
MOI.set(model, MOI.RawOptimizerAttribute("option_file"), filename)
287289
valueP = Ref{Cint}()
288-
KN_get_int_param(model.inner, KN_PARAM_OUTLEV, valueP)
290+
KNITRO.KN_get_int_param(model.inner, KN_PARAM_OUTLEV, valueP)
289291
@test valueP[] == 1
290292
return
291293
end
@@ -298,7 +300,7 @@ function test_RawOptimizerParameter_tuner_file()
298300
write(filename, "algorithm")
299301
MOI.set(model, MOI.RawOptimizerAttribute("tuner_file"), filename)
300302
valueP = Ref{Cint}()
301-
KN_get_int_param(model.inner, KN_PARAM_OUTLEV, valueP)
303+
KNITRO.KN_get_int_param(model.inner, KN_PARAM_OUTLEV, valueP)
302304
@test valueP[] == 1
303305
return
304306
end

0 commit comments

Comments
 (0)