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