]> www.ginac.de Git - ginac.git/blobdiff - ginac/expairseq.cpp
- expairseq.cpp: moved expairseq::to_rational to...
[ginac.git] / ginac / expairseq.cpp
index d791abf2d53a58fdc01e78109d8c51b54ebea41a..bdfc2ff73f97f814bb4b1e87422a60f9645c67e5 100644 (file)
@@ -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)) {