This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(acvm)!: Simplification pass for ACIR (#151)
* Simplification pass for ACIR * update comments * Apply simplification during fallback * Add unit test * Move simplifier to optimiser module * Fix unit tests * make simplify public
- Loading branch information
Showing
9 changed files
with
554 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
mod general; | ||
mod redundant_range; | ||
pub mod simplify; | ||
|
||
pub(crate) use general::GeneralOpt as GeneralOptimizer; | ||
pub(crate) use redundant_range::RangeOptimizer; | ||
pub(crate) use simplify::CircuitSimplifier as Simplifier; |
Oops, something went wrong.