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

Method Transitions

gecode/int/extensional/dfa.hpp:212–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210 */
211
212 forceinline
213 DFA::Transitions::Transitions(const DFA& d) {
214 const DFAI* o = static_cast<DFAI*>(d.object());
215 if (o != nullptr) {
216 c_trans = &o->trans[0];
217 e_trans = c_trans+o->n_trans;
218 } else {
219 c_trans = e_trans = nullptr;
220 }
221 }
222
223 forceinline
224 DFA::Transitions::Transitions(const DFA& d, int n) {

Callers

nothing calls this directly

Calls 1

objectMethod · 0.45

Tested by

no test coverage detected