source: git/Tst/Buch/Example_1_5_9.tst @ 8d1432e

fieker-DuValspielwiese
Last change on this file since 8d1432e was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 315 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4int n=2;
5int m=3;
6ring A1 = 0,(x(1..n),y(1..m)),(dp(n),ds(m));
7poly f  = x(1)*x(2)^2+1+y(1)^10+x(1)*y(2)^5+y(3);
8f;
9
101>y(1)^10;
11
12ring A2 = 0,(x(1..n),y(1..m)),(ds(n),dp(m));
13fetch(A1,f);
14
15x(1)*y(2)^5<1;
16
17ring A3 = 0,(x(1..n),y(1..m)),(dp(n),ds(2),dp(m-2));
18fetch(A1,f);
19
20tst_status(1);$
Note: See TracBrowser for help on using the repository browser.