MCPcopy Create free account
hub / github.com/csmith-project/csmith / init_states

Method init_states

src/DFSRndNumGenerator.cpp:405–413  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

403}
404
405void
406DFSRndNumGenerator::init_states(int size)
407{
408 for (int i = 0; i < size; ++i) {
409 DFSRndNumGenerator::SearchState *state = new SearchState(i);
410 assert(state && "new SearchState: error!");
411 states_.push_back(state);
412 }
413}
414
415void
416DFSRndNumGenerator::reset_state(void)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected