Comment #9 on issue 1365 by smichr: improve solve http://code.google.com/p/sympy/issues/detail?id=1365
Having now spent some time with the solver routine, I am +0.5 on the change. The thing that swings me toward +1 is that you can't modify the sets directly but otherwise they behave like a list in terms of removing terms, being iterable, checking for membership, etc.... And if you want to do something like finding critical point and removing them from a solution set, then you are in the right format for doing that: root = roots.difference(critical_pts) or finding points in common: both = roots1.intersection(roots2). -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en -~----------~----~----~----~------~----~------~--~---
