Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Maddiaa0 committed Dec 6, 2023
1 parent b61f85d commit 8acce8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ fn compile<T: FieldElement, Q: QueryCallback<T>>(

// md: we inline intermediate polynomials here, as honk does not have a notion of an intermediate
let mut mut_analyzed = analyzed;
mut_analyzed.identities = inline_intermediate_polynomials(&mut_analyzed);
mut_analyzed.identities = mut_analyzed.identities_with_inlined_intermediate_polynomials();

let optimized_pil_file_name = output_dir.join(format!(
"{}_opt.pil",
Expand Down
2 changes: 1 addition & 1 deletion powdr_cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ fn run_command(command: Commands) {
prove_with,
export_csv,
csv_mode,
bname,
bname
)) {
Ok(()) => {}
Err(errors) => {
Expand Down

0 comments on commit 8acce8a

Please sign in to comment.