MCPcopy Create free account
hub / github.com/csmith-project/csmith / OutputStatistics

Method OutputStatistics

src/SimpleDeltaRndNumGenerator.cpp:218–231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216}
217
218void
219SimpleDeltaRndNumGenerator::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}

Callers

nothing calls this directly

Calls 1

sequence_lengthMethod · 0.45

Tested by

no test coverage detected