| 10 | |
| 11 | template<typename B> |
| 12 | Encoder_LDPC<B>::Encoder_LDPC(const int K, const int N) |
| 13 | : Encoder<B>(K, N) |
| 14 | { |
| 15 | const std::string name = "Encoder_LDPC"; |
| 16 | this->set_name(name); |
| 17 | for (auto& t : this->tasks) |
| 18 | t->set_replicability(true); |
| 19 | } |
| 20 | |
| 21 | template<typename B> |
| 22 | Encoder_LDPC<B>* |
nothing calls this directly
no outgoing calls
no test coverage detected