Write examples directly in light cone basis

This commit is contained in:
Aaron Fenyes 2024-07-17 15:37:14 -07:00
parent bde42ebac0
commit 2038103d80
5 changed files with 33 additions and 31 deletions

View file

@ -41,15 +41,15 @@ gram = sparse(J, K, values)
# set initial guess
Random.seed!(99230)
guess = Engine.nullmix * hcat(
guess = hcat(
sqrt(1/BigFloat(3)) * BigFloat[
1 1 -1 -1 0
1 -1 1 -1 0
1 -1 -1 1 0
1 1 1 1 -2
1 1 1 1 1
0 0 0 0 -1.5
1 1 1 1 -0.5
] + 0.2*Engine.rand_on_shell(fill(BigFloat(-1), 5)),
BigFloat[0, 0, 0, 1, 1]
BigFloat[0, 0, 0, 0, 1]
)
frozen = [CartesianIndex(j, 6) for j in 1:5]