forked from ocaml/opam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopamBuiltinZ3.dummy.ml
31 lines (23 loc) · 1.08 KB
/
opamBuiltinZ3.dummy.ml
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
(**************************************************************************)
(* *)
(* Copyright 2019 OCamlPro *)
(* *)
(* All rights reserved. This file is distributed under the terms of the *)
(* GNU Lesser General Public License version 2.1, with the special *)
(* exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
open OpamCudfSolverSig
let name = "builtin-dummy-z3-solver"
let is_present () = false
let ext = ref None
let command_name = None
let preemptive_check = false
let default_criteria = {
crit_default = "";
crit_upgrade = "";
crit_fixup = "";
crit_best_effort_prefix = None;
}
let call ~criteria:_ ?timeout:_ ?tolerance:_ _cudf =
failwith "This opam was compiled without the Z3 solver built in"