source: git/Tst/Old/m14ex.tst @ 2efb0e

spielwiese
Last change on this file since 2efb0e was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 474 bytes
Line 
1  ring r =32003,(a,b,c,d,e),lp;
2  ideal i=a+b+c+d, ab+bc+cd+ae+de, abc+bcd+abe+ade+cde,
3          abc+abce+abde+acde+bcde, abcde-1;
4  int t=timer;
5  ideal j1=stdfglm(i);
6  timer-t;   
7  size(j1);   // size (no. of polys) in computed GB
8  t=timer;
9  ideal j2=stdhilbert(i);
10  timer-t;   
11  size(j2);   // size (no. of polys) in computed GB
12  // usual Groebner basis computation for lex ordering
13  t=timer;
14  ideal j0 =std(i);
15  timer-t;   
16LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.