package lascar

  1. Overview
  2. Docs
On This Page
  1. FSM transitions
Legend:
Library
Module
Module type
Parameter
Class
Class type

FSM transitions

module type T = sig ... end
module Make (Expr : Fsm_expr.T) : T with module Expr = Expr and module Condition.Expr = Expr and module Action.Expr = Expr
module Trans (T1 : T) (T2 : T) : sig ... end

Functor for converting an FSM transition, with a given implementation of values into another one with a different implementation

Some predefined instances

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