File tree 1 file changed +11
-12
lines changed
extensions/algebra/circuit/src
1 file changed +11
-12
lines changed Original file line number Diff line number Diff line change @@ -231,19 +231,18 @@ impl<F: PrimeField32> VmExtension<F> for ModularExtension {
231
231
} else {
232
232
panic ! ( "Modulus too large" ) ;
233
233
}
234
-
235
- let non_qr_hint_sub_ex = phantom:: NonQrHintSubEx :: new ( self . supported_moduli . clone ( ) ) ;
236
- builder. add_phantom_sub_executor (
237
- non_qr_hint_sub_ex. clone ( ) ,
238
- PhantomDiscriminant ( ModularPhantom :: HintNonQr as u16 ) ,
239
- ) ?;
240
-
241
- let sqrt_hint_sub_ex = phantom:: SqrtHintSubEx :: new ( non_qr_hint_sub_ex) ;
242
- builder. add_phantom_sub_executor (
243
- sqrt_hint_sub_ex,
244
- PhantomDiscriminant ( ModularPhantom :: HintSqrt as u16 ) ,
245
- ) ?;
246
234
}
235
+ let non_qr_hint_sub_ex = phantom:: NonQrHintSubEx :: new ( self . supported_moduli . clone ( ) ) ;
236
+ builder. add_phantom_sub_executor (
237
+ non_qr_hint_sub_ex. clone ( ) ,
238
+ PhantomDiscriminant ( ModularPhantom :: HintNonQr as u16 ) ,
239
+ ) ?;
240
+
241
+ let sqrt_hint_sub_ex = phantom:: SqrtHintSubEx :: new ( non_qr_hint_sub_ex) ;
242
+ builder. add_phantom_sub_executor (
243
+ sqrt_hint_sub_ex,
244
+ PhantomDiscriminant ( ModularPhantom :: HintSqrt as u16 ) ,
245
+ ) ?;
247
246
248
247
Ok ( inventory)
249
248
}
You can’t perform that action at this time.
0 commit comments