X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Fexpairseq.cpp;h=bdfc2ff73f97f814bb4b1e87422a60f9645c67e5;hb=0d9b6e6d134917a8fb5cf76ade55dcbaf01acb28;hp=d791abf2d53a58fdc01e78109d8c51b54ebea41a;hpb=ebc7c9b1ef9b051ec35a954ff2e6d2da18ab37e4;p=ginac.git diff --git a/ginac/expairseq.cpp b/ginac/expairseq.cpp index d791abf2..bdfc2ff7 100644 --- a/ginac/expairseq.cpp +++ b/ginac/expairseq.cpp @@ -539,7 +539,7 @@ unsigned expairseq::calchash(void) const ex expairseq::expand(unsigned options) const { - epvector * vp=expandchildren(options); + epvector * vp = expandchildren(options); if (vp==0) { return *this; } @@ -552,7 +552,7 @@ ex expairseq::expand(unsigned options) const // protected -ex expairseq::thisexpairseq(const epvector & v,const ex & oc) const +ex expairseq::thisexpairseq(const epvector & v, const ex & oc) const { return expairseq(v,oc); } @@ -1545,8 +1545,8 @@ bool expairseq::is_canonical() const epvector * expairseq::expandchildren(unsigned options) const { - epvector::const_iterator last=seq.end(); - epvector::const_iterator cit=seq.begin(); + epvector::const_iterator last = seq.end(); + epvector::const_iterator cit = seq.begin(); while (cit!=last) { const ex & expanded_ex=(*cit).rest.expand(options); if (!are_ex_trivially_equal((*cit).rest,expanded_ex)) {