\brief Main-function * \relates Money */
| 126 | * \relates Money |
| 127 | */ |
| 128 | int |
| 129 | main(int argc, char* argv[]) { |
| 130 | Options opt("SEND+MORE=MONEY"); |
| 131 | opt.model(Money::MODEL_SINGLE); |
| 132 | opt.model(Money::MODEL_SINGLE, "single", "use single linear equation"); |
| 133 | opt.model(Money::MODEL_CARRY, "carry", "use carry"); |
| 134 | opt.solutions(0); |
| 135 | opt.iterations(20000); |
| 136 | opt.parse(argc,argv); |
| 137 | Script::run<Money,DFS,Options>(opt); |
| 138 | return 0; |
| 139 | } |
| 140 | |
| 141 | // STATISTICS: example-any |
| 142 |
nothing calls this directly
no test coverage detected