~ubuntu-branches/ubuntu/saucy/rheolef/saucy-proposed

« back to all changes in this revision

Viewing changes to skit/ptst2/pstream_io_scalar_tst.cc

  • Committer: Package Import Robot
  • Author(s): Pierre Saramito
  • Date: 2012-04-06 09:12:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120406091221-m58me99p1nxqui49
Tags: 6.0-1
* New upstream release 6.0 (major changes):
  - massively distributed and parallel support
  - full FEM characteristic method (Lagrange-Gakerkin method) support
  - enhanced users documentation 
  - source code supports g++-4.7 (closes: #667356)
* debian/control: dependencies for MPI distributed solvers added
* debian/rules: build commands simplified
* debian/librheolef-dev.install: man1/* to man9/* added
* debian/changelog: package description rewritted (closes: #661689)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
using namespace std;
24
24
int main(int argc, char**argv)
25
25
{
26
 
    environment distributed(argc, argv);
 
26
    environment rheolef(argc, argv);
27
27
    cerr << "debut[A]"<<endl<<flush;
28
28
#ifdef _RHEOLEF_HAVE_MPI
29
29
    cerr << "iproc=" <<mpi::communicator().rank()<< endl;
30
30
    cerr << "nproc=" <<mpi::communicator().size()<< endl;
31
31
#endif // _RHEOLEF_HAVE_MPI
32
 
    dcerr << "x ? " << endl;
 
32
    derr << "x ? " << endl;
33
33
    Float x;
34
 
    dcin >> x;
35
 
    dcout << "x = " << x << endl;
 
34
    din >> x;
 
35
    dout << "x = " << x << endl;
36
36
}