source: git/Tst/Short/bug_55.tst @ fe969a

spielwiese
Last change on this file since fe969a was 6ae83a, checked in by Hans Schönemann <hannes@…>, 15 years ago
*hannes: bug_solve(55) git-svn-id: file:///usr/local/Singular/svn/trunk@11989 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 264 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4// bug in solve
5LIB"solve.lib";
6ring r=0,y,dp;
7ideal I=y6+46y4+529y2+12167;
8option(prot);
9// should give 6 solutions in C
10solve(I);
11ideal J=(y-1)*(y-2)*(y-3)*(y-4)*(y-5)*(y-6);
12// should give 6 solutions in Z
13solve(J);
14
15tst_status(1);$
Note: See TracBrowser for help on using the repository browser.