Changes between Version 1 and Version 2 of Ticket #24255
- Timestamp:
- 11/21/17 07:36:09 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24255
-
Property
Summary
changed from
Fix substitution with pattern given as equation
toFix constants coercion into SR
-
Property
Summary
changed from
-
Ticket #24255 – Description
v1 v2 13 13 e == pi*x 14 14 }}} 15 This should really be fixed. 15 The problem is that constants are not made into expressions immediately: 16 {{{ 17 sage: SR(e) 18 e 19 sage: type(_) 20 <type 'sage.symbolic.constants_c.E'> 21 sage: e+1-1 22 e 23 sage: type(_) 24 <type 'sage.symbolic.expression.Expression'> 25 sage: x*pi==e+1-1 26 pi*x == e 27 }}}