~ubuntu-branches/ubuntu/raring/rheolef/raring-proposed

« back to all changes in this revision

Viewing changes to nfem/plib/branch.cc

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito, Pierre Saramito, Sylvestre Ledru
  • Date: 2012-05-14 14:02:09 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120514140209-dzbdlidkotyflf9e
Tags: 6.1-1
[ Pierre Saramito ]
* New upstream release 6.1 (minor changes):
  - support arbitrarily polynomial order Pk
  - source code supports g++-4.7 (closes: #671996)

[ Sylvestre Ledru ]
* update of the watch file

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
        << _parameter_name;
42
42
        ;
43
43
    for (size_type i = 0; i < base::size(); i++) {
44
 
        out << " " << operator[](i).first;
 
44
        out << " " << base::operator[](i).first;
45
45
    }
46
46
    out << endl;
47
47
}
86
86
  int       nval;
87
87
  in >> version >> sz >> nval >> _parameter_name;
88
88
  _n_value = ((nval == -1) ? numeric_limits<size_type>::max() : nval);
89
 
  resize(sz);
 
89
  base::resize(sz);
90
90
  for (size_type i = 0; i < sz; i++) {
91
 
    in >> operator[](i).first;
 
91
    in >> base::operator[](i).first;
92
92
  }
93
93
}
94
94
template <class T, class M>
127
127
        << endl
128
128
       ;
129
129
    for (typename branch_basic<T,M>::size_type i = 0; i < base::size(); i++) {
130
 
       out << catchmark (operator[](i).first) << operator[](i).second; 
 
130
       out << catchmark (base::operator[](i).first) << base::operator[](i).second; 
131
131
    }
132
132
}
133
133
template <class T>