| 24 | using MIdx = typename M::MIdx; |
| 25 | |
| 26 | M GetMesh(MIdx size) { |
| 27 | Rect<Vect> dom(Vect(0), Vect(1)); |
| 28 | MIdx begin(0, 0, 0); // lower index |
| 29 | int halos = 2; |
| 30 | return {begin, size, dom, halos, true, true, size, 0}; |
| 31 | } |
| 32 | |
| 33 | class TimerMesh : public ExecutionTimer { |
| 34 | public: |