Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test] Fix MOI.objective_expr(::InvalidEvaluator) #2569

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading