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

Method Create

test/int/mm-count.cpp:269–281  ·  view source on GitHub ↗

Perform creation and registration

Source from the content-addressed store, hash-verified

267 public:
268 /// Perform creation and registration
269 Create(void) {
270 for (IntRelTypes irts; irts(); ++irts)
271 if ((irts.irt() == Gecode::IRT_EQ) ||
272 (irts.irt() == Gecode::IRT_LQ) ||
273 (irts.irt() == Gecode::IRT_GQ)) {
274 (void) new IntInt(irts.irt());
275 (void) new IntVar(irts.irt());
276 (void) new VarVar(irts.irt());
277 (void) new VarInt(irts.irt());
278 (void) new IntArrayInt(irts.irt());
279 (void) new IntArrayVar(irts.irt());
280 }
281 }
282 };
283
284 Create c;

Callers

nothing calls this directly

Calls 1

irtMethod · 0.80

Tested by

no test coverage detected