\brief Main-function * \relates MagicSquare */
| 136 | * \relates MagicSquare |
| 137 | */ |
| 138 | int |
| 139 | main(int argc, char* argv[]) { |
| 140 | SizeOptions opt("MagicSquare"); |
| 141 | opt.iterations(1); |
| 142 | opt.size(7); |
| 143 | opt.branching(MagicSquare::BRANCH_SIZE); |
| 144 | opt.branching(MagicSquare::BRANCH_SIZE, "size"); |
| 145 | opt.branching(MagicSquare::BRANCH_AFC_SIZE, "afc-size"); |
| 146 | opt.parse(argc,argv); |
| 147 | Script::run<MagicSquare,DFS,SizeOptions>(opt); |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | // STATISTICS: example-any |
| 152 |
nothing calls this directly
no test coverage detected