package lascar

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Actions for FSM transitions

module type T = sig ... end
module Make (Expr : Fsm_expr.T) : T with module Expr = Expr
module Trans (A1 : T) (A2 : T) : sig ... end

Functor for converting a FSM action, with a given implementation of values into another one with a different implementations

Some predefined instances

module Int : T with module Expr = Fsm_expr.Int
module Bool : T with module Expr = Fsm_expr.Bool