MCPcopy Create free account
hub / github.com/Gecode/gecode / main

Function main

examples/bibd.cpp:178–196  ·  view source on GitHub ↗

\brief Main-function * \relates BIBD */

Source from the content-addressed store, hash-verified

176 * \relates BIBD
177 */
178int
179main(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

Callers

nothing calls this directly

Calls 2

symmetryMethod · 0.45
parseMethod · 0.45

Tested by

no test coverage detected