| 44 | } |
| 45 | |
| 46 | void get_test_params(TestParams& params, const std::string& prefix) |
| 47 | { |
| 48 | ParmParse pp(prefix); |
| 49 | pp.get("size", params.size); |
| 50 | pp.get("max_grid_size", params.max_grid_size); |
| 51 | pp.get("is_periodic", params.is_periodic); |
| 52 | |
| 53 | params.do_plotfile = true; |
| 54 | pp.query("do_plotfile", params.do_plotfile); |
| 55 | |
| 56 | params.check_answer = true; |
| 57 | pp.query("check_answer", params.check_answer); |
| 58 | } |
| 59 | |
| 60 | void testNeighborParticles () |
| 61 | { |
no test coverage detected