Dolmen_std.IdStandard implementation of identifiers
type namespace = | VarNamespace for variables. Not all variables are necessarily in this namespace, but ids in this namespace must be variables.
*)| SortNamepsace for sorts and types (only used in smtlib)
*)| TermMost used namespace, used for terms in general (and types outside smtlib).
*)| AttrNamespace for attributes (also called annotations).
*)| DeclNamespace used for naming declarations/definitions/statements...
*)| Module of stringNamespaces defined by modules (used for instance in dedukti).
*)The type of identifiers, basically a name together with a namespace.
include Dolmen_intf.Id.Logic with type t := t and type namespace := namespaceval sort : namespaceThe namespace for sorts (also called types). Currently only used for smtlib.
val term : namespaceThe usual namespace for terms.
val attr : namespaceNamespace used for attributes (also called annotations) in smtlib.
val decl : namespaceNamespace used for declaration identifiers (for instance used to filter declarations during includes)
val mod_name : string -> namespaceNamespace used by modules (for instance in dedulkti).
val hash : t -> intval full_name : t -> stringReturns a full name for the identifier. NOTE: full names may not be unique and therefore not suitable for comparison of identifiers.
val print : Format.formatter -> t -> unitPrinting functions.
val rwrt_rule : tThe tagged term is (or at least should be) a rewrite rule.
val tptp_role : tThe tagged statement has a tptp role. Should be used as a function symbol applied to the actual tptp role.