mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
ML API bugfixes
More ML examples Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
cef9c2fa69
commit
597409c8ac
3 changed files with 124 additions and 52 deletions
|
@ -4684,6 +4684,11 @@ module Solver =
|
|||
struct
|
||||
type status = UNSATISFIABLE | UNKNOWN | SATISFIABLE
|
||||
|
||||
let string_of_status ( s : status) = match s with
|
||||
| UNSATISFIABLE -> "unsatisfiable"
|
||||
| SATISFIABLE -> "satisfiable"
|
||||
| _ -> "unknown"
|
||||
|
||||
(** Objects that track statistical information about solvers. *)
|
||||
module Statistics =
|
||||
struct
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue