| 216 | } |
| 217 | |
| 218 | void |
| 219 | SimpleDeltaRndNumGenerator::OutputStatistics(ostream &out) |
| 220 | { |
| 221 | assert(impl_); |
| 222 | assert(impl_->seq_); |
| 223 | out << "/*" << std::endl; |
| 224 | out << "** This program was reduced by the simple delta reduction algorithm" << std::endl; |
| 225 | #ifdef WIN32 |
| 226 | out << "** at a random point " << (unsigned int)impl_->random_point_ << " with the sequence of length " << (unsigned int)impl_->seq_->sequence_length() << "." << std::endl; |
| 227 | #else |
| 228 | out << "** at a random point " << impl_->random_point_ << " with the sequence of length " << impl_->seq_->sequence_length() << "." << std::endl; |
| 229 | #endif |
| 230 | out << "*/" << std::endl; |
| 231 | } |
nothing calls this directly
no test coverage detected