source: git/Tst/Manual/fetch.tst @ cbf01b

fieker-DuValspielwiese
Last change on this file since cbf01b was 894057, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
ADD: Tests from online manual (res+stat on mamawutz): short ones Tst/Manual/s.lst
  • Property mode set to 100644
File size: 342 bytes
Line 
1LIB "tst.lib"; tst_init();
2  ring r=0,(x,y,z),dp;
3  ideal i=maxideal(2);
4  ideal j=std(i);
5  poly f=x+y2+z3;
6  vector v=[f,1];
7  qring q=j;
8  poly f=fetch(r,f);
9  f;
10  vector v=fetch(r,v);
11  v;
12  ideal i=fetch(r,i);
13  i;
14  ring rr=0,(a,b,c),lp;
15  poly f=fetch(q,f);
16  f;
17  vector v=fetch(r,v);
18  v;
19  ideal k=fetch(q,i);
20  k;
21tst_status(1);$
Note: See TracBrowser for help on using the repository browser.