https://github.com/koffie/mdmagma
Revision 65a8ca6dd8d54862cd20257523e0054fe908c737 authored by Maarten Derickx on 23 August 2024, 15:45:41 UTC, committed by Maarten Derickx on 23 August 2024, 15:45:41 UTC
1 parent 3428603
Tip revision: 65a8ca6dd8d54862cd20257523e0054fe908c737 authored by Maarten Derickx on 23 August 2024, 15:45:41 UTC
Oneliner for strange characters in parallel
Oneliner for strange characters in parallel
Tip revision: 65a8ca6
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;
Computing file changes ...