MCPcopy Create free account
hub / github.com/NeuralNetworkVerification/Marabou / addNotifyObjPost

Method addNotifyObjPost

deps/CVC4/context/context.cpp:129–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127
128
129void Context::addNotifyObjPost(ContextNotifyObj* pCNO) {
130 // Insert pCNO at *front* of list
131 if(d_pCNOpost != NULL)
132 d_pCNOpost->prev() = &(pCNO->next());
133 pCNO->next() = d_pCNOpost;
134 pCNO->prev() = &d_pCNOpost;
135 d_pCNOpost = pCNO;
136}
137
138void ContextObj::update()
139{

Callers 1

ContextNotifyObjMethod · 0.80

Calls 2

prevMethod · 0.80
nextMethod · 0.45

Tested by

no test coverage detected