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

« back to all changes in this revision

Viewing changes to nfem/ptst/geo_file_tst.cc

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Saramito
  • Date: 2011-03-23 11:14:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20110323111426-cjvhey7lxt6077ty
Tags: 5.93-1
* New upstream release (minor changes):
  - some extra warning message deleted in heap_allocator
  - graphic output with mayavi2 fixed
  - add doc refman in .info and .pdf format

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
using namespace rheolef;
23
23
using namespace std;
24
24
int main(int argc, char**argv) {
25
 
  environment parallel(argc, argv);
26
 
  warning_macro ("main[1] get...");
 
25
  environment distributed(argc, argv);
27
26
  geo omega (argv[1]);
28
 
  warning_macro ("main[2] get: size="<<omega.size());
29
 
  warning_macro ("main[2] put...");
30
 
  pcout << omega;
31
 
  warning_macro ("main[3] done");
 
27
  dcout << omega;
32
28
}