1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
type fail_mode =
| Trap_only
| Assertion_only
| Both
module Exploration_strategy = struct
type t =
| FIFO
| LIFO
| Random
| Smart
let to_work_ds_module : t -> (module Work_ds_intf.S) = function
| LIFO -> (module Ws)
| FIFO -> (module Wq)
| Random -> (module Wq_random)
| Smart -> (module Wpq)
end
type t =
{ unsafe : bool
; workers : int
; no_stop_at_failure : bool
; no_value : bool
; no_assert_failure_expression_printing : bool
; deterministic_result_order : bool
; fail_mode : fail_mode
; exploration_strategy : Exploration_strategy.t
; workspace : Fpath.t option
; solver : Smtml.Solver_type.t
; model_format : Model.output_format
; entry_point : string option
; invoke_with_symbols : bool
; model_out_file : Fpath.t option
; with_breadcrumbs : bool
; use_ite_for_select : bool
}