Skip to content

Commit

Permalink
chore: remove from args
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Jul 3, 2024
1 parent e55f65f commit 010657f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions bb-pilcom/bb-pil-backend/src/circuit_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pub trait CircuitBuilder {
all_cols_without_inverses: &[String],
all_cols: &[String],
to_be_shifted: &[String],
all_cols_with_shifts: &[String],
);

fn create_circuit_builder_cpp(&mut self, name: &str, all_cols: &[String]);
Expand All @@ -26,7 +25,6 @@ impl CircuitBuilder for BBFiles {
all_cols_without_inverses: &[String],
all_cols: &[String],
to_be_shifted: &[String],
all_cols_with_shifts: &[String],
) {
let mut handlebars = Handlebars::new();

Expand All @@ -37,7 +35,6 @@ impl CircuitBuilder for BBFiles {
"all_cols_without_inverses": all_cols_without_inverses,
"all_cols": all_cols,
"to_be_shifted": to_be_shifted,
"all_cols_with_shifts": all_cols_with_shifts,
});

handlebars
Expand Down
1 change: 0 additions & 1 deletion bb-pilcom/bb-pil-backend/src/vm_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ pub fn analyzed_to_cpp<F: FieldElement>(
&all_cols_without_inverses,
&all_cols,
&to_be_shifted,
&all_cols_with_shifts,
);

bb_files.create_circuit_builder_cpp(file_name, &all_cols);
Expand Down

0 comments on commit 010657f

Please sign in to comment.