~ubuntu-branches/ubuntu/wily/rheolef/wily

« 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: 2013-04-30 11:29:51 UTC
  • mfrom: (1.2.1) (11.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130430112951-g69nuqin77t75dek
Tags: 6.4-1
[ Pierre Saramito ]
* New upstream release 6.4 (major changes):
  - new powerful c++ expressions for FEM specifications
  - configure script improved (portability increased)
  - minor bug fixes
* control:
  - all architectures are considered (armel & armhf are back)
  - no more circular-dependency librheolef-dev <--> rheolef
* rules: add security compiler flags (hardening and -W,-l,relro)
* watch: include an updated version, thanks to B. Martens <bartm@debian.org>
* copyright: various file format fixes

[ Sylvestre Ledru ]
*  Standards-Version updated to 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
branch_basic<T,M>::put_event_rheolef (odiststream& out) const
124
124
{
125
125
    out << endl
 
126
        << setprecision(numeric_limits<T>::digits10)
126
127
        << "#" << _parameter_name << " " << _parameter_value << endl
127
128
        << endl
128
129
       ;
129
130
    for (typename branch_basic<T,M>::size_type i = 0; i < base::size(); i++) {
130
131
       out << catchmark (base::operator[](i).first) << base::operator[](i).second; 
131
132
    }
 
133
    out.flush(); // when gziped output, make it available as soon as computed
132
134
}
133
135
template <class T>
134
136
void