@@ -44,7 +44,7 @@ type Gate = [
4444 _ : 0 ,
4545 typ : GateType ,
4646 wires : [ 0 , Wire , Wire , Wire , Wire , Wire , Wire , Wire ] ,
47- coeffs : MlArray < Field >
47+ coeffs : MlArray < Field > ,
4848] ;
4949
5050type PolyComm = [ _ : 0 , elems : MlArray < OrInfinity > ] ;
@@ -68,7 +68,7 @@ type VerificationEvals = [
6868 range_check1_comm : MlOption < PolyComm > ,
6969 foreign_field_add_comm : MlOption < PolyComm > ,
7070 foreign_field_mul_comm : MlOption < PolyComm > ,
71- rot_comm : MlOption < PolyComm >
71+ rot_comm : MlOption < PolyComm > ,
7272] ;
7373
7474type VerifierIndex = [
@@ -81,7 +81,7 @@ type VerifierIndex = [
8181 evals : VerificationEvals ,
8282 shifts : MlArray < Field > ,
8383 lookup_index : MlOption < Lookup < PolyComm > > ,
84- zkRows : number
84+ zkRows : number ,
8585] ;
8686
8787// oracles
@@ -99,14 +99,14 @@ type RandomOracles = [
9999 u : Field ,
100100 zeta_chal : ScalarChallenge ,
101101 v_chal : ScalarChallenge ,
102- u_chal : ScalarChallenge
102+ u_chal : ScalarChallenge ,
103103] ;
104104type Oracles = [
105105 _ : 0 ,
106106 o : RandomOracles ,
107107 p_eval : [ 0 , Field , Field ] ,
108108 opening_prechallenges : MlArray < Field > ,
109- digest_before_evaluations : Field
109+ digest_before_evaluations : Field ,
110110] ;
111111
112112// proof
@@ -115,22 +115,22 @@ type LookupCommitments = [
115115 _ : 0 ,
116116 sorted : MlArray < PolyComm > ,
117117 aggreg : PolyComm ,
118- runtime : MlOption < PolyComm >
118+ runtime : MlOption < PolyComm > ,
119119] ;
120120type ProverCommitments = [
121121 _ : 0 ,
122122 w_comm : MlTuple < PolyComm , 15 > ,
123123 z_comm : PolyComm ,
124124 t_comm : PolyComm ,
125- lookup : MlOption < LookupCommitments >
125+ lookup : MlOption < LookupCommitments > ,
126126] ;
127127type OpeningProof = [
128128 _ : 0 ,
129129 lr : MlArray < [ 0 , OrInfinity , OrInfinity ] > ,
130130 delta : OrInfinity ,
131131 z1 : Field ,
132132 z2 : Field ,
133- sg : OrInfinity
133+ sg : OrInfinity ,
134134] ;
135135type PointEvaluations < Field > = [ _ : 0 , zeta : MlArray < Field > , zeta_omega : MlArray < Field > ] ;
136136
@@ -163,7 +163,7 @@ type ProofEvaluations<Field> = [
163163 xor_lookup_selector : MlOption < PointEvaluations < Field > > ,
164164 lookup_gate_lookup_selector : MlOption < PointEvaluations < Field > > ,
165165 range_check_lookup_selector : MlOption < PointEvaluations < Field > > ,
166- foreign_field_mul_lookup_selector : MlOption < PointEvaluations < Field > >
166+ foreign_field_mul_lookup_selector : MlOption < PointEvaluations < Field > > ,
167167] ;
168168
169169type RecursionChallenge = [ _ : 0 , chals : MlArray < Field > , comm : PolyComm ] ;
@@ -175,7 +175,7 @@ type ProverProof = [
175175 evals : ProofEvaluations < Field > ,
176176 ft_eval1 : Field ,
177177 public_ : MlArray < Field > ,
178- prev_challenges : MlArray < RecursionChallenge >
178+ prev_challenges : MlArray < RecursionChallenge > ,
179179] ;
180180
181181type ProofWithPublic = [ _ : 0 , public_evals : MlOption < PointEvaluations < Field > > , proof : ProverProof ] ;
0 commit comments