package zelus

  1. Overview
  2. Docs
A synchronous language with ODEs

Install

Dune Dependency

Authors

Maintainers

Sources

2.2.tar.gz
md5=437ae922f1fda392efca3e37e8b8bb4c
sha512=d591cdbeedb8f3a7f568d6d4994de572093822cb354b112886326219174311715a71a35de57a4c2070eae349f65f0c8f3d6c2f6a5a79a8187bbffc687cd108a6

doc/zelus.zlcompilerlibs/Definit/index.html

Module Definit

Type definitions.

type ti_scheme = {
  1. typ_vars : t list;
  2. typ_rel : (t * t list) list;
  3. typ : ti;
}
and ti =
  1. | Ifun of ti * ti
  2. | Iproduct of ti list
  3. | Iatom of t
and t = {
  1. mutable i_desc : desc;
  2. mutable i_level : int;
  3. mutable i_index : int;
  4. mutable i_inf : t list;
  5. mutable i_sup : t list;
  6. mutable i_min : value;
  7. mutable i_useful : bool;
  8. mutable i_polarity : polarity;
  9. mutable i_visited : int;
}
and desc =
  1. | Ivalue of value
  2. | Ivar
and value =
  1. | Izero
  2. | Ione
  3. | Ihalf
and polarity =
  1. | Punknown
  2. | Pplus
  3. | Pminus
  4. | Pplusminus
val compare : t -> t -> int
val no_typ : ti
OCaml

Innovation. Community. Security.