Skip to content

Commit

Permalink
Comment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-foster committed Nov 21, 2024
1 parent fc2f2ef commit 25da02c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/tutorials/conic/simple_examples.jl
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function example_matrix_completion(; svdtol = 1e-6)
@objective(model, Min, t)
optimize!(model)
@assert is_solved_and_feasible(model)
# Return the approximate rank of the completed matrix to a given tolerance:
## Return the approximate rank of the completed matrix to a given tolerance:
return sum(LinearAlgebra.svdvals(value.(X)) .> svdtol)
end

Expand Down

0 comments on commit 25da02c

Please sign in to comment.