本文整理匯總了Python中operations.AssocOp類的典型用法代碼示例。如果您正苦於以下問題:Python AssocOp類的具體用法?Python AssocOp怎麽用?Python AssocOp使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了AssocOp類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _eval_evalf
def _eval_evalf(self, prec):
return AssocOp._eval_evalf(self, prec).expand()
示例2: matches
def matches(pattern, expr, repl_dict={}, evaluate=False):
expr = sympify(expr)
if pattern.is_commutative and expr.is_commutative:
return AssocOp._matches_commutative(pattern, expr, repl_dict, evaluate)
# todo for commutative parts, until then use the default matches method for non-commutative products
return Basic.matches(pattern, expr, repl_dict, evaluate)