| 432 | } |
| 433 | |
| 434 | std::string |
| 435 | DFSRndNumGenerator::get_prefixed_name(const std::string &name) |
| 436 | { |
| 437 | std::ostringstream ss; |
| 438 | ss << "p_"; |
| 439 | seq_->get_sequence(ss); |
| 440 | ss << seq_->get_sep_char() << name; |
| 441 | return ss.str(); |
| 442 | } |
| 443 | |
| 444 | /* |
| 445 | * Print the tracing information for debugging. |
nothing calls this directly
no test coverage detected