module Fcl_fdArray:sig..end
Constraints over Arrays of Variables
val min : Fcl_var.Fd.t array -> Fcl_var.Fd.t
val max : Fcl_var.Fd.t array -> Fcl_var.Fd.tmin vars (resp. max vars) returns a variable constrained to be equal
to the variable that will be instantiated to the minimal (resp. maximal)
value among all the variables in the array vars. Raises
Invalid_argument if vars is empty. Not reifiable.
val min_cstr : Fcl_var.Fd.t array -> Fcl_var.Fd.t -> Fcl_cstr.t
val max_cstr : Fcl_var.Fd.t array -> Fcl_var.Fd.t -> Fcl_cstr.tmin_cstr vars mini (resp. max_cstr vars maxi) returns the constraint
fd2e (min vars) =~ fd2e mini (resp. fd2e (max vars) =~ fd2e maxi).
Raises Invalid_argument if vars is empty. Not reifiable.
val get : Fcl_var.Fd.t array -> Fcl_var.Fd.t -> Fcl_var.Fd.tget vars index returns a variable constrained to be equal to
vars.(index). Variable index is constrained within the range of
the valid indices of the array (0..Array.length vars - 1). Raises
Invalid_argument if vars is empty.
Not reifiable.
val get_cstr : Fcl_var.Fd.t array -> Fcl_var.Fd.t -> Fcl_var.Fd.t -> Fcl_cstr.tget_cstr vars index v returns the constraint
fd2e vars.(index) =~ fd2e v. Variable index is constrained within
the range of the valid indices of the array (0..Array.length vars - 1).
Raises Invalid_argument if vars is empty. Not reifiable.