Smtml.Optimizer_intfOptimizer Module. This module defines interfaces for interacting with optimization solvers, including constraint management, optimization objectives, and result retrieval. It provides a generic interface for working with different optimization backends.
module type S = sig ... endThe S module type defines the core interface for interacting with optimization solvers.
module type Intf = sig ... endThe Intf module type defines the interface for creating and working with optimization solvers, including a functor for instantiating solvers and a predefined Z3 solver implementation.