]> www.ginac.de Git - ginac.git/blobdiff - ginac/ex.cpp
- color/clifford objects have representation label to distinguish elements
[ginac.git] / ginac / ex.cpp
index 42cde03a546c2e660bbf21bdcb843c59ea927556..646053b8001a89b2619841cd038b36d760e3a8a8 100644 (file)
@@ -156,10 +156,10 @@ ex ex::coeff(const ex & s, int n) const
        return bp->coeff(s,n);
 }
 
-ex ex::collect(const ex & s) const
+ex ex::collect(const ex & s, bool distributed) const
 {
        GINAC_ASSERT(bp!=0);
-       return bp->collect(s);
+       return bp->collect(s, distributed);
 }
 
 ex ex::eval(int level) const