From 25da02c0683310e27c16af3a5497b4aacbd24bc9 Mon Sep 17 00:00:00 2001 From: James Foster Date: Thu, 21 Nov 2024 19:23:56 +1100 Subject: [PATCH] Comment fix --- docs/src/tutorials/conic/simple_examples.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/conic/simple_examples.jl b/docs/src/tutorials/conic/simple_examples.jl index 54daf2ed969..ea06c1da0b3 100644 --- a/docs/src/tutorials/conic/simple_examples.jl +++ b/docs/src/tutorials/conic/simple_examples.jl @@ -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