File tree Expand file tree Collapse file tree 6 files changed +12
-8
lines changed Expand file tree Collapse file tree 6 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ pub fn criterion_benchmark(c: &mut Criterion) {
3535 let lambdaworks_vec = to_lambdaworks_vec ( & arkworks_vec) ;
3636
3737 c. bench_function (
38- & format ! ( "{BENCHMARK_NAME} 1M elements | lambdaworks" ) ,
38+
39+ & format ! ( "{BENCHMARK_NAME} 1M elements | lambdaworks" , ) ,
40+
3941 |b| {
4042 b. iter ( || {
4143 let mut iter = lambdaworks_vec. iter ( ) ;
Original file line number Diff line number Diff line change @@ -34,7 +34,8 @@ pub fn criterion_benchmark(c: &mut Criterion) {
3434 let lambdaworks_vec = to_lambdaworks_vec ( & arkworks_vec) ;
3535
3636 c. bench_function (
37- & format ! ( "{BENCHMARK_NAME} 10K elements | lambdaworks" ) ,
37+
38+ & format ! ( "{BENCHMARK_NAME} 10K elements | lambdaworks" , ) ,
3839 |b| {
3940 b. iter ( || {
4041 let mut iter = lambdaworks_vec. iter ( ) ;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
4343 let lambdaworks_vec = to_lambdaworks_vec ( & arkworks_vec) ;
4444
4545 c. bench_function (
46- & format ! ( "{BENCHMARK_NAME} 10K elements | lambdaworks" ) ,
46+ & format ! ( "{BENCHMARK_NAME} 10K elements | lambdaworks" , ) ,
4747 |b| {
4848 b. iter ( || {
4949 let mut iter = lambdaworks_vec. iter ( ) ;
Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ pub fn criterion_benchmark(c: &mut Criterion) {
4141 let lambdaworks_vec = to_lambdaworks_vec ( & arkworks_vec) ;
4242
4343 c. bench_function (
44- & format ! ( "{BENCHMARK_NAME} 100 elements | lambdaworks" ) ,
44+
45+ & format ! ( "{BENCHMARK_NAME} 100 elements | lambdaworks" , ) ,
4546 |b| {
4647 b. iter ( || {
4748 let mut iter = lambdaworks_vec. iter ( ) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ pub fn criterion_benchmark(c: &mut Criterion) {
3131 {
3232 let lambdaworks_vec = to_lambdaworks_vec ( & arkworks_vec) ;
3333 c. bench_function (
34- & format ! ( "{BENCHMARK_NAME} 1M elements | lambdaworks" ) ,
34+
35+ & format ! ( "{BENCHMARK_NAME} 1M elements | lambdaworks" , ) ,
3536 |b| {
3637 b. iter ( || {
3738 let mut iter = lambdaworks_vec. iter ( ) ;
Original file line number Diff line number Diff line change @@ -74,9 +74,8 @@ pub fn validate_trace<A: AIR>(
7474
7575 if boundary_value. clone ( ) . to_extension ( ) != trace_value {
7676 ret = false ;
77- error ! (
78- "Boundary constraint inconsistency - Expected value {boundary_value:?} in step {step} and column {col}, found: {trace_value:?}"
79- ) ;
77+
78+ error ! ( "Boundary constraint inconsistency - Expected value {boundary_value:?} in step {step} and column {col}, found: {trace_value:?}" ) ;
8079 }
8180 } ) ;
8281
You can’t perform that action at this time.
0 commit comments