Changes between Initial Version and Version 9 of Ticket #12803
- Timestamp:
- 01/27/15 11:04:36 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12803
- Property Cc malb added
-
Property
Milestone
changed from
sage-5.11
tosage-6.4
-
Property
Component
changed from
algebra
tocommutative algebra
-
Property
Report Upstream
changed from
N/A
toFixed upstream, in a later stable release.
- Property Owner changed from AlexGhitza to malb
-
Ticket #12803 – Description
initial v9 34 34 sage: 35 35 }}} 36 37 There is at least another one (fixed in 4.0.1, see ticket #17254): 38 39 {{{ 40 R.<xe,xv> = ZZ[] 41 42 J = Ideal(4*xv^3+3*xv^2, 3*xe*xv^2+xe-2*xv); 43 44 I = Ideal(-3, -3*xv-1, -3); 45 I2 = Ideal(-3, -3*xv-1); 46 assert( I == I2 ) 47 48 Q1 = J.quotient(I) # wrong 49 Q2 = J.quotient(I2) 50 51 assert( Q1 == Q2 ) # fails 52 }}}