Rename *ll* and *ul* to ll and ul in in-interval
[maxima.git] / share / contrib / gf / rtest_gf.mac
blobfb0050bb405ac837a4b826d95a38bd9bf73ca1f3
2 /* Roots in finite fields */
4 (load(gf), 0);
5 0;
7 /* msqrt */
8 msqrt(289, 1789);
9 [1772, 17];
11 gf_sqrt(289, 1789);
12 [1772, 17];
15 /* ssqrt */
16 ssqrt(289, 1234567891);
17 [1234567874, 17];
19 gf_sqrt(289, 1234567891);
20 [1234567874, 17];
22 /* mcbrt */
23 mcbrt(1331, 1789);
24 [1672, 106, 11];
27 /* scbrt */
28 scbrt(1331, 1234567891);
29 [330264042, 11, 904303838];
31 gf_cbrt(1331, 1234567891);
32 [330264042, 904303838, 11];
35 /* qsplit */
36 qsplit(1789);
37 [5, 42];
39 /* csplit */
40 csplit(1789);
41 [12, 35];