Michael J Klein
Michael J Klein
### Aim Attempted to use a `Field` larger than `u32::MAX` as a numeric generic: ```noir global A: Field = 4294967297; fn foo() { } fn main() { let C =...
# Description - [ ] Change base to master after https://github.com/noir-lang/noir/pull/5614 is merged - [ ] Test field value conversion used for multi-scalar-mul and embedded curve add - [ ]...
# Description ## Problem\* My previous attempt to use AFL to fuzz `nargo` got stuck on making a fuzzing target: - There's a lot of file accesses - The file...
### Problem `noirfmt.toml` is undocumented, but can be configured with the following options: ```rust config! { max_width: usize, 100, "Maximum width of each line"; tab_spaces: usize, 4, "Number of spaces...
### Aim Attempted to compile a program that adds two `Field`'s using arithmetic generics, where the result of the computation is larger than `u32::MAX`: ```noir struct Foo {} impl Foo...