@@ -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 =
0 commit comments