source: git/Tst/New/longalg_missing_2.tst

spielwiese
Last change on this file was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 381 bytes
Line 
1LIB "tst.lib"; tst_init();
2
3ring SNB = (0,a), x, (lp,C);
4minpoly = (a^2+1);
5
6SNB;
7poly f = x4-2*x+1; f;
8
9poly ff = 3*a-7; ff;
10
11poly gg = 11*a; gg;
12
13poly g = a*f + f + a; g;
14
15ring SNR = 0, (x, a), (lp, C);
16
17option(Imap);
18
19imap(SNB, f);//
20fetch(SNB, f);//
21
22
23imap(SNB, ff);// ?
24fetch(SNB, ff);//
25
26
27imap(SNB, g);//
28fetch(SNB, g);//
29
30imap(SNB, gg);//
31fetch(SNB, gg);//
32
33tst_status(1);$
Note: See TracBrowser for help on using the repository browser.