| 6 | |
| 7 | template<typename B> |
| 8 | Encoder_polar_sys<B>::Encoder_polar_sys(const int& K, const int& N, const std::vector<bool>& frozen_bits) |
| 9 | : Encoder_polar<B>(K, N, frozen_bits) |
| 10 | { |
| 11 | const std::string name = "Encoder_polar_sys"; |
| 12 | this->set_name(name); |
| 13 | for (auto& t : this->tasks) |
| 14 | t->set_replicability(true); |
| 15 | this->set_sys(true); |
| 16 | } |
| 17 | |
| 18 | template<typename B> |
| 19 | Encoder_polar_sys<B>* |
nothing calls this directly
no outgoing calls
no test coverage detected