Changes between Initial Version and Version 6 of Ticket #17548
- Timestamp:
- 12/25/14 17:31:56 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17548
-
Property
Status
changed from
new
toneeds_work
-
Property
Authors
changed from
z
to -
Property
Component
changed from
number theory
tocombinatorics
-
Property
Summary
changed from
sage5.7 Partitions() error
toPartitions() involving min_slope argument is buggy
-
Property
Dependencies
changed from
sage 5.7
to -
Property
Branch
changed from
v5.7
to -
Property
Milestone
changed from
sage-feature
tosage-6.5
- Property Owner changed from z to ferriszorro
-
Property
Reviewers
changed from
f
to -
Property
Merged in
changed from
sage5.7
to
-
Property
Status
changed from
-
Ticket #17548 – Description
initial v6 1 sage: Partitions(5,min_slope=1).list() 2 [[5], [2, 4]] 1 The following bug was reported by an humanoid: 2 3 {{{ 4 sage: Partitions(5, min_slope=1).list() 5 ValueError: [2, 4] is not a valid partition 6 }}} 7 8 Even worse (since silent): 9 10 {{{ 11 sage: Partitions(5, min_slope=2).list() 12 [[5]] 13 }}} 14 15 Or 16