| 1 | initial version |
What if you replace
r = operator(*map(self, ex.operands()))
with
r = op(*map(self, ex.operands()))
operator is a module, here you might want to refer to the op parapeter of the method derivative.
| 2 | No.2 Revision |
What if you replace
r = operator(*map(self, ex.operands()))
with
r = op(*map(self, ex.operands()))
operator is a module, here you might want to refer to the op parapeter parameter of the method derivative.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.