Frama-C:
Plug-ins:
Libraries:

Frama-C API - Domain_builder

Automatic builders to complete abstract domains from different simplified interfaces.

module type InputDomain = Domain_store.InputDomain
module type LeafDomain = sig ... end

Part of an abstract domain signature automatically built by the Complete functor. These functions can be redefined to achieve better precision or performance. See Abstract_domain for more details.

module Complete (Domain : InputDomain) : LeafDomain with type t := Domain.t

Automatically builds some functions of an abstract domain.