source: git/Tst/Manual/groebner_and_std.tst @ 951db29

spielwiese
Last change on this file since 951db29 was 6051d87, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
FIX: Manual examples need adaptation to be tests (due to HW/build-dependent output)
  • Property mode set to 100644
File size: 424 bytes
Line 
1LIB "tst.lib"; tst_init();
2LIB "poly.lib";
3ring r=32003,(a,b,c,d,e,f),lp;
4ideal I=cyclic(6);
5option(prot);
6int t=timer;
7system("--ticks-per-sec", 100);         // give time in 1/100 sec
8ideal sI=std(I);
9// timer-t;                                // used time (in 1/100 secs)
10size(sI);
11t=timer;
12sI=groebner(I);
13// timer-t;                                // used time (in 1/100 secs)
14size(sI);
15option(noprot);
16tst_status(1);$
Note: See TracBrowser for help on using the repository browser.