swh:1:snp:e69952b3901aec538b122ef9c4d0ac0702cf4353
Tip revision: f69d0e06f67b9ac6f57e7d8e6ba3b3d69e650352 authored by Maarten Derickx on 02 November 2020, 22:43:35 UTC
Quickly lists all non cuspidal places up to diamond operators on X_1(N)
Quickly lists all non cuspidal places up to diamond operators on X_1(N)
Tip revision: f69d0e0
generate_candidates.m
Attach("X1_N_equations.m");
Attach("low_degree_places.m");
import "X1_N_equations.m" : equations;
Attach("assorted_functions.m");
import "assorted_functions.m" : Main2;
if assigned N then;
N_int:=StringToInteger(N);
if assigned d then;
d_int := StringToInteger(d);
cusp_sigs,candidates := Main2(N_int : d:=d_int, write_results_to_file := false);
else;
cusp_sigs,candidates := Main2(N_int : write_results_to_file := false);
end if;
PrintFile("data/cusp_signatures_" cat N, cusp_sigs : Overwrite:=true);
PrintFile("data/candidates_" cat N, candidates : Overwrite:=true);
end if;