package alt-ergo-lib

  1. Overview
  2. Docs
The Alt-Ergo SMT prover library

Install

dune-project
 Dependency

Authors

Maintainers

Sources

alt-ergo-2.6.4.tbz
sha256=c35b5b49ec2816a24c9325b083eefe237839ebaceb83331aeef041bed720b137
sha512=ed1486c0a86eb4cc66fc7b77f0d25f64949d7d134a456a78f6cdd19aa455b0808ba430cb6621fa89e89e09f5b48b1ad07fe4d5e29d0088d7804e09b4a2f712ac

doc/alt-ergo-lib/AltErgoLib/Uf/GlobalDomains/index.html

Module Uf.GlobalDomains

This module provides a registry type to access and update a single "current" instance associated with multiple global domain types.

type t

Maps global domain modules (of type 'a global_domain) to an associated domain of the corresponding type 'a.

val empty : t

empty maps all domain modules D to their default domain D.empty.

val find : 'a global_domain -> t -> 'a

find (module D) t returns the global domain associated with the domain module D. Defaults to D.empty.

val add : 'a global_domain -> 'a -> t -> t

add (module D) d t registers the global domain d for the domain module D. Overwrite any pre-existing global domain associated with D.