Drop old code from examples

This commit is contained in:
Aaron Fenyes 2024-07-18 00:50:48 -07:00
parent 9007c8bc7c
commit b040bbb7fe
4 changed files with 4 additions and 50 deletions

View file

@ -53,10 +53,7 @@ guess = hcat(
)
frozen = [CartesianIndex(j, 6) for j in 1:5]
# complete the gram matrix
#=
L, history = Engine.realize_gram_newton(gram, guess)
=#
# complete the gram matrix using Newton's method with backtracking
L, success, history = Engine.realize_gram(gram, guess, frozen)
completed_gram = L'*Engine.Q*L
println("Completed Gram matrix:\n")