| 8 | |
| 9 | template<typename B, typename R> |
| 10 | Decoder_turbo_std<B, R>::Decoder_turbo_std(const int& K, |
| 11 | const int& N, |
| 12 | const int& n_ite, |
| 13 | const Decoder_SISO<B, R>& siso_n, |
| 14 | const Decoder_SISO<B, R>& siso_i, |
| 15 | const Interleaver<R>& pi, |
| 16 | const bool buffered_encoding) |
| 17 | : Decoder_turbo<B, R>(K, N, n_ite, siso_n, siso_i, pi, buffered_encoding) |
| 18 | { |
| 19 | const std::string name = "Decoder_turbo_std"; |
| 20 | this->set_name(name); |
| 21 | for (auto& t : this->tasks) |
| 22 | t->set_replicability(true); |
| 23 | } |
| 24 | |
| 25 | template<typename B, typename R> |
| 26 | Decoder_turbo_std<B, R>* |
nothing calls this directly
no outgoing calls
no test coverage detected