I am sorry if this is explained somewhere or already discussed.

Many of the strategies (all of them?) sound like very natural
decorators on rules. Any plans to support this syntax. It does not
need to clash with the current one (except for reordering or args).

After all

@f1(arg)
@f2
def func(): pass

is equivalent to

def func(): pass
func = f1(arg)(f2(func))

-- 
You received this message because you are subscribed to the Google Groups 
"sympy" 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?hl=en.

Reply via email to