| 491 | } |
| 492 | |
| 493 | void MutationDispatcher::PrintRecommendedDictionary() { |
| 494 | std::vector<DictionaryEntry> V; |
| 495 | for (auto &DE : PersistentAutoDictionary) |
| 496 | if (!ManualDictionary.ContainsWord(DE.GetW())) |
| 497 | V.push_back(DE); |
| 498 | if (V.empty()) return; |
| 499 | Printf("###### Recommended dictionary. ######\n"); |
| 500 | for (auto &DE: V) { |
| 501 | assert(DE.GetW().size()); |
| 502 | Printf("\""); |
| 503 | PrintASCII(DE.GetW(), "\""); |
| 504 | Printf(" # Uses: %zd\n", DE.GetUseCount()); |
| 505 | } |
| 506 | Printf("###### End of recommended dictionary. ######\n"); |
| 507 | } |
| 508 | |
| 509 | void MutationDispatcher::PrintMutationSequence(bool Verbose) { |
| 510 | Printf("MS: %zd ", CurrentMutatorSequence.size()); |
no test coverage detected