| 29 | |
| 30 | template<typename B> |
| 31 | void |
| 32 | Encoder_coset<B>::_encode(const B* U_K, B* X_N, const size_t /*frame_id*/) |
| 33 | { |
| 34 | std::copy(U_K, U_K + this->K, X_N); |
| 35 | |
| 36 | for (auto i = this->K; i < this->N; i++) |
| 37 | X_N[i] = (B)this->uniform_dist(this->rd_engine); |
| 38 | } |
| 39 | |
| 40 | template<typename B> |
| 41 | const std::vector<uint32_t>& |
nothing calls this directly
no outgoing calls
no test coverage detected