mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-02 22:03:07 +00:00
* First draft of bitwise AND.
* Refactor everything; add support for other binary bitops.
* Documentation; fix integration into rest of ALU.
* Allow `cargo fmt` to make code harder to read.
* Refactor following Jakub's suggestions.
* Fix variable name.
* Minor documentation.
* Basic tests.
* Address Daniel's PR comments.
* Remove the 'BIT' prefix from the BIT{AND,IOR,XOR,ANDNOT} names.
* cargo fmt/clippy
* Simplify bit test.
11 lines
164 B
Rust
11 lines
164 B
Rust
#![feature(array_zip)]
|
|
|
|
mod alu;
|
|
mod core_registers;
|
|
pub mod lookup;
|
|
mod memory;
|
|
mod permutation_unit;
|
|
mod public_input_layout;
|
|
mod registers;
|
|
pub mod system_zero;
|