Skip to content

Commit

Permalink
Update docs/src/tutorials/conic/ellipse_fitting.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Dec 21, 2024
1 parent 6c4e161 commit f13be54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/tutorials/conic/ellipse_fitting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ for (i, cluster) in enumerate(clusters)
)
@objective(model, Min, ζ)
optimize!(model)
@assert is_solved_and_feasible(model)
@assert is_solved_and_feasible(model; allow_almost = true)
Q, d, e = value.(model[:Q]), value.(model[:d]), value.(model[:e])
push!(ellipses_C2, Dict(:Q => Q, :d => d, :e => e))
end
Expand Down

0 comments on commit f13be54

Please sign in to comment.