#92 closed bug (fixed)
option("redSB") in quotient rings produces unexepected results and Segment fault
Reported by: | laplagne | Owned by: | hannes |
---|---|---|---|
Priority: | major | Milestone: | Release 3-1-0 |
Component: | singular-kernel | Version: | |
Keywords: | option redSB quotient ring | Cc: |
Description
Over quotient rings, if the option("redSB") is set, the groebner bases are sometimes not reduced. They can even contain repeated polynomials.
This causes Segment Faults when using other procedures.
Here is the example.
SINGULAR /
A Computer Algebra System for Polynomial Computations / version 3-1-0
0<
by: G.-M. Greuel, G. Pfister, H. Schoenemann \ Aug 2008
FB Mathematik der Universitaet, D-67653 Kaiserslautern \ executing /users/urmel/alggeom/hannes/murrumesh/LIB/.singularrc
ring r = 0, (x, y), ds; ideal I = x2-y3; qring q = groebner(I); ideal U1 = x2, xy2; ideal U2 = xy2, y3; groebner(U2);
option("redSB"); groebner(U2);
std(U2);
reduce(U1, groebner(U2));
Singular : signal 11 (v: 3100/2009021209): Segment fault/Bus error occurred at 2ac2a7af02d0 because of 10297 (r:1235731989) please inform the authors trying to restart...
(I used here a local ordering, but similar things happen under global orderings.)
Attachments (1)
Change History (3)
Changed 14 years ago by
Attachment: | redSBSignal.txt added |
---|
comment:2 Changed 14 years ago by
Milestone: | → Release 3-1-0 |
---|
Singular script that produces the Segment Fault