Skip to content

Commit 1c59c61

Browse files
authored
fix typo, chng comment (#82)
1 parent e7de92f commit 1c59c61

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/multilinear/provers/time/core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub struct TimeProver<F: Field, S: Stream<F>> {
1414
pub claim: F,
1515
pub current_round: usize,
1616
pub evaluations: Option<Vec<F>>,
17-
pub evaluation_stream: S, // Keep this for now, case we can do some small optimizations of first round etc
17+
pub evaluation_stream: S, // TODO (z-tech): this can be released after the first call to vsbw_reduce_evaluations
1818
pub num_variables: usize,
1919
}
2020

src/streams/stream.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn multivariate_claim<F: Field, S: Stream<F>>(stream: S) -> F {
77

88
for i in 0..num_evaluations {
99
let eval = stream.evaluation(i);
10-
claim += eval * eval;
10+
claim += eval;
1111
}
1212

1313
claim

0 commit comments

Comments
 (0)