\brief Main-function * \relates ColoredMatrix */
| 532 | * \relates ColoredMatrix |
| 533 | */ |
| 534 | int |
| 535 | main(int argc, char* argv[]) { |
| 536 | ColoredMatrixOptions opt("Colored matrix"); |
| 537 | opt.parse(argc,argv); |
| 538 | if (opt.search() == ColoredMatrix::SEARCH_DFS) { |
| 539 | Script::run<ColoredMatrix,DFS,ColoredMatrixOptions>(opt); |
| 540 | } else { |
| 541 | Script::run<ColoredMatrix,BAB,ColoredMatrixOptions>(opt); |
| 542 | } |
| 543 | return 0; |
| 544 | } |
| 545 | |
| 546 | |
| 547 | namespace { |