source: git/Tst/New/longalg_missing_2.tst @ e070751

spielwiese
Last change on this file since e070751 was 83a1714, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
FIX: started fixing fetch & imap for transcendental/alg. extensions: "longalg missing 2"
  • Property mode set to 100644
File size: 388 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.