add missing root to exponential graph
This commit is contained in:
parent
ff69a2ce65
commit
33cc0f2fe8
@ -12,9 +12,12 @@ def display_integral_root(
|
||||
+ ("\\pm" if root != 0 else "")
|
||||
+ str(root)
|
||||
+ ")^{"
|
||||
+ str(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)
|
||||
+ "}"
|
||||
)
|
||||
|
||||
|
||||
@ -58,7 +58,6 @@ data = {
|
||||
]
|
||||
),
|
||||
),
|
||||
# TODO: missing a root (and its negative) of multiplicity 400
|
||||
8: GraphData(
|
||||
vertex_count=40320,
|
||||
spectrum=SymmetricSpectrum(
|
||||
@ -70,6 +69,7 @@ data = {
|
||||
(8, 196),
|
||||
(10, 784),
|
||||
(12, 441),
|
||||
(14, 400),
|
||||
(20, 49),
|
||||
(28, 1),
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user