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

@ -207,14 +207,16 @@ end
# ~~~ sandbox setup ~~~
# in the default view, e4 + e5 is the point at infinity
elements = Engine.nullmix * sqrt(0.5) * BigFloat[
1 1 -1 -1 0;
1 -1 1 -1 0;
1 -1 -1 1 0;
0 0 0 0 -sqrt(6);
1 1 1 1 2
]
elements = begin
const a = sqrt(BigFloat(3)/2)
sqrt(0.5) * BigFloat[
1 1 -1 -1 0
1 -1 1 -1 0
1 -1 -1 1 0
-0.5 -0.5 -0.5 -0.5 -a-1
0.5 0.5 0.5 0.5 -a+1
]
end
# show construction
viewer = Viewer.ConstructionViewer()