mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-10 05:03:59 -05:00
this library provides an abstract interface for what a SMT solver provides, independently of the underlying implementation technology.
8 lines
178 B
OCaml
8 lines
178 B
OCaml
(** Abstract interface for a solver *)
|
|
|
|
module Unknown = Unknown
|
|
module Check_res = Check_res
|
|
module Asolver = Asolver
|
|
|
|
class type t = Asolver.t
|
|
(** Main abstract solver type *)
|