* Return the sequence of random choices */
| 88 | * Return the sequence of random choices |
| 89 | */ |
| 90 | void |
| 91 | DefaultRndNumGenerator::get_sequence(std::string &sequence) |
| 92 | { |
| 93 | std::ostringstream ss; |
| 94 | seq_->get_sequence(ss); |
| 95 | sequence = ss.str(); |
| 96 | } |
| 97 | |
| 98 | std::string |
| 99 | DefaultRndNumGenerator::get_prefixed_name(const std::string &name) |
nothing calls this directly
no outgoing calls
no test coverage detected