"Source: Text/Geometry/ModFrmBianchi.text";
"Line: 230";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Geometry/ModFrmBianchi.text, line: 230
// Example: H150E1 ()
print "Example: H150E1";
ei := GetEchoInput();
SetEchoInput(true);
_<x> := PolynomialRing(Rationals());
F := NumberField(x^2 + 14);
OF := Integers(F);
level := 1*OF;
M := BianchiCuspForms(F, level);
M;
 time Dimension(M);
assert $1 eq 0;
level := (Factorization(3*OF)[1][1])^2;
Norm(level);
assert $1 eq 9;
time M9 := BianchiCuspForms(F, level);
time Dimension(M9);
assert $1 eq 1;
time M9 := BianchiCuspForms(F, level : VorData := VoronoiData(M) );
time Dimension(M9);
assert $1 eq 1;
M9;
SetEchoInput(ei);
