Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Jun 26, 2024
1 parent a523624 commit 7872b8a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_constraint.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1976,6 +1976,10 @@ function test_matrix_equality()
primal = value(start_value, c)
@test primal isa Matrix{Float64}
@test primal == [-6.0 -7.0 -8.0; -4.0 -7.0 -7.0]
@test dual_start_value(c) === nothing
dual_start = rand(2, 3)
set_dual_start_value(c, dual_start)
@test dual_start_value(c) == dual_start
return
end

Expand Down

0 comments on commit 7872b8a

Please sign in to comment.