| 388 | } |
| 389 | |
| 390 | void |
| 391 | DFSRndNumGenerator::log_depth(int d, const string *where, const char *log) |
| 392 | { |
| 393 | std::ostringstream ss1; |
| 394 | |
| 395 | if (log) |
| 396 | ss1 << "[" << log << "]"; |
| 397 | |
| 398 | if (where) |
| 399 | ss1 << d << "(" << *where << ", pos = " << current_pos_ << ", current_decision_depth=" << decision_depth_ << ")->"; |
| 400 | else |
| 401 | ss1 << d << "(..., pos = " << current_pos_ << ", current_decision_depth=" << decision_depth_ << ")->"; |
| 402 | trace_string_ += ss1.str(); |
| 403 | } |
| 404 | |
| 405 | void |
| 406 | DFSRndNumGenerator::init_states(int size) |
nothing calls this directly
no outgoing calls
no test coverage detected