Changes between Initial Version and Version 26 of Ticket #6882
- Timestamp:
- 06/27/14 09:18:56 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6882
-
Property
Status
changed from
new
toneeds_work
- Property Cc robert.marik added
-
Property
Report Upstream
changed from
to
N/A
-
Property
Summary
changed from
bug in conversion of "i" from Maxima to Sage
tobugs in conversion of variable names from Maxima to Sage
-
Property
Dependencies
changed from
to
#8734, #16007
-
Property
Milestone
changed from
sage-5.11
tosage-6.3
- Property Owner changed from burcin to rws
-
Property
Status
changed from
-
Ticket #6882 – Description
initial v26 6 6 sage: symbolic_expression_from_maxima_string('i') 7 7 I 8 sage: symbolic_expression_from_maxima_string('%inf') 9 Inf 8 10 ----------- 9 11 10 12 So as you see, we are converting both '%i' and 'i' to imaginary 'I' !!!! 11 13 }}} 12 13 See the sage-devel thread about this on Sept 3 for some discussion and motivation. 14 The ticket should implement `multi_word_replace()` in `sage.misc.multireplace` and use that on a symtable with additional entries `'e':'_e', 'i':'_i', 'I':'_I'`.