| 10 | |
| 11 | template<typename B> |
| 12 | Encoder_BCH_inter<B>::Encoder_BCH_inter(const int& K, const int& N, const tools::BCH_polynomial_generator<B>& GF_poly) |
| 13 | : Encoder_BCH<B>(K, N, GF_poly) |
| 14 | , U_K_reordered(this->K * mipp::N<B>()) |
| 15 | , par_reordered(this->n_rdncy * mipp::N<B>()) |
| 16 | { |
| 17 | const std::string name = "Encoder_BCH_inter"; |
| 18 | this->set_name(name); |
| 19 | this->set_n_frames_per_wave(mipp::N<B>()); |
| 20 | for (auto& t : this->tasks) |
| 21 | t->set_replicability(true); |
| 22 | } |
| 23 | |
| 24 | template<typename B> |
| 25 | Encoder_BCH_inter<B>* |
nothing calls this directly
no outgoing calls
no test coverage detected