Skip to content

Commit

Permalink
get_arc
Browse files Browse the repository at this point in the history
  • Loading branch information
rickb80 committed Oct 28, 2024
1 parent dc5604f commit 236c49f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ impl<F: PrimeField> SpecifiedRanges<F> {
pub fn drain_inputs(&self) {
let mut inputs = self.inputs.lock().unwrap();
let drained_inputs = inputs.drain(..).collect();
let pctx = self.wcm.get_arc_pctx();
let sctx = self.wcm.get_arc_sctx();
let ectx = self.wcm.get_arc_ectx();
let pctx = self.wcm.get_pctx();
let sctx = self.wcm.get_sctx();
let ectx = self.wcm.get_ectx();

// Perform the last update
self.update_multiplicity(drained_inputs);
Expand Down
6 changes: 3 additions & 3 deletions pil2-components/lib/std/rs/src/range_check/u8air.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ impl<F: PrimeField> U8Air<F> {
pub fn drain_inputs(&self) {
let mut inputs = self.inputs.lock().unwrap();
let drained_inputs = inputs.drain(..).collect();
let pctx = self.wcm.get_arc_pctx();
let sctx = self.wcm.get_arc_sctx();
let ectx = self.wcm.get_arc_ectx();
let pctx = self.wcm.get_pctx();
let sctx = self.wcm.get_sctx();
let ectx = self.wcm.get_ectx();

// Perform the last update
self.update_multiplicity(drained_inputs);
Expand Down

0 comments on commit 236c49f

Please sign in to comment.