\brief Main-function * \relates AllInterval */
| 114 | * \relates AllInterval |
| 115 | */ |
| 116 | int |
| 117 | main(int argc, char* argv[]){ |
| 118 | SizeOptions opt("AllInterval"); |
| 119 | opt.size(1000); |
| 120 | opt.iterations(5); |
| 121 | opt.ipl(IPL_BND); |
| 122 | opt.parse(argc, argv); |
| 123 | if (opt.size() < 2) { |
| 124 | std::cerr << "size must be at least 2!" << std::endl; |
| 125 | return -1; |
| 126 | } |
| 127 | Script::run<AllInterval,DFS,SizeOptions>(opt); |
| 128 | return 0; |
| 129 | } |
| 130 | |
| 131 | // STATISTICS: example-any |
| 132 |
nothing calls this directly
no test coverage detected