/[ff3d]/ff3d/language/PDEOperatorSumExpression.hpp
ViewVC logotype

Diff of /ff3d/language/PDEOperatorSumExpression.hpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by delpinux, Mon Feb 17 16:32:53 2003 UTC revision 1.2 by delpinux, Sun May 4 18:09:01 2003 UTC
# Line 40  protected: Line 40  protected:
40    ReferenceCounting<PDEOperatorExpressionList> __differenceList;    ReferenceCounting<PDEOperatorExpressionList> __differenceList;
41    
42  private:  private:
43    std::ostream& put(std::ostream& os)    std::ostream& put(std::ostream& os) const
44    {    {
45      for(PDEOperatorExpressionList::iterator i = (*__sumList).begin();      for(PDEOperatorExpressionList::const_iterator i = (*__sumList).begin();
46          i != (*__sumList).end(); ++i) {          i != (*__sumList).end(); ++i) {
47        if (i != (*__sumList).begin())        if (i != (*__sumList).begin())
48          os << " + ";          os << " + ";
49        os << (*(*i));        os << (*(*i));
50      }      }
51      for(PDEOperatorExpressionList::iterator i = (*__differenceList).begin();      for(PDEOperatorExpressionList::const_iterator i = (*__differenceList).begin();
52          i != (*__differenceList).end(); ++i) {          i != (*__differenceList).end(); ++i) {
53        os << " - " << (*(*i));        os << " - " << (*(*i));
54      }      }

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26