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

Generalize over field variable type #861

Merged
merged 14 commits into from
Jan 8, 2025
2 changes: 1 addition & 1 deletion src/base/snark_intf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -298,9 +298,9 @@ end
module type Field_var_intf = sig
type field

(** The type that stores booleans as R1CS variables. *)
Copy link
Member

@dannywillems dannywillems Jan 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wait. You're reading the documentation now? 😮

type boolean_var

(** The type that stores booleans as R1CS variables. *)
type t = field Cvar.t

(** For debug purposes *)
Expand Down