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

Method tail

gecode/kernel/core.hpp:3200–3206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3198 }
3199
3200 forceinline void
3201 ActorLink::tail(ActorLink* a) {
3202 // Inserts al at tail of link-chain (that is, before this)
3203 ActorLink* p = _prev;
3204 a->_next = this; this->_prev = a;
3205 p->_next = a; a->_prev = p;
3206 }
3207
3208 forceinline bool
3209 ActorLink::empty(void) const {

Callers 2

core.hppFile · 0.80
enqueueMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected