Joachim Durchholz
unread,Feb 15, 2015, 3:40:12 AM2/15/15Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to sy...@googlegroups.com
During my attempts at C elimination, I see that atan2 is involved in
many potential import cycles.
Of these, most if not all can be broken up by splitting up
sympy.functions.elementary.trigonometric , e.g. by splitting off
sympy.functions.elementary.trigonometric_inverses.
Such a split is not a guarantee that it will prevent all present or
future atan2 cycles, because there's always the possibility of mutual
recursion between modules.
The alternate approach would be to use a local import, or a bottom import.
I'd prefer to split the module in this case, because it's a reasonable
module boundary anyway.
What do others think?