| 174 | } |
| 175 | |
| 176 | std::string |
| 177 | SimpleDeltaRndNumGenerator::RandomDigits( int num ) |
| 178 | { |
| 179 | std::string str; |
| 180 | const char* dec1 = AbsRndNumGenerator::get_dec1(); |
| 181 | while ( num-- ) |
| 182 | { |
| 183 | int x = random_choice(10, NULL, NULL); |
| 184 | str += dec1[x]; |
| 185 | } |
| 186 | |
| 187 | return str; |
| 188 | } |
| 189 | |
| 190 | unsigned int |
| 191 | SimpleDeltaRndNumGenerator::pure_rnd_upto(const unsigned int bound) |
nothing calls this directly
no outgoing calls
no test coverage detected