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

Method head

gecode/kernel/core.hpp:3192–3198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3190 }
3191
3192 forceinline void
3193 ActorLink::head(ActorLink* a) {
3194 // Inserts al at head of link-chain (that is, after this)
3195 ActorLink* n = _next;
3196 this->_next = a; a->_prev = this;
3197 a->_next = n; n->_prev = a;
3198 }
3199
3200 forceinline void
3201 ActorLink::tail(ActorLink* a) {

Callers 2

statusMethod · 0.80
core.hppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected