\brief Main-function * \relates Crew */
| 177 | * \relates Crew |
| 178 | */ |
| 179 | int |
| 180 | main(int argc, char* argv[]) { |
| 181 | Options o("Crew"); |
| 182 | o.iterations(100); |
| 183 | o.parse(argc,argv); |
| 184 | Script::run<Crew,DFS,Options>(o); |
| 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | namespace { |
| 189 |
nothing calls this directly
no test coverage detected