| 172 | } |
| 173 | |
| 174 | void move() { |
| 175 | real_vector = std::move(real_vector_alt); |
| 176 | real_vector_alt.clear(); |
| 177 | pre_vector = std::move(pre_vector_alt); |
| 178 | pre_vector_alt.clear(); |
| 179 | } |
| 180 | |
| 181 | void copy() { |
| 182 | real_vector = real_vector_alt; |
no test coverage detected