| 163 | |
| 164 | template<typename B> |
| 165 | void |
| 166 | Encoder_user<B>::_encode(const B* /*U_K*/, B* X_N, const size_t /*frame_id*/) |
| 167 | { |
| 168 | std::copy(this->codewords[this->cw_counter].begin(), this->codewords[this->cw_counter].end(), X_N); |
| 169 | |
| 170 | this->cw_counter = (this->cw_counter + 1) % (int)this->codewords.size(); |
| 171 | } |
| 172 | |
| 173 | template<typename B> |
| 174 | bool |
nothing calls this directly
no outgoing calls
no test coverage detected