source: git/Tst/New/mstd_integer.tst

spielwiese
Last change on this file was 0fc231, checked in by Adi Popescu <adi_popescum@…>, 10 years ago
mstd code review
  • Property mode set to 100644
File size: 768 bytes
Line 
1LIB "tst.lib"; tst_init();
2
3ring r=integer,x,dp;
4ideal I=36;
5mstd(I);
6
7ring r=integer,(x,y),dp;
8
9ideal J=36,2*x^3, 3*y^2;
10// sb has 4 elements, second list entry should equal input
11mstd(J);
12
13ideal I=36,16x3;
14// sb also has 2 elements, so it should appear as second list entry
15mstd(I);
16
17ideal K=3x3,2x5;
18// sb also has 2 elements, so it should appear as second list entry
19mstd(K);
20
21ideal K=3x5,2x5;
22// sb has one elements, so it should appear as second list entry
23mstd(K);
24
25
26ideal L=xy+y2,x3+x11;
27// sb has 3 elements, second list entry should equal input
28mstd(L);
29
30ideal L=2xy+y2,3x3+x11;
31// sb has 13 elements, second list entry should equal input
32mstd(L);
33
34ideal L=2xy+y2,3x3+x11,7x11,5y5;
35mstd(L);
36
37ideal L=2xy+y2,3x3+x11,7x11,5y5,3y4;;
38mstd(L);
39
40tst_status(1);$
41
42
Note: See TracBrowser for help on using the repository browser.