| 8 | |
| 9 | template<typename B> |
| 10 | Encoder_coset<B>::Encoder_coset(const int K, const int N, const int seed) |
| 11 | : Encoder<B>(K, N) |
| 12 | , rd_engine(seed) |
| 13 | , uniform_dist(0, 1) |
| 14 | { |
| 15 | const std::string name = "Encoder_coset"; |
| 16 | this->set_name(name); |
| 17 | for (auto& t : this->tasks) |
| 18 | t->set_replicability(true); |
| 19 | } |
| 20 | |
| 21 | template<typename B> |
| 22 | Encoder_coset<B>* |
nothing calls this directly
no outgoing calls
no test coverage detected