Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reimplement snarky backend with TS bigints #13966

Merged
merged 11 commits into from
Oct 3, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -1172,8 +1172,8 @@ end = struct
let reduce_lincom sys (x : Fp.t Snarky_backendless.Cvar.t) =
let constant, terms =
Fp.(
Snarky_backendless.Cvar.to_constant_and_terms ~add ~mul ~zero:(of_int 0)
~equal ~one:(of_int 1))
Snarky_backendless.Cvar.to_constant_and_terms ~add ~mul ~zero ~equal
~one)
x
in
let terms = accumulate_terms terms in
Expand Down
2 changes: 1 addition & 1 deletion src/lib/snarky
2 changes: 1 addition & 1 deletion src/lib/snarkyjs