source: git/Tst/dyn_modules/syzextra.tst @ 9e24ef

spielwiese
Last change on this file since 9e24ef was 9e24ef, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Moved tests from DM into Tst/dyn_modules (and turned them off)
  • Property mode set to 100644
File size: 577 bytes
Line 
1"ndebug?: ", system("with", "ndebug");
2"om_ndebug?: ", system("with", "om_ndebug");
3
4listvar(Top);
5
6if( system("with", "ndebug") )
7{
8  "Loading the Release version!";
9  LIB("syzextra.so");
10  listvar(Syzextra);
11}
12else
13{
14  "Loading the Debug version!";
15  LIB("syzextra.so");
16  listvar(Syzextra);
17}
18
19
20noop();
21
22ring r;
23
24DetailedPrint(r);
25
26poly p = x +y +z;
27
28DetailedPrint(p, 2);
29
30ideal I = maxideal(1);
31
32DetailedPrint(I, 2);
33
34vector v =3 *xyz * [0, 0, 1, x, y, z];
35v;
36DetailedPrint(v, 2);
37
38leadmonom(v);leadcomp(v);
39leadrawexp(v);
40
41
42
43
44def l = res(I, 0); DetailedPrint(l);
45
46exit;
47
48
Note: See TracBrowser for help on using the repository browser.