source: git/Tst/Short/bug_529.tst @ fdda546

spielwiese
Last change on this file since fdda546 was 75f460, checked in by Hans Schoenemann <hannes@…>, 9 years ago
format
  • Property mode set to 100644
File size: 342 bytes
Line 
1LIB "tst.lib";
2tst_init();
3
4option(warn);
5LIB("primdec.lib");
6
7proc minAssPrimesW(def I)
8{
9   return(Primdec::minAssPrimes(I) ) ;
10}
11
12proc newDecompStepW(ideal i, list #)
13{
14   return(Primdec::newDecompStep(I,#) ) ;
15}
16
17ring rng =(0),(xc,xg,xq),(dp(3),C);
18ideal I = xq,xg;
19newDecompStepW(I);
20minAssPrimesW(7);
21
22option(nowarn);
23tst_status(1); $
24
Note: See TracBrowser for help on using the repository browser.