Mode.CrossingSome modes on an axis might be indistinguishable for values of some type, in which case the actual mode of values can be strenghthened (or equivalently the expected mode loosened) accordingly to make more programs mode-check. The capabilities/permissions to perform such adjustments are called mode crossing and depicted in this module.
We define an ordering on the crossings: t0 <= t1 iff t0 allows more adjustments than t1. By this ordering, the currently representable crossings form a lattice:
module Monadic : sig ... endmodule Comonadic : sig ... endtype t = (Monadic.t, Comonadic.t) monadic_comonadicThe mode crossing capability on all axes, split into monadic and comonadic fragments.
module Axis : sig ... endmodule Per_axis :
Solver_intf.Lattices with type 'a elt := 'a and type 'a obj := 'a Axis.tval create :
regionality:bool ->
linearity:bool ->
uniqueness:bool ->
portability:bool ->
contention:bool ->
forkable:bool ->
yielding:bool ->
statefulness:bool ->
visibility:bool ->
staticity:bool ->
tConvenience for creating a mode crossing capability on all axes, using a boolean for each axis where true means full crossing and false means no crossing. Alternatively, call Monadic.create and Comonadic.create and pack the results into a record of type t.
val modality : Modality.Const.t -> t -> tmodality m t gives the mode crossing of type T wrapped in modality m where T has mode crossing t.
val to_modality : t -> Modality.Const.tTakes a mode crossing t, returns the modality needed to make max into t. More precisely, to_modality is the inverse of modality _ max.
Apply mode crossing on a right mode, making it more permissive.
Similar to apply_left but for Alloc via alloc_as_value
Similar to apply_right but for Alloc via alloc_as_value
val apply_left_right_alloc :
t ->
(Alloc.Monadic.r, Alloc.Comonadic.l) monadic_comonadic ->
(Alloc.Monadic.r, Alloc.Comonadic.l) monadic_comonadicApply mode crossong on the left comonadic fragment, and the right monadic fragment.
val print : Format.formatter -> t -> unitPrint the mode crossing by axis. Omit axes that do not cross.