| 108 | |
| 109 | template <typename T> |
| 110 | T getInputFromInputCorpus(const std::set<T>& inputCorpus, const size_t& index) { |
| 111 | BOLT_CHECK_GE(index, 0); |
| 112 | BOLT_CHECK_LT(index, inputCorpus.size()); |
| 113 | return *std::next(inputCorpus.begin(), index); |
| 114 | } |
| 115 | |
| 116 | template <typename T> |
| 117 | void addInputToInputCorpus(std::set<T>& inputCorpus, const T& newInput) { |
no test coverage detected