Ticket #116: sca_p2v_bug.tst

File sca_p2v_bug.tst, 600 bytes (added by Oleksandr , 15 years ago)

my tests

Line 
1LIB "nctools.lib"; // LIB "ncalg.lib";
2ring r;
3
4proc Test()
5{
6  ////////////////////////////////////////////////////////
7  basering;
8
9  poly P = var(1) * var(2) + var(3);
10  module M = P; // OK!
11 
12  P * gen(1); // BUG in SCA only?!? 
13 
14//   system("p", N[1]); system("r", basering);
15}
16
17// Test(); qring Q = std(xyz - 1); Test();
18
19
20setring r;
21
22def E = Exterior();
23def R = nc_algebra(-1,0);
24
25setring R;
26
27Test(); // no BUG yet!
28
29qring RQ = twostd(ideal(var(3) - 1)); // contains all the squares!!!
30
31Test(); // BUG!
32
33setring E;
34
35Test(); // BUG!!!
36
37
38// def U = makeUsl2(); setring U; Test();
39
40$$$
41
42
43