Opened 12 years ago
Closed 12 years ago
#284 closed bug (fixed)
short is not correctly set in Galoisfields
Reported by: | gorzel | Owned by: | hannes |
---|---|---|---|
Priority: | minor | Milestone: | 3-1-2 and higher |
Component: | singular-kernel | Version: | 3-1-1 |
Keywords: | Cc: |
Description
In Galoisfields, the value of short is only set by the variables but not by the parameter.
> ring r8 =(8,a),x,dp; > a12*x2+a; a5*x2+a > ring r8xy = (8,a),(x,y),dp; > a12*x2+a; a5*x2+a > ring r8x1x2 = (8,a),(x1,x2),dp; > a12*x2+a; a^5*x2+a > short; // OK, here the value is controled by the variable 0 // -- Here short==0; is necessary by the choice of the parameter > ring r8a1 = (8,a1),x,dp; > short; // BUG it has to be 0 1 > a1^2*x2+a1; // Input correct, but defalut output is errornous a12*x2+a1 > short =0; > a1^2*x2+a1; a1^2*x^2+a1
Change History (3)
comment:1 Changed 12 years ago by
Owner: | changed from hannes to somebody |
---|
comment:2 Changed 12 years ago by
Owner: | changed from somebody to hannes |
---|
comment:3 Changed 12 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.