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