forked from Singular/Singular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
singular.dot
49 lines (45 loc) · 1.28 KB
/
singular.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
digraph singular {
gmp [ color=lightgrey, fontcolor=blue, style=filled, shape=box ];
gmp -> ntl;
gmp -> factory_libfac;
gmp -> coeffs;
ntl [ color=lightgrey, fontcolor=blue, style=filled, shape=box ];
ntl -> factory_libfac;
omalloc_xalloc [ color=lightgrey, fontcolor=green, style=filled ];
omalloc_xalloc -> factory_libfac [label="x"];
omalloc_xalloc -> reporter;
omalloc_xalloc -> resources [label="?"];
omalloc_xalloc -> coeffs;
omalloc_xalloc -> polys;
factory_libfac [ color=lightgrey, fontcolor=blue, style=filled ];
factory_libfac -> polys;
misc -> reporter;
misc -> resources;
misc -> coeffs;
misc -> polys;
reporter -> resources;
reporter -> coeffs;
reporter -> polys;
reporter -> misc;
resources -> coeffs;
polys -> ext_fields;
coeffs -> ext_fields;
coeffs [ fontcolor=blue ];
coeffs -> polys;
edge [style=dashed];
ntl -> coeffs;
polys [ fontcolor=blue ];
ext_fields -> coeffs;
kernel [ fontcolor=blue ];
libpolys -> kernel;
numeric [ fontcolor=blue ];
kernel -> numeric;
kernel -> SingularInterpreter;
SingularInterpreter [ fontcolor=red ];
numeric -> SingularInterpreter;
libpolys -> SingularInterpreter;
}
// dot -Tpng -o singular.png singular.dot
// boxed = third party
// filled = external
// blue = math