source: git/Tst/Short/bug_ring.tst @ cecb7e

spielwiese
Last change on this file since cecb7e was cecb7e, checked in by Hans Schoenemann <hannes@…>, 9 years ago
tests: var(i)/gen(i)/farey(i,j) with no ring defined
  • Property mode set to 100644
File size: 501 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// functions return ring-dep data whose args are not ring-dep.
5var(1);
6gen(1);
7farey(2,3);
8farey(bigint(2),3);
9farey(2,bigint(3));
10farey(bigint(2),bigint(3));
11freemodule(3);
12maxideal(2);
13monomial(1);
14monomial(intvec(1));
15par(2);
16resolution(list());
17ring r=0,(x,y,z),dp;
18var(1);
19gen(1);
20farey(2,3);
21farey(bigint(2),3);
22farey(2,bigint(3));
23farey(bigint(2),bigint(3));
24freemodule(3);
25maxideal(2);
26monomial(1);
27monomial(intvec(1));
28par(2);
29resolution(list());
30
31tst_status(1);$
Note: See TracBrowser for help on using the repository browser.