Hamish Ivey-Law 50c9638b55
EVM arithmetic unit: unsigned comparisons (#688)
* Refactor u256 calculation; return cy/br from calculations.

* Implement less than and greater than operations.

* Add file documentation.
2022-08-26 09:13:47 +10:00

9 lines
102 B
Rust

mod add;
mod compare;
mod mul;
mod sub;
mod utils;
pub mod arithmetic_stark;
pub(crate) mod columns;