Skip to content

Commit

Permalink
[Bridges] use variable_start in Bridges.runtests (#2592)
Browse files Browse the repository at this point in the history
  • Loading branch information
blegat authored Dec 12, 2024
1 parent 86d17e3 commit e4ce984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Bridges/Bridges.jl
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ function runtests(
x = MOI.get(model, MOI.ListOfVariableIndices())
MOI.set(model, attr, x, fill(nothing, length(x)))
Test.@test all(isnothing, MOI.get(model, attr, x))
primal_start = fill(constraint_start, length(x))
primal_start = fill(variable_start, length(x))
MOI.set(model, attr, x, primal_start)
if !isempty(x)
# ≈ does not work if x is empty because the return of get is Any[]
Expand Down

0 comments on commit e4ce984

Please sign in to comment.