Skip to content

Commit 44400aa

Browse files
committed
nothing
1 parent caf9ce6 commit 44400aa

File tree

2 files changed

+3
-26
lines changed

2 files changed

+3
-26
lines changed

crates/lean_prover/src/prove_execution.rs

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -600,11 +600,7 @@ pub fn prove_execution(
600600
let index_a: F = dot_product_columns[2][i].as_base().unwrap();
601601
let index_b: F = dot_product_columns[3][i].as_base().unwrap();
602602
let index_res: F = dot_product_columns[4][i].as_base().unwrap();
603-
for (j, column) in dot_product_indexes_spread
604-
.iter_mut()
605-
.enumerate()
606-
.take(DIMENSION)
607-
{
603+
for (j, column) in dot_product_indexes_spread.iter_mut().enumerate() {
608604
column[i] = index_a + F::from_usize(j);
609605
column[i + dot_product_table_length] = index_b + F::from_usize(j);
610606
column[i + 2 * dot_product_table_length] = index_res + F::from_usize(j);
@@ -901,10 +897,7 @@ pub fn prove_execution(
901897
.par_iter()
902898
.map(|slice| slice.evaluate(&dot_product_air_point))
903899
.collect::<Vec<_>>();
904-
assert_eq!(
905-
dot_product_with_base(&dot_product_computation_column_evals),
906-
dot_product_evals_to_prove[8]
907-
);
900+
908901
prover_state.add_extension_scalars(&dot_product_computation_column_evals);
909902
let dot_product_computation_column_statements = (0..DIMENSION)
910903
.map(|i| {
@@ -940,23 +933,6 @@ pub fn prove_execution(
940933
mem_lookup_eval_spread_indexes_dot_product,
941934
]);
942935

943-
assert_eq!(
944-
[
945-
mem_lookup_eval_indexes_a,
946-
mem_lookup_eval_indexes_b,
947-
mem_lookup_eval_indexes_c,
948-
mem_lookup_eval_spread_indexes_dot_product
949-
* mem_lookup_eval_indexes_partial_point[..index_diff]
950-
.iter()
951-
.map(|x| EF::ONE - *x)
952-
.product::<EF>(),
953-
]
954-
.evaluate(&MultilinearPoint(
955-
base_memory_logup_star_statements.on_indexes.point[..2].to_vec(),
956-
)),
957-
base_memory_logup_star_statements.on_indexes.value
958-
);
959-
960936
let dot_product_logup_star_indexes_inner_point =
961937
MultilinearPoint(mem_lookup_eval_indexes_partial_point.0[5 + index_diff..].to_vec());
962938
let dot_product_logup_star_indexes_inner_value_a =

crates/rec_aggregation/src/xmss_aggregate.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,7 @@ pub fn bench_xmss(n: usize, log_lifetime: usize) -> Duration {
308308

309309
#[test]
310310
fn test_xmss_aggregate() {
311+
//utils::init_tracing();
311312
use p3_field::Field;
312313
let n_public_keys: usize = std::env::var("NUM_XMSS_AGGREGATED")
313314
.unwrap_or("100".to_string())

0 commit comments

Comments
 (0)