-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdoline.m
More file actions
23 lines (20 loc) · 770 Bytes
/
doline.m
File metadata and controls
23 lines (20 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//code snippet for parallelizing the execution of NotIsolated()
// Copyright (c) 2024 Isolated Points Team
// This is available under the terms of the CC-BY-4.0 License.
// A copy of the CC-BY-4.0 License should be included with this program, but if
// not then see <https://creativecommons.org/licenses/by/4.0/>.
AttachSpec("../OpenImage.spec");
path := OpenImageContext("../OpenImage/data-files");
AttachSpec("isolated.spec");
if assigned seq then
SetColumns(0);
SetAutoColumns(false);
seq := eval seq;
inputs := Split(Read("adelicgenusgt0curves.txt"), "\n");
input := inputs[seq];
jinv := eval input;
jinv := Rationals()!jinv;
output := NotIsolated(jinv, path);
print Join([Sprint(elt) : elt in output], ":");
exit;
end if;