Simplifications in Nova's RO (#98)

* rename methods for better clarity

* rename

* Bump version
This commit is contained in:
Srinath Setty
2022-07-25 12:22:41 -07:00
committed by GitHub
parent c6fa4d44eb
commit 3dc26fd7e4
15 changed files with 172 additions and 219 deletions

View File

@@ -145,7 +145,7 @@ where
Ok(y)
}
fn compute(&self, z: &F) -> F {
fn output(&self, z: &F) -> F {
let mut x = *z;
let mut y = x;
for _i in 0..self.num_cons {

View File

@@ -146,7 +146,7 @@ where
Ok(y)
}
fn compute(&self, z: &F) -> F {
fn output(&self, z: &F) -> F {
let mut x = *z;
let mut y = x;
for _i in 0..self.num_cons {