~ubuntu-branches/debian/sid/dune-pdelab/sid

« back to all changes in this revision

Viewing changes to dune/pdelab/test/testanalytic.cc

  • Committer: Package Import Robot
  • Author(s): Ansgar Burchardt
  • Date: 2014-02-28 10:27:23 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140228102723-b4c2kacbzlbd2vw3
Tags: 2.0~20140228geb4fffc-1
New upstream snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
    // need a 3D grid for user friendly version
72
72
    Dune::FieldVector<double,3> L3(1.0); L3[0] = 4;
73
73
    Dune::array<int,3> N3(Dune::fill_array<int,3>(1)); N3[0] = 4;
74
 
    std::bitset<3> B3(false);
75
 
    Dune::YaspGrid<3> grid(L3,N3,B3,0);
 
74
    Dune::YaspGrid<3> grid(L3,N3);
76
75
    grid.globalRefine(4);
77
76
    testuserfriendly(grid.leafGridView());
78
77