| 25 | |
| 26 | template<typename B> |
| 27 | void |
| 28 | Encoder_NO<B>::_encode(const B* U_K, B* X_K, const size_t /*frame_id*/) |
| 29 | { |
| 30 | std::copy(U_K, U_K + this->K, X_K); |
| 31 | } |
| 32 | |
| 33 | template<typename B> |
| 34 | bool |
nothing calls this directly
no outgoing calls
no test coverage detected