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

Method Create

test/int/gcc.cpp:296–307  ·  view source on GitHub ↗

Perform creation and registration

Source from the content-addressed store, hash-verified

294 public:
295 /// Perform creation and registration
296 Create(void) {
297 for (IntPropLevels ipls; ipls(); ++ipls) {
298 (void) new IntAllMinMax(ipls.ipl());
299 (void) new IntAllMinMaxDef(ipls.ipl());
300 (void) new IntAllMax(ipls.ipl());
301 (void) new IntSome<false>(ipls.ipl());
302 (void) new IntSome<true>(ipls.ipl());
303 (void) new VarAll(ipls.ipl());
304 (void) new VarSome("Small",2,-1,3,ipls.ipl());
305 (void) new VarSome("Large",3,-1,4,ipls.ipl());
306 }
307 }
308 };
309
310 Create c;

Callers

nothing calls this directly

Calls 1

iplMethod · 0.45

Tested by

no test coverage detected