| 575 | const int ConnectFourAllState::Nil; |
| 576 | |
| 577 | int main(int argc, char* argv[]) |
| 578 | { |
| 579 | |
| 580 | ConnectFourOptions opt("QCSP Connect-Four-Game"); |
| 581 | opt.parse(argc,argv); |
| 582 | Script::run<ConnectFourAllState,QDFS,ConnectFourOptions>(opt); |
| 583 | |
| 584 | return 0; |
| 585 | } |