dolmen
-
dolmen
-
dolmen.intf
-
-
dolmen.line
-
dolmen.smtlib2
-
dolmen.std
-
-
dolmen.tptp
Library
Module
Module type
Parameter
Class
Class type
Type and std functions
type value =
Types of lexical values typically encountered.
type t =
| Var | (* Namespace for variables. Not all variables are necessarily in this namespace, but ids in this namespace must be variables. *) |
| Sort | (* Namepsace for sorts and types (only used in smtlib) *) |
| Term | (* Most used namespace, used for terms in general (and types outside smtlib). *) |
| Attr | (* Namespace for attributes (also called annotations). *) |
| Decl | (* Namespace used for naming declarations/definitions/statements... *) |
| Track | (* Namespace used to track specific values throughout some files. *) |
| Value of value | (* The identifier is a value, encoded in a string. Examples include arithmetic constants (e.g. |
Namespaces, used to record the lexical scop in which an identifier was parsed.
val hash : t -> int
val print : Stdlib.Format.formatter -> t -> unit
Printing function.
Creation
val var : t
The variable namespace.
val sort : t
The sort namespace.
val term : t
The term namespace.
val attr : t
Teh attribute namespace.
val decl : t
The declaration namespace.
val track : t
Namespace used for identifiers used for tracking/special identification.