Update the accumulated values with the given ones
(&self, f_V: G::ScalarField, V: G)
| 228 | |
| 229 | /// Update the accumulated values with the given ones |
| 230 | pub fn get_updated(&self, f_V: G::ScalarField, V: G) -> Self { |
| 231 | Self { |
| 232 | V, |
| 233 | f_V, |
| 234 | max_size: self.max_size, |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | /// Compute new accumulated value after addition. |
| 239 | pub fn compute_new_post_add( |
no outgoing calls
no test coverage detected