| 35 | using M = MeshCartesian<Scal, dim>; |
| 36 | |
| 37 | M GetMesh() { |
| 38 | const Rect<Vect> dom(Vect(0), Vect(1)); |
| 39 | const MIdx begin(0, 0, 0); |
| 40 | const MIdx size(2, 2, 1); |
| 41 | const int halos = 0; |
| 42 | return {begin, size, dom, halos, true, true, size, 0}; |
| 43 | } |
| 44 | |
| 45 | void TestRange() { |
| 46 | PF; |