Skip to content

Commit

Permalink
[Test] Fix MOI.objective_expr(::InvalidEvaluator) (#2569)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Oct 28, 2024
1 parent f11a616 commit 2a0fcd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Test/test_nonlinear.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ function MOI.features_available(::InvalidEvaluator)
return [:Grad, :ExprGraph]
end

MOI.objective_expr(::InvalidEvaluator) = :(NaN)
MOI.objective_expr(::InvalidEvaluator) = :(+($NaN))

MOI.eval_objective(::InvalidEvaluator, x) = NaN

Expand All @@ -1140,7 +1140,7 @@ written. External solvers can exclude this test without consequence.
"""
function test_nonlinear_InvalidEvaluator_internal(::MOI.ModelLike, ::Config)
d = InvalidEvaluator()
@test MOI.objective_expr(d) == :(NaN)
@test MOI.objective_expr(d) == :(+($NaN))
MOI.initialize(d, [:Grad, :ExprGraph])
x = [1.5]
# f(x)
Expand Down

0 comments on commit 2a0fcd3

Please sign in to comment.