| 8 | |
| 9 | template<typename B, typename Q> |
| 10 | Extractor_uncoded<B, Q>::Extractor_uncoded(const int K) |
| 11 | : Extractor<B, Q>(K, K, 0) |
| 12 | , info_bits_pos(K, 0) |
| 13 | { |
| 14 | const std::string name = "Extractor_uncoded"; |
| 15 | this->set_name(name); |
| 16 | for (auto& t : this->tasks) |
| 17 | t->set_replicability(true); |
| 18 | std::iota(info_bits_pos.begin(), info_bits_pos.end(), 0); |
| 19 | } |
| 20 | |
| 21 | template<typename B, typename Q> |
| 22 | Extractor_uncoded<B, Q>* |
nothing calls this directly
no outgoing calls
no test coverage detected