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/Defcaus/index.html

Module Defcaus

Type definitions.

type tc_scheme = {
  1. typ_vars : t list;
  2. typ_rel : (t * t list) list;
  3. typ : tc;
}
and tc =
  1. | Cfun of tc * tc
  2. | Cproduct of tc list
  3. | Catom of t
and t = {
  1. mutable c_desc : desc;
  2. mutable c_level : int;
  3. mutable c_index : int;
  4. mutable c_inf : t list;
  5. mutable c_sup : t list;
  6. mutable c_useful : bool;
  7. mutable c_polarity : polarity;
  8. mutable c_info : info option;
  9. mutable c_visited : int;
}
and desc =
  1. | Cvar
and info =
  1. | Cname of Zident.t
  2. | Clast of Zident.t
and polarity =
  1. | Punknown
  2. | Pplus
  3. | Pminus
  4. | Pplusminus
val compare : t -> t -> int
val no_typ : tc
OCaml

Innovation. Community. Security.