\brief Main-function * \relates Grocery */
| 101 | * \relates Grocery |
| 102 | */ |
| 103 | int |
| 104 | main(int argc, char* argv[]) { |
| 105 | Options opt("Grocery"); |
| 106 | opt.iterations(20); |
| 107 | opt.parse(argc,argv); |
| 108 | Script::run<Grocery,DFS,Options>(opt); |
| 109 | return 0; |
| 110 | } |
| 111 | |
| 112 | // STATISTICS: example-any |
| 113 |
nothing calls this directly
no test coverage detected