\brief Main-function * \relates BIBD */
| 176 | * \relates BIBD |
| 177 | */ |
| 178 | int |
| 179 | main(int argc, char* argv[]) { |
| 180 | BIBDOptions opt("BIBD",7,3,60); |
| 181 | |
| 182 | opt.symmetry(BIBD::SYMMETRY_LEX); |
| 183 | opt.symmetry(BIBD::SYMMETRY_NONE,"none"); |
| 184 | opt.symmetry(BIBD::SYMMETRY_LEX,"lex"); |
| 185 | opt.symmetry(BIBD::SYMMETRY_LDSB,"ldsb"); |
| 186 | |
| 187 | opt.parse(argc,argv); |
| 188 | |
| 189 | /* |
| 190 | * Other interesting instances: |
| 191 | * BIBD(7,3,1), BIBD(6,3,2), BIBD(7,3,20), ... |
| 192 | */ |
| 193 | |
| 194 | Script::run<BIBD,DFS,BIBDOptions>(opt); |
| 195 | return 0; |
| 196 | } |
| 197 | |
| 198 | // STATISTICS: example-any |
| 199 |