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