Module Make32.Checked

type var
val constant : t -> var
type t = var
val zero : t
val sub_or_zero : t -> t -> ([ `Underflow of Snark_params.Tick.Boolean.var ] * t) Snark_params.Tick.Checked.t

sub_or_zero x y computes x - y.

  • If the argument to `Underflow is true, x < y and the returned integer value is pinned to zero.
  • If the argument to `Underflow is false, x >= y and the returned integer value is equal to x - y

sub ~m x y computes x - y and ensures that 0 <= x - y

val typ : ( t, t ) Snark_params.Tick.Typ.t

warning: this typ does not work correctly with the generic if_

val div_mod : t -> t -> (t * t) Snark_params.Tick.Checked.t
module Assert : sig ... end
module Unsafe : sig ... end