source: git/Tst/Buch/Example_1_5_9.tst @ 2272157

fieker-DuValspielwiese
Last change on this file since 2272157 was 891438c, checked in by Gerhard Pfister <pfister@…>, 23 years ago
*GP: initial release git-svn-id: file:///usr/local/Singular/svn/trunk@5579 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 317 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.