add missing root to exponential graph

This commit is contained in:
queue-miscreant 2025-07-19 18:29:06 -05:00
parent ff69a2ce65
commit 33cc0f2fe8
2 changed files with 6 additions and 3 deletions

View File

@ -12,9 +12,12 @@ def display_integral_root(
+ ("\\pm" if root != 0 else "") + ("\\pm" if root != 0 else "")
+ str(root) + str(root)
+ ")^{" + ")^{"
+ str(multiplicity)
# pad multiplicity # pad multiplicity
+ ("\\phantom{" + ("0" * pad_to) + "}" if pad_to is not None else "") + (("\\phantom{" + ("0" * (pad_to - len(str(multiplicity))) + "}"))
if pad_to is not None and len(str(multiplicity)) < pad_to
else ""
)
+ str(multiplicity)
+ "}" + "}"
) )

View File

@ -58,7 +58,6 @@ data = {
] ]
), ),
), ),
# TODO: missing a root (and its negative) of multiplicity 400
8: GraphData( 8: GraphData(
vertex_count=40320, vertex_count=40320,
spectrum=SymmetricSpectrum( spectrum=SymmetricSpectrum(
@ -70,6 +69,7 @@ data = {
(8, 196), (8, 196),
(10, 784), (10, 784),
(12, 441), (12, 441),
(14, 400),
(20, 49), (20, 49),
(28, 1), (28, 1),
] ]