package binsec

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Definition of command-line & programmatic options for SSE

include Binsec.Cli.S
val is_enabled : unit -> bool
type solver =
  1. | Auto
    (*

    try to use the best SMT solver available; in order

    *)
  2. | Bitwuzla_native
    (*

    bitwuzla native ocaml binding

    *)
  3. | Bitwuzla_smtlib
    (*

    bitwuzla external process

    *)
  4. | Boolector_smtlib
    (*

    boolector external process

    *)
  5. | Z3_smtlib
    (*

    z3 external process

    *)
  6. | CVC4_smtlib
    (*

    cvc4 external process

    *)
  7. | Yices_smtlib
    (*

    yices external process

    *)
module SMTSolver : Binsec.Cli.GENERIC with type t = solver