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