package lascar

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

A valuation is a collection of (name,value) associations

module type T = sig ... end
module Make (V : Fsm_value.T) : T with type value = V.t

Functor building an implementation of the Valuation structure given an implementation of values

Some predefined instances

module Bool : T with type value = bool
module Int : T with type value = int