| 193 | } |
| 194 | |
| 195 | std::vector<float> denoise_from_velocity( |
| 196 | const std::vector<float> & x, |
| 197 | const std::vector<float> & velocity, |
| 198 | float t) { |
| 199 | return euler_step(x, velocity, t); |
| 200 | } |
| 201 | |
| 202 | std::vector<float> renoise( |
| 203 | const std::vector<float> & denoised, |