| 47 | |
| 48 | template<typename B, typename Q> |
| 49 | module::Decoder_SISO<B, Q>* |
| 50 | Decoder_NO ::build_siso(module::Encoder<B>* /*encoder*/) const |
| 51 | { |
| 52 | if (this->type == "NONE" && this->implem == "HARD_DECISION") return new module::Decoder_NO<B, Q>(this->K); |
| 53 | |
| 54 | throw spu::tools::cannot_allocate(__FILE__, __LINE__, __func__); |
| 55 | } |
| 56 | |
| 57 | template<typename B, typename Q> |
| 58 | module::Decoder_SIHO<B, Q>* |
nothing calls this directly
no outgoing calls
no test coverage detected