check_solution assumes that g≠g^-1 for all g in S

This commit is contained in:
kalmar 2017-03-06 11:57:10 +01:00
parent c6f3d15ef4
commit b9fe32823d
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ function check_solution{T<:Number}(κ::T, sqrt_matrix::Array{T,2}, Δ::GroupAlge
println("‖Δ² - κΔ - ∑ξᵢ*ξᵢ‖₁ ≈ $L₁_dist")
end
distance_to_cone = κ - 2^3*eoi_SOS_L₁_dist
distance_to_cone = κ - 2^2*eoi_SOS_L₁_dist
return distance_to_cone
end