package binsec

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

Definition of command-line & programmatic options for SSE

type solver =
  1. | Auto
    (*

    try to use the best SMT solver available; in order

    *)
  2. | Bitwuzla_builtin
    (*

    bitwuzla native ocaml binding (cxx)

    *)
  3. | Bitwuzla_legacy
    (*

    bitwuzla native ocaml binding (c)

    *)
  4. | Bitwuzla_smtlib
    (*

    bitwuzla external process

    *)
  5. | Boolector_smtlib
    (*

    boolector external process

    *)
  6. | Z3_smtlib
    (*

    z3 external process

    *)
  7. | CVC4_smtlib
    (*

    cvc4 external process

    *)
  8. | Yices_smtlib
    (*

    yices external process

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