Updates:
        Cc: [email protected] [email protected]

Comment #7 on issue 1993 by [email protected]: make sign simplification part of canonicalizing process
http://code.google.com/p/sympy/issues/detail?id=1993

An idea I had about making (1/(1 - t)).subs(t, 1) is that we could have a function named epsilon_subs (or directed_subs) that does a two-step substitution:

def esub(e, old, new, dir='+'):
  eps = Dummy()
  return e.subs([(old, new + (eps if dir == '+' else -eps)),(eps, 0)])

esub(1/(1 - t), t, 1, '+') # -> -oo
esub(1/(1 - t), t, 1, '-') # -> oo


--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to