Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions acvm-repo/acvm/src/compiler/transformers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ use acir::{
use indexmap::IndexMap;

mod csat;
mod r1cs;

pub(crate) use csat::CSatTransformer;
pub(crate) use r1cs::R1CSTransformer;

use super::{transform_assert_messages, AcirTransformationMap};

Expand Down Expand Up @@ -43,8 +41,7 @@ pub(super) fn transform_internal(
) -> (Circuit, Vec<usize>) {
let mut transformer = match &expression_width {
ExpressionWidth::Unbounded => {
let transformer = R1CSTransformer::new(acir);
return (transformer.transform(), acir_opcode_positions);
return (acir, acir_opcode_positions);
}
ExpressionWidth::Bounded { width } => {
let mut csat = CSatTransformer::new(*width);
Expand Down
16 changes: 0 additions & 16 deletions acvm-repo/acvm/src/compiler/transformers/r1cs.rs

This file was deleted.