source: git/Tst/Short/bug_imap_alg.tst

spielwiese
Last change on this file was 2dc8e9, checked in by Hans Schoenemann <hannes@…>, 3 years ago
tests for imap/fetch bug (alg.ext.)
  • Property mode set to 100644
File size: 339 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// fetch/imap alg.ext->algext misses minpoly:
5
6LIB "normal.lib";
7ring r = (0,a), (x,y,z), lp;
8minpoly = a^2 + 1;
9ideal I = a*z-x^4, z-y^6;
10list nor = normal(I);
11def s=nor[1][1];
12setring s;
13s;
14
15list l=ringlist(s);
16l[1][4];
17setring r;
18list l1=imap(s,l);
19list l2=fetch(s,l);
20l1[1][4];
21l2[1][4];
22
23
24
25tst_status(1);$
Note: See TracBrowser for help on using the repository browser.