Switch back to BigFloat precision in examples

This commit is contained in:
Aaron Fenyes 2024-07-15 14:31:30 -07:00
parent 53d8c38047
commit 94e0d321d5
3 changed files with 3 additions and 3 deletions

View file

@ -52,7 +52,7 @@ guess = hcat(
L, history = Engine.realize_gram_gradient(gram, guess, scaled_tol = 0.01)
L_pol, history_pol = Engine.realize_gram_newton(gram, L)
=#
L, success, history = Engine.realize_gram(Float64.(gram), Float64.(guess))
L, success, history = Engine.realize_gram(gram, guess)
completed_gram = L'*Engine.Q*L
println("Completed Gram matrix:\n")
display(completed_gram)