Added simplify_by_equality
Compare changes
+ 65
− 0
@@ -453,6 +453,71 @@ def recursive_collect(expr, symbols, order_by_occurences=False):
Added a simplification function to simplify expressions using a given equality a = b + c
, by replacing occurences of e.g. b + c
by a
, or a - b
by c
.