/
| 198 | |
| 199 | /*****************************************************/ |
| 200 | void initialize_lengths(const size_t* lengths_in) |
| 201 | { |
| 202 | preinitialize_lengths_to_1_1_1(); |
| 203 | |
| 204 | for( size_t i = 0; i < _number_of_dimensions; ++i ) |
| 205 | { |
| 206 | _lengths[i] = lengths_in[i]; |
| 207 | } |
| 208 | |
| 209 | _requested_length_x = _lengths[dimx]; |
| 210 | adjust_length_x_for_hermitian_buffers(); |
| 211 | } |
| 212 | |
| 213 | /*****************************************************/ |
| 214 | void adjust_length_x_for_hermitian_buffers() |
nothing calls this directly
no outgoing calls
no test coverage detected