@@ -63,17 +63,17 @@ struct SuperCircuitInstance<T> {
63
63
pub sc_permu_alpha : T ,
64
64
pub sc_permu_gamma : T ,
65
65
pub sc_rwtable_row_prev_fingerprint : T ,
66
- pub sc_rwtable_row_next_fingerprint : T ,
66
+ pub sc_rwtable_row_curr_fingerprint : T ,
67
67
pub sc_rwtable_prev_fingerprint : T ,
68
- pub sc_rwtable_next_fingerprint : T ,
68
+ pub sc_rwtable_curr_fingerprint : T ,
69
69
70
70
// evm circuit
71
71
pub ec_permu_alpha : T ,
72
72
pub ec_permu_gamma : T ,
73
73
pub ec_rwtable_row_prev_fingerprint : T ,
74
- pub ec_rwtable_row_next_fingerprint : T ,
74
+ pub ec_rwtable_row_curr_fingerprint : T ,
75
75
pub ec_rwtable_prev_fingerprint : T ,
76
- pub ec_rwtable_next_fingerprint : T ,
76
+ pub ec_rwtable_curr_fingerprint : T ,
77
77
}
78
78
79
79
impl < T : Clone + Copy > SuperCircuitInstance < T > {
@@ -91,15 +91,15 @@ impl<T: Clone + Copy> SuperCircuitInstance<T> {
91
91
sc_permu_alpha : iter_instances. next ( ) . unwrap ( ) ,
92
92
sc_permu_gamma : iter_instances. next ( ) . unwrap ( ) ,
93
93
sc_rwtable_row_prev_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
94
- sc_rwtable_row_next_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
94
+ sc_rwtable_row_curr_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
95
95
sc_rwtable_prev_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
96
- sc_rwtable_next_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
96
+ sc_rwtable_curr_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
97
97
ec_permu_alpha : iter_instances. next ( ) . unwrap ( ) ,
98
98
ec_permu_gamma : iter_instances. next ( ) . unwrap ( ) ,
99
99
ec_rwtable_row_prev_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
100
- ec_rwtable_row_next_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
100
+ ec_rwtable_row_curr_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
101
101
ec_rwtable_prev_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
102
- ec_rwtable_next_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
102
+ ec_rwtable_curr_fingerprint : iter_instances. next ( ) . unwrap ( ) ,
103
103
}
104
104
}
105
105
}
@@ -401,13 +401,13 @@ where
401
401
instance_i_plus_one. sc_permu_gamma. assigned( ) ,
402
402
) ,
403
403
(
404
- instance_i. sc_rwtable_row_next_fingerprint . assigned( ) ,
404
+ instance_i. sc_rwtable_row_curr_fingerprint . assigned( ) ,
405
405
instance_i_plus_one
406
406
. sc_rwtable_row_prev_fingerprint
407
407
. assigned( ) ,
408
408
) ,
409
409
(
410
- instance_i. sc_rwtable_next_fingerprint . assigned( ) ,
410
+ instance_i. sc_rwtable_curr_fingerprint . assigned( ) ,
411
411
instance_i_plus_one. sc_rwtable_prev_fingerprint. assigned( ) ,
412
412
) ,
413
413
// evm circuit
@@ -420,11 +420,11 @@ where
420
420
instance_i_plus_one. ec_permu_gamma. assigned( ) ,
421
421
) ,
422
422
(
423
- instance_i. ec_rwtable_next_fingerprint . assigned( ) ,
423
+ instance_i. ec_rwtable_curr_fingerprint . assigned( ) ,
424
424
instance_i_plus_one. ec_rwtable_prev_fingerprint. assigned( ) ,
425
425
) ,
426
426
(
427
- instance_i. ec_rwtable_row_next_fingerprint . assigned( ) ,
427
+ instance_i. ec_rwtable_row_curr_fingerprint . assigned( ) ,
428
428
instance_i_plus_one
429
429
. ec_rwtable_row_prev_fingerprint
430
430
. assigned( ) ,
0 commit comments