source: git/Tst/Old/err7.tst @ b4adf9

fieker-DuValspielwiese
Last change on this file since b4adf9 was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 614 bytes
Line 
1proc t
2{
3ring r;
4listvar();
5"returning";
6}
7t();
8listvar();
9kill t;
10// error of 0.9.3a (pfister): mapping of zero mons
11ring r1=0,s,dp;
12poly te=s+3;
13ring r=3,s,dp;
14poly te=imap(r1,te);
15te;
16kill r;
17// error of 0.9.3a (pfister): power of binoms in char p
18ring r=3,(s,t),dp;
19(s+t)^13;
20poly p=(s+t)^13;p;
21p=p*1;
22p;
23kill r;
24// error of 0.9.3b (pfister): incorrect impl. for finding alg*pp
25ring rq=(32003,p,q,s),(t,u,v,w,x,y,z),dp;
26ideal ser;
27kill rq;
28// error of 0.9.3b (hannes): 0-monomial
29ring r=0,(x,y),dp;
30ideal i=ideal(0,x);
31size(i[1]);// must be 0, was 1
32LIB "tst.lib";tst_status(1);$
33LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.