diff --git a/examples/optim-examples/bug-disj.ae b/examples/optim-examples/bug-disj.ae new file mode 100644 index 000000000..1cc7f7289 --- /dev/null +++ b/examples/optim-examples/bug-disj.ae @@ -0,0 +1,13 @@ +logic m1, m2, ae : prop +logic A, M, S : int + +axiom a1: + if ae then A = 0 else A = 1 + +axiom a2: + if (m1 or m2) then M = 0 else M = 1 + +goal g: + S = A + M -> + minimize(S, 1) -> + false \ No newline at end of file diff --git a/examples/optim-examples/bug-disj.smt2 b/examples/optim-examples/bug-disj.smt2 new file mode 100644 index 000000000..ed5932f45 --- /dev/null +++ b/examples/optim-examples/bug-disj.smt2 @@ -0,0 +1,12 @@ +logic m1, m2, ae : prop +logic x, y : int + +axiom a1: + x = if ae then 0 else 1 + +axiom a2: + y = if (m1 or m2) then 0 else 1 + +goal g: + minimize(x + y, 1) -> + false \ No newline at end of file diff --git a/examples/optim-examples/bug-soudness-if-split-beyond-unbounded-vals.ae b/examples/optim-examples/bug-soudness-if-split-beyond-unbounded-vals.ae new file mode 100644 index 000000000..fcbe4e086 --- /dev/null +++ b/examples/optim-examples/bug-soudness-if-split-beyond-unbounded-vals.ae @@ -0,0 +1,12 @@ +logic x, y, z : int + +axiom a: 0 <= x <= 33 + +axiom a: minimize (z, 3) +axiom a: maximize (x, 1) +axiom a: maximize (y, 2) + +goal g: + 1 <= z <= 11 -> + 0 <= y <= 10 -> + false \ No newline at end of file diff --git a/examples/optim-examples/challenge.ae b/examples/optim-examples/challenge.ae new file mode 100644 index 000000000..e43b5eba1 --- /dev/null +++ b/examples/optim-examples/challenge.ae @@ -0,0 +1,14 @@ +logic x : int +logic y : int +logic P : int -> prop +logic Q : prop + +goal g: +maximize(x,1) -> +maximize(y,2) -> + +P(x) -> (* just to introduce x and set its max to +infinity *) + (Q and (0 <= y <= 10)) or (not Q and (1000 <= y <= 1000)) -> + +(*x <= 50 ->*) + false \ No newline at end of file diff --git a/examples/optim-examples/disj-1.ae b/examples/optim-examples/disj-1.ae new file mode 100644 index 000000000..459e3d087 --- /dev/null +++ b/examples/optim-examples/disj-1.ae @@ -0,0 +1,38 @@ +logic x, y : int +logic p, q : int -> prop + +(* +goal g: (* max is 200 *) +maximize(x, 1) -> +0 <= x <= 1000 -> +((x <= 50) or (x <= 200)) -> +false +*) + +(* +goal g: (* max is 200 *) + maximize(x, 1) -> + ((y >= 10) or (y <= 200)) -> + false +*) + + +(* +goal g: +maximize(x, 1) -> +(p(x) or q(x)) +*) + +(* +goal g: (* max is x = 50, y = 500 *) + maximize(x, 1) -> + maximize(y, 2) -> + ((x <= 50 and y <= 300) or (x = 50 and y <= 500)) -> + false +*) + +goal g: (* max is x = 50, y = 500 *) + maximize(x, 1) -> + maximize(y, 2) -> + ((x <= 40 and y <= 500) or (x <= 50 and y <= 300)) -> + false diff --git a/examples/optim-examples/incrementality.ae b/examples/optim-examples/incrementality.ae new file mode 100644 index 000000000..b72e495ba --- /dev/null +++ b/examples/optim-examples/incrementality.ae @@ -0,0 +1,14 @@ +logic x, y, z, t,u : int + +goal g: + maximize(x, 1) -> + minimize(y, 2) -> + maximize(z, 3) -> + 0 <= x <= 10 -> + 0 <= y - 2 * x <= 100 -> + 0 <= z <= x * y -> + 10 < t -> + -50 <= u <= 40 -> + maximize(u, 4) -> + + false \ No newline at end of file diff --git a/examples/optim-examples/issue-6.ae b/examples/optim-examples/issue-6.ae new file mode 100644 index 000000000..0dc0a3466 --- /dev/null +++ b/examples/optim-examples/issue-6.ae @@ -0,0 +1,13 @@ +logic x, y : int +logic f : int -> int + +goal g: + maximize(f(x), 1) -> + maximize(x, 2) -> + maximize(y, 3) -> + maximize(f(y), 4) -> + f(y) >= 20 -> + x > y -> + 0 <= x -> + 0 <= f(x) <= 10 -> + false \ No newline at end of file diff --git a/examples/optim-examples/issue-7-b.ae b/examples/optim-examples/issue-7-b.ae new file mode 100644 index 000000000..d01e65113 --- /dev/null +++ b/examples/optim-examples/issue-7-b.ae @@ -0,0 +1,11 @@ +logic x : int +logic f : int -> int +logic P : int -> prop + +goal g: + maximize(x,1) -> + maximize(f(x), 2) -> + P(x) -> + 0 <= f(x) <= 100 -> + 1 <= x <= 5 -> (* ordering of constraints is important *) + false diff --git a/examples/optim-examples/issue-7.ae b/examples/optim-examples/issue-7.ae new file mode 100644 index 000000000..ca5aa0889 --- /dev/null +++ b/examples/optim-examples/issue-7.ae @@ -0,0 +1,12 @@ +logic x, y : int +logic f : int -> int +logic P : int -> prop + +goal g: + P(x) -> + 0 <= f(x) <= 100 -> + f(y) = 50 -> + x = 1 -> (* ordering of constraints is important *) + maximize(x,1) -> + maximize(f(x), 2) -> + false diff --git a/examples/optim-examples/micro.ae b/examples/optim-examples/micro.ae new file mode 100644 index 000000000..95082dcdc --- /dev/null +++ b/examples/optim-examples/micro.ae @@ -0,0 +1,20 @@ +goal g1 : + forall x : int. + forall z : int. + maximize(x,1) -> + maximize(z,2) -> + 2 * x <= 125 -> + 0 <= z <= 10 -> + false + +(* z is a "don't care" in this second example, because y is already +unbounded. (although y and z are independant *) + +goal g : + forall y : int. + minimize(y,1) -> + 3 * y <= 125 -> + forall z : int. + maximize(z,2) -> + 0 <= z <= 10 -> + false \ No newline at end of file diff --git a/examples/optim-examples/nano_unbounded.ae b/examples/optim-examples/nano_unbounded.ae new file mode 100644 index 000000000..e01c6882e --- /dev/null +++ b/examples/optim-examples/nano_unbounded.ae @@ -0,0 +1,4 @@ +goal g : +forall x : int. +maximize(x,1) -> +x >= 0 -> false diff --git a/examples/optim-examples/opam-optim/original-no-optim-pp.smt2 b/examples/optim-examples/opam-optim/original-no-optim-pp.smt2 new file mode 100644 index 000000000..bde3e68a7 --- /dev/null +++ b/examples/optim-examples/opam-optim/original-no-optim-pp.smt2 @@ -0,0 +1,23479 @@ +(set-logic QF_LIA) +(set-info :status unknown) + +;; Vars declarations: +;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(declare-fun %3dopam-invariant.1 () Bool) +(declare-fun ocamlfind.26 () Bool) +(declare-fun ocamlfind.25 () Bool) +(declare-fun ocamlfind.23 () Bool) +(declare-fun ocamlfind.22 () Bool) +(declare-fun ocamlfind.21 () Bool) +(declare-fun ocamlfind.18 () Bool) +(declare-fun ocamlfind.17 () Bool) +(declare-fun ocamlfind.15 () Bool) +(declare-fun ocamlfind.14 () Bool) +(declare-fun ocamlfind.13 () Bool) +(declare-fun ocamlfind.12 () Bool) +(declare-fun ocamlfind.11 () Bool) +(declare-fun ocamlfind.10 () Bool) +(declare-fun ocamlfind.7 () Bool) +(declare-fun ocamlfind.6 () Bool) +(declare-fun ocamlfind.5 () Bool) +(declare-fun ocamlfind.4 () Bool) +(declare-fun ocamlfind.3 () Bool) +(declare-fun ocamlfind.24 () Bool) +(declare-fun conf-m4.1 () Bool) +(declare-fun jbuilder.25 () Bool) +(declare-fun dune.72 () Bool) +(declare-fun dune.71 () Bool) +(declare-fun dune.69 () Bool) +(declare-fun dune.68 () Bool) +(declare-fun dune.66 () Bool) +(declare-fun dune.65 () Bool) +(declare-fun dune.64 () Bool) +(declare-fun dune.62 () Bool) +(declare-fun dune.61 () Bool) +(declare-fun dune.59 () Bool) +(declare-fun dune.57 () Bool) +(declare-fun dune.56 () Bool) +(declare-fun dune.54 () Bool) +(declare-fun dune.52 () Bool) +(declare-fun dune.50 () Bool) +(declare-fun dune.48 () Bool) +(declare-fun dune.44 () Bool) +(declare-fun dune.43 () Bool) +(declare-fun dune.42 () Bool) +(declare-fun dune.41 () Bool) +(declare-fun dune.40 () Bool) +(declare-fun dune.38 () Bool) +(declare-fun dune.36 () Bool) +(declare-fun dune.35 () Bool) +(declare-fun dune.34 () Bool) +(declare-fun dune.33 () Bool) +(declare-fun dune.31 () Bool) +(declare-fun dune.30 () Bool) +(declare-fun dune.29 () Bool) +(declare-fun dune.27 () Bool) +(declare-fun dune.26 () Bool) +(declare-fun dune.25 () Bool) +(declare-fun dune.24 () Bool) +(declare-fun dune.22 () Bool) +(declare-fun dune.21 () Bool) +(declare-fun dune.20 () Bool) +(declare-fun dune.19 () Bool) +(declare-fun dune.17 () Bool) +(declare-fun dune.16 () Bool) +(declare-fun dune.14 () Bool) +(declare-fun dune.12 () Bool) +(declare-fun dune.10 () Bool) +(declare-fun dune.9 () Bool) +(declare-fun dune.7 () Bool) +(declare-fun dune.6 () Bool) +(declare-fun dune.4 () Bool) +(declare-fun dune.3 () Bool) +(declare-fun dune.51 () Bool) +(declare-fun base-threads.1 () Bool) +(declare-fun base-unix.1 () Bool) +(declare-fun ocaml.60 () Bool) +(declare-fun ocamlfind-secondary.1 () Bool) +(declare-fun num.6 () Bool) +(declare-fun num.5 () Bool) +(declare-fun num.4 () Bool) +(declare-fun num.3 () Bool) +(declare-fun num.2 () Bool) +(declare-fun num.1 () Bool) +(declare-fun base-num.1 () Bool) +(declare-fun menhir.56 () Bool) +(declare-fun menhir.55 () Bool) +(declare-fun menhir.54 () Bool) +(declare-fun menhir.53 () Bool) +(declare-fun menhir.52 () Bool) +(declare-fun menhir.51 () Bool) +(declare-fun menhir.50 () Bool) +(declare-fun menhir.49 () Bool) +(declare-fun menhir.48 () Bool) +(declare-fun menhir.47 () Bool) +(declare-fun menhir.46 () Bool) +(declare-fun menhir.45 () Bool) +(declare-fun menhir.44 () Bool) +(declare-fun menhir.43 () Bool) +(declare-fun menhir.42 () Bool) +(declare-fun menhir.41 () Bool) +(declare-fun menhir.40 () Bool) +(declare-fun menhir.39 () Bool) +(declare-fun menhir.38 () Bool) +(declare-fun menhir.37 () Bool) +(declare-fun menhir.36 () Bool) +(declare-fun menhir.34 () Bool) +(declare-fun menhir.33 () Bool) +(declare-fun menhir.32 () Bool) +(declare-fun menhir.31 () Bool) +(declare-fun menhir.30 () Bool) +(declare-fun menhir.29 () Bool) +(declare-fun menhir.28 () Bool) +(declare-fun menhir.27 () Bool) +(declare-fun menhir.26 () Bool) +(declare-fun menhir.25 () Bool) +(declare-fun menhir.24 () Bool) +(declare-fun menhir.23 () Bool) +(declare-fun menhir.22 () Bool) +(declare-fun menhir.21 () Bool) +(declare-fun menhir.20 () Bool) +(declare-fun menhir.19 () Bool) +(declare-fun menhir.18 () Bool) +(declare-fun menhir.17 () Bool) +(declare-fun menhir.16 () Bool) +(declare-fun menhir.15 () Bool) +(declare-fun menhir.14 () Bool) +(declare-fun menhir.13 () Bool) +(declare-fun menhir.12 () Bool) +(declare-fun menhir.11 () Bool) +(declare-fun menhir.8 () Bool) +(declare-fun menhir.6 () Bool) +(declare-fun menhir.4 () Bool) +(declare-fun menhir.2 () Bool) +(declare-fun menhir.3 () Bool) +(declare-fun camlp5.24 () Bool) +(declare-fun camlp5.23 () Bool) +(declare-fun camlp5.22 () Bool) +(declare-fun camlp5.21 () Bool) +(declare-fun camlp5.20 () Bool) +(declare-fun camlp5.19 () Bool) +(declare-fun camlp5.18 () Bool) +(declare-fun camlp5.17 () Bool) +(declare-fun camlp5.16 () Bool) +(declare-fun camlp5.15 () Bool) +(declare-fun camlp5.14 () Bool) +(declare-fun camlp5.13 () Bool) +(declare-fun camlp5.12 () Bool) +(declare-fun camlp5.11 () Bool) +(declare-fun camlp5.10 () Bool) +(declare-fun camlp5.9 () Bool) +(declare-fun camlp5.8 () Bool) +(declare-fun camlp5.7 () Bool) +(declare-fun camlp5.6 () Bool) +(declare-fun camlp5.5 () Bool) +(declare-fun camlp5.3 () Bool) +(declare-fun camlp5.2 () Bool) +(declare-fun camlp5.4 () Bool) +(declare-fun why3.28 () Bool) +(declare-fun why3.27 () Bool) +(declare-fun why3.26 () Bool) +(declare-fun why3.25 () Bool) +(declare-fun why3.24 () Bool) +(declare-fun why3.23 () Bool) +(declare-fun why3.22 () Bool) +(declare-fun why3.21 () Bool) +(declare-fun why3.20 () Bool) +(declare-fun why3.19 () Bool) +(declare-fun why3.18 () Bool) +(declare-fun why3.17 () Bool) +(declare-fun why3.16 () Bool) +(declare-fun why3.15 () Bool) +(declare-fun why3.14 () Bool) +(declare-fun why3.13 () Bool) +(declare-fun why3.12 () Bool) +(declare-fun why3.11 () Bool) +(declare-fun why3.10 () Bool) +(declare-fun why3.8 () Bool) +(declare-fun why3.6 () Bool) +(declare-fun why3.5 () Bool) +(declare-fun why3.4 () Bool) +(declare-fun why3.3 () Bool) +(declare-fun why3.2 () Bool) +(declare-fun why3.1 () Bool) +(declare-fun why3.7 () Bool) +(declare-fun camlzip.7 () Bool) +(declare-fun camlzip.6 () Bool) +(declare-fun camlzip.5 () Bool) +(declare-fun camlzip.4 () Bool) +(declare-fun camlzip.3 () Bool) +(declare-fun camlzip.2 () Bool) +(declare-fun camlzip.1 () Bool) +(declare-fun conf-gtksourceview.1 () Bool) +(declare-fun lablgtk.15 () Bool) +(declare-fun lablgtk.14 () Bool) +(declare-fun lablgtk.13 () Bool) +(declare-fun lablgtk.12 () Bool) +(declare-fun lablgtk.11 () Bool) +(declare-fun lablgtk.10 () Bool) +(declare-fun lablgtk.9 () Bool) +(declare-fun lablgtk.8 () Bool) +(declare-fun lablgtk.7 () Bool) +(declare-fun lablgtk.6 () Bool) +(declare-fun lablgtk.3 () Bool) +(declare-fun ocamlgraph.12 () Bool) +(declare-fun ocamlgraph.9 () Bool) +(declare-fun ocamlgraph.8 () Bool) +(declare-fun ocamlgraph.7 () Bool) +(declare-fun ocamlgraph.6 () Bool) +(declare-fun ocamlgraph.5 () Bool) +(declare-fun ocamlgraph.4 () Bool) +(declare-fun why3-base.1 () Bool) +(declare-fun zarith.14 () Bool) +(declare-fun zarith.13 () Bool) +(declare-fun zarith.12 () Bool) +(declare-fun zarith.9 () Bool) +(declare-fun zarith.8 () Bool) +(declare-fun zarith.7 () Bool) +(declare-fun zarith.6 () Bool) +(declare-fun zarith.5 () Bool) +(declare-fun zarith.4 () Bool) +(declare-fun zarith.3 () Bool) +(declare-fun zarith.2 () Bool) +(declare-fun zarith.1 () Bool) +(declare-fun camlp4.33 () Bool) +(declare-fun camlp4.32 () Bool) +(declare-fun camlp4.31 () Bool) +(declare-fun camlp4.29 () Bool) +(declare-fun camlp4.28 () Bool) +(declare-fun camlp4.27 () Bool) +(declare-fun camlp4.26 () Bool) +(declare-fun camlp4.25 () Bool) +(declare-fun camlp4.24 () Bool) +(declare-fun camlp4.23 () Bool) +(declare-fun camlp4.22 () Bool) +(declare-fun camlp4.21 () Bool) +(declare-fun camlp4.20 () Bool) +(declare-fun camlp4.19 () Bool) +(declare-fun camlp4.18 () Bool) +(declare-fun camlp4.17 () Bool) +(declare-fun camlp4.16 () Bool) +(declare-fun camlp4.15 () Bool) +(declare-fun camlp4.14 () Bool) +(declare-fun camlp4.13 () Bool) +(declare-fun camlp4.11 () Bool) +(declare-fun camlp4.10 () Bool) +(declare-fun camlp4.9 () Bool) +(declare-fun camlp4.8 () Bool) +(declare-fun camlp4.7 () Bool) +(declare-fun camlp4.6 () Bool) +(declare-fun camlp4.5 () Bool) +(declare-fun camlp4.3 () Bool) +(declare-fun camlp4.2 () Bool) +(declare-fun camlp4.30 () Bool) +(declare-fun ocamlbuild.8 () Bool) +(declare-fun ocamlbuild.7 () Bool) +(declare-fun ocamlbuild.6 () Bool) +(declare-fun ocamlbuild.5 () Bool) +(declare-fun ocamlbuild.4 () Bool) +(declare-fun ocamlbuild.3 () Bool) +(declare-fun ocamlbuild.2 () Bool) +(declare-fun ocamlbuild.1 () Bool) +(declare-fun lwt.51 () Bool) +(declare-fun lwt.50 () Bool) +(declare-fun lwt.49 () Bool) +(declare-fun lwt.47 () Bool) +(declare-fun lwt.46 () Bool) +(declare-fun lwt.45 () Bool) +(declare-fun lwt.44 () Bool) +(declare-fun lwt.43 () Bool) +(declare-fun lwt.41 () Bool) +(declare-fun lwt.40 () Bool) +(declare-fun lwt.39 () Bool) +(declare-fun lwt.38 () Bool) +(declare-fun lwt.36 () Bool) +(declare-fun lwt.35 () Bool) +(declare-fun lwt.34 () Bool) +(declare-fun lwt.32 () Bool) +(declare-fun lwt.30 () Bool) +(declare-fun lwt.29 () Bool) +(declare-fun lwt.26 () Bool) +(declare-fun lwt.25 () Bool) +(declare-fun lwt.23 () Bool) +(declare-fun lwt.22 () Bool) +(declare-fun lwt.21 () Bool) +(declare-fun lwt.20 () Bool) +(declare-fun lwt.19 () Bool) +(declare-fun lwt.18 () Bool) +(declare-fun lwt.17 () Bool) +(declare-fun lwt.16 () Bool) +(declare-fun lwt.14 () Bool) +(declare-fun lwt.13 () Bool) +(declare-fun lwt.12 () Bool) +(declare-fun lwt.11 () Bool) +(declare-fun lwt.10 () Bool) +(declare-fun lwt.9 () Bool) +(declare-fun lwt.8 () Bool) +(declare-fun lwt.7 () Bool) +(declare-fun lwt.6 () Bool) +(declare-fun lwt.4 () Bool) +(declare-fun lwt.24 () Bool) +(declare-fun cppo.22 () Bool) +(declare-fun cppo.21 () Bool) +(declare-fun cppo.20 () Bool) +(declare-fun cppo.19 () Bool) +(declare-fun cppo.18 () Bool) +(declare-fun cppo.17 () Bool) +(declare-fun cppo.16 () Bool) +(declare-fun cppo.15 () Bool) +(declare-fun cppo.14 () Bool) +(declare-fun cppo.13 () Bool) +(declare-fun cppo.12 () Bool) +(declare-fun cppo.11 () Bool) +(declare-fun cppo.10 () Bool) +(declare-fun cppo.8 () Bool) +(declare-fun cppo.7 () Bool) +(declare-fun cppo.6 () Bool) +(declare-fun cppo.5 () Bool) +(declare-fun jbuilder.24 () Bool) +(declare-fun jbuilder.23 () Bool) +(declare-fun jbuilder.22 () Bool) +(declare-fun jbuilder.21 () Bool) +(declare-fun jbuilder.20 () Bool) +(declare-fun jbuilder.19 () Bool) +(declare-fun jbuilder.18 () Bool) +(declare-fun jbuilder.17 () Bool) +(declare-fun jbuilder.16 () Bool) +(declare-fun jbuilder.15 () Bool) +(declare-fun jbuilder.14 () Bool) +(declare-fun ocaml-migrate-parsetree.33 () Bool) +(declare-fun ocaml-migrate-parsetree.32 () Bool) +(declare-fun ocaml-migrate-parsetree.31 () Bool) +(declare-fun ocaml-migrate-parsetree.30 () Bool) +(declare-fun ocaml-migrate-parsetree.28 () Bool) +(declare-fun ocaml-migrate-parsetree.27 () Bool) +(declare-fun ocaml-migrate-parsetree.26 () Bool) +(declare-fun ocaml-migrate-parsetree.24 () Bool) +(declare-fun ocaml-migrate-parsetree.23 () Bool) +(declare-fun ocaml-migrate-parsetree.22 () Bool) +(declare-fun ocaml-migrate-parsetree.21 () Bool) +(declare-fun ocaml-migrate-parsetree.20 () Bool) +(declare-fun ocaml-migrate-parsetree.19 () Bool) +(declare-fun ocaml-migrate-parsetree.18 () Bool) +(declare-fun ocaml-migrate-parsetree.17 () Bool) +(declare-fun ocaml-migrate-parsetree.16 () Bool) +(declare-fun ocaml-migrate-parsetree.15 () Bool) +(declare-fun ocaml-migrate-parsetree.14 () Bool) +(declare-fun ocaml-migrate-parsetree.13 () Bool) +(declare-fun ocaml-migrate-parsetree.12 () Bool) +(declare-fun ocaml-migrate-parsetree.11 () Bool) +(declare-fun ocaml-migrate-parsetree.10 () Bool) +(declare-fun ocaml-migrate-parsetree.9 () Bool) +(declare-fun ocaml-migrate-parsetree.8 () Bool) +(declare-fun ocaml-migrate-parsetree.6 () Bool) +(declare-fun ocaml-migrate-parsetree.4 () Bool) +(declare-fun ocaml-migrate-parsetree.3 () Bool) +(declare-fun ppx%5ftools%5fversioned.12 () Bool) +(declare-fun ppx%5ftools%5fversioned.11 () Bool) +(declare-fun ppx%5ftools%5fversioned.10 () Bool) +(declare-fun ppx%5ftools%5fversioned.9 () Bool) +(declare-fun ppx%5ftools%5fversioned.8 () Bool) +(declare-fun ppx%5ftools%5fversioned.7 () Bool) +(declare-fun ppx%5ftools%5fversioned.6 () Bool) +(declare-fun ppx%5ftools%5fversioned.5 () Bool) +(declare-fun result.6 () Bool) +(declare-fun result.5 () Bool) +(declare-fun result.4 () Bool) +(declare-fun result.3 () Bool) +(declare-fun result.2 () Bool) +(declare-fun result.1 () Bool) +(declare-fun ocaml-config.1 () Bool) +(declare-fun ocaml-config.2 () Bool) +(declare-fun dune-configurator.23 () Bool) +(declare-fun dune-configurator.22 () Bool) +(declare-fun dune-configurator.21 () Bool) +(declare-fun dune-configurator.20 () Bool) +(declare-fun dune-configurator.18 () Bool) +(declare-fun dune-configurator.17 () Bool) +(declare-fun dune-configurator.16 () Bool) +(declare-fun dune-configurator.14 () Bool) +(declare-fun dune-configurator.13 () Bool) +(declare-fun dune-configurator.12 () Bool) +(declare-fun dune-configurator.11 () Bool) +(declare-fun dune-configurator.9 () Bool) +(declare-fun dune-configurator.8 () Bool) +(declare-fun dune-configurator.7 () Bool) +(declare-fun dune-configurator.6 () Bool) +(declare-fun dune-configurator.5 () Bool) +(declare-fun dune-configurator.3 () Bool) +(declare-fun dune-configurator.2 () Bool) +(declare-fun dune-configurator.10 () Bool) +(declare-fun dune-private-libs.7 () Bool) +(declare-fun ppx%5ftools.19 () Bool) +(declare-fun ppx%5ftools.18 () Bool) +(declare-fun ppx%5ftools.17 () Bool) +(declare-fun ppx%5ftools.16 () Bool) +(declare-fun ppx%5ftools.15 () Bool) +(declare-fun ppx%5ftools.14 () Bool) +(declare-fun ppx%5ftools.13 () Bool) +(declare-fun ppx%5ftools.12 () Bool) +(declare-fun ppx%5ftools.11 () Bool) +(declare-fun ppx%5ftools.10 () Bool) +(declare-fun ppx%5ftools.9 () Bool) +(declare-fun ppx%5ftools.8 () Bool) +(declare-fun ppx%5ftools.7 () Bool) +(declare-fun ppx%5ftools.5 () Bool) +(declare-fun ppx%5ftools.3 () Bool) +(declare-fun ppx%5ftools.2 () Bool) +(declare-fun ppx%5ftools.1 () Bool) +(declare-fun ppx%5ftools.4 () Bool) +(declare-fun why3-base.13 () Bool) +(declare-fun why3-base.12 () Bool) +(declare-fun why3-base.11 () Bool) +(declare-fun why3-base.10 () Bool) +(declare-fun why3-base.8 () Bool) +(declare-fun why3-base.7 () Bool) +(declare-fun why3-base.6 () Bool) +(declare-fun why3-base.5 () Bool) +(declare-fun why3-base.4 () Bool) +(declare-fun why3-base.3 () Bool) +(declare-fun why3-base.2 () Bool) +(declare-fun base.25 () Bool) +(declare-fun base.24 () Bool) +(declare-fun base.22 () Bool) +(declare-fun base.21 () Bool) +(declare-fun base.20 () Bool) +(declare-fun base.18 () Bool) +(declare-fun base.17 () Bool) +(declare-fun base.16 () Bool) +(declare-fun base.13 () Bool) +(declare-fun base.11 () Bool) +(declare-fun base.9 () Bool) +(declare-fun base.8 () Bool) +(declare-fun base.7 () Bool) +(declare-fun base.6 () Bool) +(declare-fun base.5 () Bool) +(declare-fun base.14 () Bool) +(declare-fun sexplib0.2 () Bool) +(declare-fun coq.1 () Bool) +(declare-fun cppo.4 () Bool) +(declare-fun cppo.3 () Bool) +(declare-fun cppo.2 () Bool) +(declare-fun cppo.1 () Bool) +(declare-fun ppx%5fcore.14 () Bool) +(declare-fun ppx%5fcore.13 () Bool) +(declare-fun ppx%5fcore.12 () Bool) +(declare-fun jbuilder.13 () Bool) +(declare-fun jbuilder.12 () Bool) +(declare-fun jbuilder.11 () Bool) +(declare-fun jbuilder.10 () Bool) +(declare-fun jbuilder.9 () Bool) +(declare-fun jbuilder.8 () Bool) +(declare-fun jbuilder.7 () Bool) +(declare-fun jbuilder.6 () Bool) +(declare-fun jbuilder.5 () Bool) +(declare-fun jbuilder.4 () Bool) +(declare-fun ocaml-compiler-libs.2 () Bool) +(declare-fun ppx%5fast.4 () Bool) +(declare-fun ppx%5fast.3 () Bool) +(declare-fun ppx%5fast.2 () Bool) +(declare-fun ppx%5ftraverse%5fbuiltins.2 () Bool) +(declare-fun stdio.3 () Bool) +(declare-fun stdio.2 () Bool) +(declare-fun menhirSdk.10 () Bool) +(declare-fun menhirSdk.9 () Bool) +(declare-fun menhirSdk.7 () Bool) +(declare-fun menhirSdk.6 () Bool) +(declare-fun menhirSdk.5 () Bool) +(declare-fun menhirSdk.4 () Bool) +(declare-fun menhirSdk.3 () Bool) +(declare-fun menhirSdk.2 () Bool) +(declare-fun menhirSdk.1 () Bool) +(declare-fun menhirSdk.8 () Bool) +(declare-fun conf-gtk2.1 () Bool) +(declare-fun conf-which.1 () Bool) +(declare-fun stdio.13 () Bool) +(declare-fun stdio.11 () Bool) +(declare-fun stdio.7 () Bool) +(declare-fun stdio.5 () Bool) +(declare-fun stdio.9 () Bool) +(declare-fun alt-ergo-lib.4 () Bool) +(declare-fun alt-ergo-lib.2 () Bool) +(declare-fun alt-ergo-lib.1 () Bool) +(declare-fun alt-ergo-lib.3 () Bool) +(declare-fun ocplib-simplex.2 () Bool) +(declare-fun seq.5 () Bool) +(declare-fun seq.4 () Bool) +(declare-fun seq.3 () Bool) +(declare-fun seq.2 () Bool) +(declare-fun seq.1 () Bool) +(declare-fun stdlib-shims.2 () Bool) +(declare-fun topkg.16 () Bool) +(declare-fun topkg.15 () Bool) +(declare-fun topkg.13 () Bool) +(declare-fun topkg.12 () Bool) +(declare-fun topkg.11 () Bool) +(declare-fun topkg.9 () Bool) +(declare-fun topkg.8 () Bool) +(declare-fun topkg.7 () Bool) +(declare-fun topkg.6 () Bool) +(declare-fun topkg.5 () Bool) +(declare-fun topkg.4 () Bool) +(declare-fun topkg.3 () Bool) +(declare-fun topkg.14 () Bool) +(declare-fun conf-gmp.3 () Bool) +(declare-fun conf-gmp.2 () Bool) +(declare-fun conf-gmp.1 () Bool) +(declare-fun conf-perl.1 () Bool) +(declare-fun ppx%5fderivers.2 () Bool) +(declare-fun ppx%5fderivers.1 () Bool) +(declare-fun jbuilder.3 () Bool) +(declare-fun jbuilder.2 () Bool) +(declare-fun menhirLib.10 () Bool) +(declare-fun configurator.7 () Bool) +(declare-fun configurator.5 () Bool) +(declare-fun configurator.2 () Bool) +(declare-fun configurator.3 () Bool) +(declare-fun ppx%5fbase.2 () Bool) +(declare-fun ppx%5fdriver.16 () Bool) +(declare-fun ppx%5fdriver.15 () Bool) +(declare-fun ppx%5fdriver.14 () Bool) +(declare-fun mmap.2 () Bool) +(declare-fun ocplib-endian.9 () Bool) +(declare-fun ocplib-endian.8 () Bool) +(declare-fun ocplib-endian.7 () Bool) +(declare-fun ocplib-endian.6 () Bool) +(declare-fun ocplib-endian.4 () Bool) +(declare-fun ocplib-endian.3 () Bool) +(declare-fun ocplib-endian.2 () Bool) +(declare-fun ocplib-endian.1 () Bool) +(declare-fun sqlite3.26 () Bool) +(declare-fun sqlite3.25 () Bool) +(declare-fun sqlite3.23 () Bool) +(declare-fun sqlite3.21 () Bool) +(declare-fun sqlite3.20 () Bool) +(declare-fun sqlite3.19 () Bool) +(declare-fun sqlite3.18 () Bool) +(declare-fun sqlite3.17 () Bool) +(declare-fun sqlite3.16 () Bool) +(declare-fun sqlite3.15 () Bool) +(declare-fun sqlite3.14 () Bool) +(declare-fun sqlite3.13 () Bool) +(declare-fun sqlite3.12 () Bool) +(declare-fun sqlite3.11 () Bool) +(declare-fun sqlite3.10 () Bool) +(declare-fun sqlite3.9 () Bool) +(declare-fun sqlite3.8 () Bool) +(declare-fun sqlite3.22 () Bool) +(declare-fun conf-sqlite3.1 () Bool) +(declare-fun ocaml-syntax-shims.1 () Bool) +(declare-fun conf-pkg-config.4 () Bool) +(declare-fun conf-pkg-config.3 () Bool) +(declare-fun conf-pkg-config.2 () Bool) +(declare-fun conf-pkg-config.1 () Bool) +(declare-fun alt-ergo.7 () Bool) +(declare-fun alt-ergo.6 () Bool) +(declare-fun alt-ergo.5 () Bool) +(declare-fun alt-ergo.4 () Bool) +(declare-fun alt-ergo.3 () Bool) +(declare-fun alt-ergo.2 () Bool) +(declare-fun alt-ergo.12 () Bool) +(declare-fun alt-ergo.11 () Bool) +(declare-fun alt-ergo.10 () Bool) +(declare-fun alt-ergo.9 () Bool) +(declare-fun alt-ergo.8 () Bool) +(declare-fun conf-autoconf.1 () Bool) +(declare-fun psmt2-frontend.1 () Bool) +(declare-fun sexplib0.8 () Bool) +(declare-fun sexplib0.6 () Bool) +(declare-fun sexplib0.4 () Bool) +(declare-fun sexplib.60 () Bool) +(declare-fun sexplib.58 () Bool) +(declare-fun sexplib.56 () Bool) +(declare-fun sexplib.55 () Bool) +(declare-fun sexplib.57 () Bool) +(declare-fun ppx%5foptcomp.12 () Bool) +(declare-fun menhirLib.9 () Bool) +(declare-fun menhirLib.8 () Bool) +(declare-fun menhirLib.7 () Bool) +(declare-fun menhirLib.6 () Bool) +(declare-fun menhirLib.4 () Bool) +(declare-fun menhirLib.3 () Bool) +(declare-fun menhirLib.2 () Bool) +(declare-fun menhirLib.1 () Bool) +(declare-fun menhirLib.5 () Bool) +(declare-fun ocplib-simplex.1 () Bool) +(declare-fun base-bytes.2 () Bool) +(declare-fun base-bytes.1 () Bool) +(declare-fun conf-ncurses.1 () Bool) +(declare-fun base-no-ppx.1 () Bool) +(declare-fun ocaml-secondary-compiler.2 () Bool) +(declare-fun ocaml-secondary-compiler.1 () Bool) +(declare-fun mmap.1 () Bool) +(declare-fun dune-private-libs.3 () Bool) +(declare-fun alt-ergo-parsers.4 () Bool) +(declare-fun optcomp.3 () Bool) +(declare-fun psmt2-frontend.4 () Bool) +(declare-fun psmt2-frontend.3 () Bool) +(declare-fun psmt2-frontend.2 () Bool) +(declare-fun dune-private-libs.14 () Bool) +(declare-fun dune-private-libs.13 () Bool) +(declare-fun dune-private-libs.12 () Bool) +(declare-fun dune-private-libs.11 () Bool) +(declare-fun dune-private-libs.10 () Bool) +(declare-fun dune-private-libs.8 () Bool) +(declare-fun dune-private-libs.6 () Bool) +(declare-fun dune-private-libs.5 () Bool) +(declare-fun dune-private-libs.4 () Bool) +(declare-fun dune-private-libs.2 () Bool) +(declare-fun dune-private-libs.9 () Bool) +(declare-fun base-ocamlbuild.1 () Bool) +(declare-fun cppo%5focamlbuild.3 () Bool) +(declare-fun cppo%5focamlbuild.2 () Bool) +(declare-fun cppo%5focamlbuild.1 () Bool) +(declare-fun extlib.14 () Bool) +(declare-fun conf-emacs.1 () Bool) +(declare-fun tuareg.6 () Bool) +(declare-fun cmdliner.14 () Bool) +(declare-fun ocp-indent.28 () Bool) +(declare-fun ocaml-base-compiler.36 () Bool) +(declare-fun octavius.6 () Bool) +(declare-fun octavius.5 () Bool) +(declare-fun octavius.4 () Bool) +(declare-fun octavius.2 () Bool) +(declare-fun octavius.1 () Bool) +(declare-fun octavius.3 () Bool) +(declare-fun conf-zlib.1 () Bool) +(declare-fun xenbigarray.1 () Bool) +(declare-fun csexp.7 () Bool) +(declare-fun csexp.8 () Bool) +(declare-fun opam-file-format.11 () Bool) +(declare-fun ocaml-options-vanilla.1 () Bool) +(declare-fun re.23 () Bool) +(declare-fun cudf.5 () Bool) +(declare-fun conf-python-2-7.2 () Bool) +(declare-fun z3.10 () Bool) +(declare-fun easy-format.7 () Bool) +(declare-fun alt-ergo-parsers.2 () Bool) +(declare-fun alt-ergo-parsers.1 () Bool) +(declare-fun alt-ergo-parsers.3 () Bool) +(declare-fun dot-merlin-reader.3 () Bool) +(declare-fun yojson.18 () Bool) +(declare-fun merlin.46 () Bool) +(declare-fun ppx%5fmetaquot.2 () Bool) +(declare-fun ppx%5ftype%5fconv.14 () Bool) +(declare-fun ppx%5ftype%5fconv.13 () Bool) +(declare-fun ppx%5fenumerate.10 () Bool) +(declare-fun biniou.9 () Bool) +(declare-fun user-setup.7 () Bool) +(declare-fun base-implicits.1 () Bool) +(declare-fun ppx%5fsexp%5fconv.14 () Bool) +(declare-fun base-bigarray.1 () Bool) +(declare-fun mccs.9 () Bool) +(declare-fun ppx%5fjs%5fstyle.2 () Bool) +(declare-fun ppx%5fcompare.11 () Bool) +(declare-fun ppx%5fhash.2 () Bool) +(declare-fun dose3.5 () Bool) +(declare-fun base-metaocaml-ocamlfind.1 () Bool) +(declare-fun conf-findutils.1 () Bool) + +(assert + +;; Definitions: +;;;;;;;;;;;;;;;;; +(let ((!k2 (ite dune.51 1 +0))) + +(let ((!k7 (ite ocamlgraph.9 1 +0))) + +(let ((!k9 (ite lwt.24 1 +0))) + +(let ((!k10 (ite ocaml-config.2 1 +0))) + +(let ((!k13 (ite dune-configurator.10 1 +0))) + +(let ((!k15 (ite why3.25 1 +0))) + +(let ((!k16 (ite base.14 1 +0))) + +(let ((!k20 (ite menhirSdk.8 1 +0))) + +(let ((!k22 (ite lablgtk.14 1 +0))) + +(let ((!k24 (ite stdio.9 1 +0))) + +(let ((!k25 (ite menhir.34 1 +0))) + +(let ((!k27 (ite dune-configurator.20 1 +0))) + +(let ((!k29 (ite lwt.23 1 +0))) + +(let ((!k31 (ite alt-ergo-lib.3 1 +0))) + +(let ((!k32 (ite topkg.14 1 +0))) + +(let ((!k35 (ite zarith.9 1 +0))) + +(let ((!k36 (ite ocaml-migrate-parsetree.33 1 +0))) + +(let ((!k38 (ite jbuilder.24 1 +0))) + +(let ((!k39 (ite menhir.56 0 +1))) + +(let ((!k41 (ite ppx%5ftools%5fversioned.5 1 +0))) + +(let ((!k42 (ite lwt.43 1 +0))) + +(let ((!k43 (ite sqlite3.22 1 +0))) + +(let ((!k48 (ite lwt.51 1 +0))) + +(let ((!k51 (ite sqlite3.17 1 +0))) + +(let ((!k52 (ite menhir.46 1 +0))) + +(let ((!k53 (ite alt-ergo.8 1 +0))) + +(let ((!k57 (ite ocaml-migrate-parsetree.28 1 +0))) + +(let ((!k58 (ite menhirLib.5 1 +0))) + +(let ((!k59 (ite alt-ergo.5 1 +0))) + +(let ((!k60 (ite camlp4.22 1 +0))) + +(let ((!k63 (ite jbuilder.19 1 +0))) + +(let ((!k66 (ite lwt.25 1 +0))) + +(let ((!k67 (ite dune.26 1 +0))) + +(let ((!k70 (ite dune.57 1 +0))) + +(let ((!k72 (ite menhir.37 1 +0))) + +(let ((!k74 (ite ocamlfind-secondary.1 0 +1))) + +(let ((!k77 (ite lwt.34 1 +0))) + +(let ((!k78 (ite lwt.47 1 +0))) + +(let ((!k80 (ite conf-m4.1 0 +1))) + +(let ((!k82 (ite sexplib0.6 1 +0))) + +(let ((!k83 (ite dune-configurator.6 1 +0))) + +(let ((!k84 (ite menhirLib.9 1 +0))) + +(let ((!k85 (ite ppx%5ftools%5fversioned.11 1 +0))) + +(let ((!k87 (ite menhirSdk.2 1 +0))) + +(let ((!k88 (ite lwt.36 1 +0))) + +(let ((!k89 (ite conf-gtk2.1 0 +1))) + +(let ((!k90 (ite alt-ergo.12 0 +1))) + +(let ((!k91 (ite camlp5.24 1 +0))) + +(let ((!k93 (ite dune.12 1 +0))) + +(let ((!k96 (ite sexplib0.8 1 +0))) + +(let ((!k97 (ite menhirSdk.4 1 +0))) + +(let ((!k99 (ite menhir.30 1 +0))) + +(let ((!k100 (ite alt-ergo-lib.1 1 +0))) + +(let ((!k102 (ite sqlite3.12 1 +0))) + +(let ((!k103 (ite jbuilder.3 1 +0))) + +(let ((!k104 (ite sexplib0.4 1 +0))) + +(let ((!k106 (ite stdio.7 1 +0))) + +(let ((!k107 (ite psmt2-frontend.2 1 +0))) + +(let ((!k108 (ite jbuilder.15 1 +0))) + +(let ((!k111 (ite menhir.49 1 +0))) + +(let ((!k112 (ite dune-private-libs.9 1 +0))) + +(let ((!k113 (ite mmap.2 1 +0))) + +(let ((!k114 (ite ocamlbuild.7 1 +0))) + +(let ((!k115 (ite topkg.16 1 +0))) + +(let ((!k116 (ite menhirSdk.9 1 +0))) + +(let ((!k117 (ite conf-gmp.1 1 +0))) + +(let ((!k120 (ite ocaml-migrate-parsetree.32 1 +0))) + +(let ((!k121 (ite menhir.44 1 +0))) + +(let ((!k122 (ite menhirSdk.10 0 +1))) + +(let ((!k123 (ite conf-perl.1 0 +1))) + +(let ((!k126 (ite dune-configurator.18 1 +0))) + +(let ((!k127 (ite sqlite3.11 1 +0))) + +(let ((!k129 (ite cppo%5focamlbuild.1 1 +0))) + +(let ((!k131 (ite jbuilder.9 1 +0))) + +(let ((!k133 (ite why3.22 1 +0))) + +(let ((!k134 (ite cppo.18 1 +0))) + +(let ((!k136 (ite menhirSdk.3 1 +0))) + +(let ((!k143 (ite menhirLib.10 0 +1))) + +(let ((!k145 (ite dune.20 1 +0))) + +(let ((!k146 (ite seq.5 0 +1))) + +(let ((!k147 (ite extlib.14 0 +1))) + +(let ((!k148 (ite dune.27 1 +0))) + +(let ((!k149 (ite topkg.12 1 +0))) + +(let ((!k150 (ite topkg.9 1 +0))) + +(let ((!k152 (ite lwt.38 1 +0))) + +(let ((!k154 (ite ocaml-syntax-shims.1 1 +0))) + +(let ((!k157 (ite base.17 1 +0))) + +(let ((!k161 (ite lwt.26 1 +0))) + +(let ((!k163 (ite conf-python-2-7.2 0 +1))) + +(let ((!k164 (ite menhir.23 1 +0))) + +(let ((!k165 (ite cppo.20 1 +0))) + +(let ((!k166 (ite why3.28 1 +0))) + +(let ((!k167 (ite zarith.4 1 +0))) + +(let ((!k175 (ite ppx%5ftools%5fversioned.7 1 +0))) + +(let ((!k176 (ite dune.38 1 +0))) + +(let ((!k177 (ite tuareg.6 0 +1))) + +(let ((!k179 (ite why3.27 1 +0))) + +(let ((!k180 (ite jbuilder.20 1 +0))) + +(let ((!k181 (ite alt-ergo.7 1 +0))) + +(let ((!k184 (ite psmt2-frontend.4 0 +1))) + +(let ((!k185 (ite menhir.32 1 +0))) + +(let ((!k186 (ite ocaml-migrate-parsetree.19 1 +0))) + +(let ((!k189 (ite menhir.25 1 +0))) + +(let ((!k190 (ite base.18 1 +0))) + +(let ((!k191 (ite jbuilder.25 1 +0))) + +(let ((!k192 (ite menhirSdk.1 1 +0))) + +(let ((!k193 (ite cmdliner.14 0 +1))) + +(let ((!k194 (ite conf-ncurses.1 1 +0))) + +(let ((!k195 (ite ppx%5fderivers.2 1 +0))) + +(let ((!k197 (ite sqlite3.19 1 +0))) + +(let ((!k198 (ite ocp-indent.28 0 +1))) + +(let ((!k200 (ite jbuilder.16 1 +0))) + +(let ((!k202 (ite psmt2-frontend.1 1 +0))) + +(let ((!k203 (ite ppx%5ftools%5fversioned.6 1 +0))) + +(let ((!k204 (ite zarith.7 1 +0))) + +(let ((!k205 (ite dune.52 1 +0))) + +(let ((!k206 (ite stdlib-shims.2 0 +1))) + +(let ((!k207 (ite menhirLib.6 1 +0))) + +(let ((!k208 (ite sqlite3.23 1 +0))) + +(let ((!k210 (ite octavius.3 1 +0))) + +(let ((!k211 (ite camlzip.6 1 +0))) + +(let ((!k213 (ite cppo.17 1 +0))) + +(let ((!k214 (ite cppo%5focamlbuild.2 1 +0))) + +(let ((!k217 (ite ocaml-migrate-parsetree.30 1 +0))) + +(let ((!k218 (ite why3.21 1 +0))) + +(let ((!k219 (ite result.2 1 +0))) + +(let ((!k220 (ite ocamlbuild.3 1 +0))) + +(let ((!k221 (ite dune.56 1 +0))) + +(let ((!k222 (ite alt-ergo.6 1 +0))) + +(let ((!k227 (ite dune-private-libs.4 1 +0))) + +(let ((!k229 (ite dune.14 1 +0))) + +(let ((!k231 (ite dune.34 1 +0))) + +(let ((!k232 (ite dune-private-libs.8 1 +0))) + +(let ((!k233 (ite csexp.8 0 +1))) + +(let ((!k236 (ite topkg.11 1 +0))) + +(let ((!k237 (ite conf-gtksourceview.1 1 +0))) + +(let ((!k238 (ite sexplib.60 1 +0))) + +(let ((!k239 (ite dune-configurator.11 1 +0))) + +(let ((!k240 (ite dune-configurator.21 0 +1))) + +(let ((!k241 (ite ppx%5fderivers.1 1 +0))) + +(let ((!k242 (ite menhir.36 1 +0))) + +(let ((!k243 (ite jbuilder.21 1 +0))) + +(let ((!k244 (ite menhir.51 1 +0))) + +(let ((!k245 (ite ppx%5ftools%5fversioned.12 1 +0))) + +(let ((!k246 (ite opam-file-format.11 0 +1))) + +(let ((!k247 (ite ocaml-options-vanilla.1 1 +0))) + +(let ((!k248 (ite sexplib0.2 1 +0))) + +(let ((!k249 (ite re.23 0 +1))) + +(let ((!k252 (ite dune-configurator.12 1 +0))) + +(let ((!k253 (ite menhir.41 1 +0))) + +(let ((!k254 (ite dune-private-libs.7 1 +0))) + +(let ((!k255 (ite sqlite3.26 1 +0))) + +(let ((!k256 (ite why3.23 1 +0))) + +(let ((!k257 (ite menhirLib.1 1 +0))) + +(let ((!k258 (ite dune-private-libs.14 1 +0))) + +(let ((!k259 (ite menhirLib.4 1 +0))) + +(let ((!k260 (ite menhir.54 1 +0))) + +(let ((!k262 (ite dune.10 1 +0))) + +(let ((!k268 (ite octavius.4 1 +0))) + +(let ((!k272 (ite ocaml-migrate-parsetree.17 1 +0))) + +(let ((!k273 (ite sqlite3.18 1 +0))) + +(let ((!k275 (ite stdio.11 1 +0))) + +(let ((!k276 (ite jbuilder.5 1 +0))) + +(let ((!k279 (ite dune.24 1 +0))) + +(let ((!k281 (ite menhir.26 1 +0))) + +(let ((!k282 (ite dune.68 1 +0))) + +(let ((!k283 (ite sqlite3.8 1 +0))) + +(let ((!k284 (ite dune-configurator.7 1 +0))) + +(let ((!k285 (ite menhir.42 1 +0))) + +(let ((!k287 (ite ocamlfind.25 1 +0))) + +(let ((!k288 (ite menhirLib.2 1 +0))) + +(let ((!k292 (ite camlzip.3 1 +0))) + +(let ((!k294 (ite cudf.5 0 +1))) + +(let ((!k296 (ite dune-private-libs.6 1 +0))) + +(let ((!k298 (ite conf-pkg-config.3 1 +0))) + +(let ((!k299 (ite z3.10 0 +1))) + +(let ((!k302 (ite sqlite3.10 1 +0))) + +(let ((!k303 (ite conf-pkg-config.2 1 +0))) + +(let ((!k305 (ite easy-format.7 0 +1))) + +(let ((!k308 (ite jbuilder.12 1 +0))) + +(let ((!k310 (ite dune.30 1 +0))) + +(let ((!k311 (ite sqlite3.16 1 +0))) + +(let ((!k312 (ite camlzip.4 1 +0))) + +(let ((!k313 (ite camlp5.21 1 +0))) + +(let ((!k314 (ite alt-ergo-lib.2 1 +0))) + +(let ((!k316 (ite psmt2-frontend.3 1 +0))) + +(let ((!k317 (ite lwt.35 1 +0))) + +(let ((!k319 (ite topkg.7 1 +0))) + +(let ((!k321 (ite menhir.53 1 +0))) + +(let ((!k322 (ite alt-ergo-parsers.3 1 +0))) + +(let ((!k323 (ite dune.35 1 +0))) + +(let ((!k327 (ite menhir.28 1 +0))) + +(let ((!k330 (ite merlin.46 0 +1))) + +(let ((!k331 (ite ocaml-compiler-libs.2 1 +0))) + +(let ((!k332 (ite menhirLib.3 1 +0))) + +(let ((!k334 (ite zarith.13 1 +0))) + +(let ((!k336 (ite dune.22 1 +0))) + +(let ((!k337 (ite menhir.45 1 +0))) + +(let ((!k338 (ite dune.29 1 +0))) + +(let ((!k339 (ite dune-configurator.16 1 +0))) + +(let ((!k340 (ite ocplib-endian.9 1 +0))) + +(let ((!k342 (ite ocaml-secondary-compiler.1 1 +0))) + +(let ((!k343 (ite dune.48 1 +0))) + +(let ((!k344 (ite dune.21 1 +0))) + +(let ((!k346 (ite lablgtk.13 1 +0))) + +(let ((!k347 (ite topkg.3 1 +0))) + +(let ((!k349 (ite sqlite3.14 1 +0))) + +(let ((!k350 (ite dune.41 1 +0))) + +(let ((!k351 (ite why3.24 1 +0))) + +(let ((!k352 (ite cppo.19 1 +0))) + +(let ((!k354 (ite alt-ergo-parsers.1 1 +0))) + +(let ((!k358 (ite conf-gmp.2 1 +0))) + +(let ((!k360 (ite camlp5.22 1 +0))) + +(let ((!k361 (ite camlp5.23 1 +0))) + +(let ((!k362 (ite lwt.46 1 +0))) + +(let ((!k365 (ite ppx%5ftools%5fversioned.8 1 +0))) + +(let ((!k368 (ite jbuilder.18 1 +0))) + +(let ((!k369 (ite conf-which.1 0 +1))) + +(let ((!k372 (ite menhir.29 1 +0))) + +(let ((!k375 (ite ocaml-migrate-parsetree.18 1 +0))) + +(let ((!k376 (ite sqlite3.9 1 +0))) + +(let ((!k377 (ite lwt.50 1 +0))) + +(let ((!k378 (ite dune.25 1 +0))) + +(let ((!k381 (ite dune-configurator.9 1 +0))) + +(let ((!k382 (ite lwt.41 1 +0))) + +(let ((!k383 (ite dune.36 1 +0))) + +(let ((!k384 (ite menhir.48 1 +0))) + +(let ((!k385 (ite dune.66 1 +0))) + +(let ((!k387 (ite lwt.30 1 +0))) + +(let ((!k388 (ite dune-private-libs.12 1 +0))) + +(let ((!k389 (ite ppx%5ftraverse%5fbuiltins.2 1 +0))) + +(let ((!k391 (ite alt-ergo-parsers.2 1 +0))) + +(let ((!k392 (ite ocaml-secondary-compiler.2 0 +1))) + +(let ((!k393 (ite dune.54 1 +0))) + +(let ((!k394 (ite ocaml-config.1 0 +1))) + +(let ((!k395 (ite zarith.14 0 +1))) + +(let ((!k396 (ite dune-configurator.22 1 +0))) + +(let ((!k400 (ite menhir.22 1 +0))) + +(let ((!k401 (ite dune.6 1 +0))) + +(let ((!k402 (ite yojson.18 0 +1))) + +(let ((!k405 (ite user-setup.7 0 +1))) + +(let ((!k406 (ite alt-ergo.10 1 +0))) + +(let ((!k407 (ite lwt.22 1 +0))) + +(let ((!k410 (ite cppo%5focamlbuild.3 1 +0))) + +(let ((!k411 (ite jbuilder.6 1 +0))) + +(let ((!k412 (ite dune-configurator.17 1 +0))) + +(let ((!k414 (ite ocamlgraph.12 0 +1))) + +(let ((!k415 (ite dune.4 1 +0))) + +(let ((!k417 (ite sexplib.58 1 +0))) + +(let ((!k418 (ite jbuilder.2 1 +0))) + +(let ((!k420 (ite sqlite3.13 1 +0))) + +(let ((!k422 (ite topkg.4 1 +0))) + +(let ((!k423 (ite jbuilder.13 1 +0))) + +(let ((!k424 (ite base.16 1 +0))) + +(let ((!k425 (ite menhir.50 1 +0))) + +(let ((!k427 (ite dune.33 1 +0))) + +(let ((!k428 (ite conf-sqlite3.1 1 +0))) + +(let ((!k430 (ite alt-ergo.2 1 +0))) + +(let ((!k431 (ite dune-configurator.23 1 +0))) + +(let ((!k432 (ite cppo.22 0 +1))) + +(let ((!k434 (ite dune-private-libs.5 1 +0))) + +(let ((!k435 (ite dune.17 1 +0))) + +(let ((!k436 (ite base.20 1 +0))) + +(let ((!k437 (ite ocaml-migrate-parsetree.23 1 +0))) + +(let ((!k438 (ite dune.40 1 +0))) + +(let ((!k440 (ite jbuilder.4 1 +0))) + +(let ((!k441 (ite base.22 1 +0))) + +(let ((!k442 (ite num.6 0 +1))) + +(let ((!k444 (ite result.5 1 +0))) + +(let ((!k445 (ite sqlite3.15 1 +0))) + +(let ((!k446 (ite ocaml-migrate-parsetree.20 1 +0))) + +(let ((!k447 (ite dune-configurator.14 1 +0))) + +(let ((!k450 (ite conf-gmp.3 0 +1))) + +(let ((!k451 (ite octavius.1 1 +0))) + +(let ((!k453 (ite dune.3 1 +0))) + +(let ((!k454 (ite dune.61 1 +0))) + +(let ((!k455 (ite camlzip.5 1 +0))) + +(let ((!k456 (ite dune-configurator.5 1 +0))) + +(let ((!k457 (ite dune.64 1 +0))) + +(let ((!k458 (ite menhirLib.8 1 +0))) + +(let ((!k461 (ite dune.16 1 +0))) + +(let ((!k463 (ite dune.19 1 +0))) + +(let ((!k465 (ite ppx%5fast.4 1 +0))) + +(let ((!k466 (ite menhir.27 1 +0))) + +(let ((!k467 (ite lwt.39 1 +0))) + +(let ((!k469 (ite menhir.52 1 +0))) + +(let ((!k470 (ite camlp5.18 1 +0))) + +(let ((!k472 (ite menhirSdk.6 1 +0))) + +(let ((!k473 (ite dune-configurator.2 1 +0))) + +(let ((!k474 (ite conf-findutils.1 1 +0))) + +(let ((!k476 (ite dune.62 1 +0))) + +(let ((!k477 (ite topkg.6 1 +0))) + +(let ((!k478 (ite dune.72 1 +0))) + +(let ((!k479 (ite alt-ergo.3 1 +0))) + +(let ((!k480 (ite ocaml-migrate-parsetree.31 1 +0))) + +(let ((!k481 (ite base.21 1 +0))) + +(let ((!k482 (ite alt-ergo.4 1 +0))) + +(let ((!k483 (ite octavius.5 1 +0))) + +(let ((!k488 (ite result.3 1 +0))) + +(let ((!k489 (ite dune-private-libs.2 1 +0))) + +(let ((!k491 (ite menhirLib.7 1 +0))) + +(let ((!k492 (ite topkg.13 1 +0))) + +(let ((!k494 (ite dot-merlin-reader.3 0 +1))) + +(let ((!k495 (ite lwt.32 1 +0))) + +(let ((!k497 (ite mmap.1 1 +0))) + +(let ((!k498 (ite jbuilder.23 1 +0))) + +(let ((!k500 (ite dune.50 1 +0))) + +(let ((!k501 (ite num.4 1 +0))) + +(let ((!k502 (ite menhir.33 1 +0))) + +(let ((!k503 (ite lablgtk.11 1 +0))) + +(let ((!k505 (ite ppx%5ftools.13 1 +0))) + +(let ((!k507 (ite dune.59 1 +0))) + +(let ((!k508 (ite seq.4 1 +0))) + +(let ((!k509 (ite octavius.6 1 +0))) + +(let ((!k510 (ite alt-ergo.11 1 +0))) + +(let ((!k511 (ite octavius.2 1 +0))) + +(let ((!k515 (ite topkg.5 1 +0))) + +(let ((!k516 (ite alt-ergo-parsers.4 0 +1))) + +(let ((!k517 (ite menhir.21 1 +0))) + +(let ((!k520 (ite jbuilder.10 1 +0))) + +(let ((!k521 (ite menhir.39 1 +0))) + +(let ((!k522 (ite stdio.13 1 +0))) + +(let ((!k523 (ite camlzip.7 0 +1))) + +(let ((!k524 (ite zarith.6 1 +0))) + +(let ((!k526 (ite dune-configurator.8 1 +0))) + +(let ((!k527 (ite jbuilder.8 1 +0))) + +(let ((!k528 (ite ocamlbuild.4 1 +0))) + +(let ((!k530 (ite ocplib-simplex.2 0 +1))) + +(let ((!k533 (ite menhir.43 1 +0))) + +(let ((!k536 (ite mccs.9 0 +1))) + +(let ((!k537 (ite base.24 1 +0))) + +(let ((!k540 (ite dune-private-libs.11 1 +0))) + +(let ((!k541 (ite sqlite3.25 1 +0))) + +(let ((!k542 (ite ocaml-migrate-parsetree.27 1 +0))) + +(let ((!k543 (ite dune.44 1 +0))) + +(let ((!k545 (ite dune.7 1 +0))) + +(let ((!k547 (ite dune-private-libs.10 1 +0))) + +(let ((!k548 (ite zarith.3 1 +0))) + +(let ((!k549 (ite num.5 1 +0))) + +(let ((!k552 (ite jbuilder.11 1 +0))) + +(let ((!k553 (ite dune.43 1 +0))) + +(let ((!k554 (ite configurator.7 1 +0))) + +(let ((!k555 (ite alt-ergo-lib.4 0 +1))) + +(let ((!k556 (ite conf-pkg-config.1 1 +0))) + +(let ((!k557 (ite camlp5.20 1 +0))) + +(let ((!k559 (ite sqlite3.20 1 +0))) + +(let ((!k560 (ite conf-emacs.1 0 +1))) + +(let ((!k561 (ite camlp5.17 1 +0))) + +(let ((!k564 (ite menhir.31 1 +0))) + +(let ((!k566 (ite topkg.15 1 +0))) + +(let ((!k567 (ite conf-autoconf.1 0 +1))) + +(let ((!k570 (ite zarith.5 1 +0))) + +(let ((!k571 (ite ppx%5ftools%5fversioned.9 1 +0))) + +(let ((!k574 (ite conf-pkg-config.4 0 +1))) + +(let ((!k575 (ite ocamlfind.26 0 +1))) + +(let ((!k576 (ite ocamlbuild.6 1 +0))) + +(let ((!k577 (ite ocamlbuild.5 1 +0))) + +(let ((!k579 (ite menhir.20 1 +0))) + +(let ((!k582 (ite biniou.9 0 +1))) + +(let ((!k584 (ite lablgtk.15 0 +1))) + +(let ((!k585 (ite jbuilder.22 1 +0))) + +(let ((!k586 (ite why3.26 1 +0))) + +(let ((!k587 (ite menhir.24 1 +0))) + +(let ((!k589 (ite lablgtk.12 1 +0))) + +(let ((!k591 (ite menhirSdk.5 1 +0))) + +(let ((!k592 (ite ocaml-migrate-parsetree.24 1 +0))) + +(let ((!k593 (ite dune-configurator.13 1 +0))) + +(let ((!k594 (ite dune.31 1 +0))) + +(let ((!k595 (ite conf-zlib.1 0 +1))) + +(let ((!k596 (ite dune.71 1 +0))) + +(let ((!k597 (ite dune.65 1 +0))) + +(let ((!k598 (ite dune.42 1 +0))) + +(let ((!k600 (ite menhirSdk.7 1 +0))) + +(let ((!k602 (ite dune-private-libs.3 1 +0))) + +(let ((!k604 (ite sqlite3.21 1 +0))) + +(let ((!k605 (ite base-bytes.2 0 +1))) + +(let ((!k606 (ite zarith.12 1 +0))) + +(let ((!k608 (ite zarith.8 1 +0))) + +(let ((!k609 (ite topkg.8 1 +0))) + +(let ((!k610 (ite ocplib-simplex.1 1 +0))) + +(let ((!k612 (ite menhir.47 1 +0))) + +(let ((!k613 (ite dose3.5 0 +1))) + +(let ((!k614 (ite csexp.7 1 +0))) + +(let ((!k615 (ite cppo.21 1 +0))) + +(let ((!k618 (ite result.1 1 +0))) + +(let ((!k620 (ite menhir.38 1 +0))) + +(let ((!k622 (ite ocplib-endian.8 1 +0))) + +(let ((!k623 (ite lwt.29 1 +0))) + +(let ((!k626 (ite result.6 0 +1))) + +(let ((!k627 (ite ocamlbuild.8 0 +1))) + +(let ((!k628 (ite dune.69 0 +1))) + +(let ((!k629 (ite why3.20 1 +0))) + +(let ((!k630 (ite lablgtk.10 1 +0))) + +(let ((!k631 (ite ocaml-migrate-parsetree.26 1 +0))) + +(let ((!k632 (ite lwt.40 1 +0))) + +(let ((!k633 (ite jbuilder.7 1 +0))) + +(let ((!k634 (ite dune-private-libs.13 1 +0))) + +(let ((!k636 (ite lwt.45 1 +0))) + +(let ((!k637 (ite result.4 1 +0))) + +(let ((!k639 (ite lwt.44 1 +0))) + +(let ((!k641 (ite menhir.55 1 +0))) + +(let ((!k644 (ite menhir.40 1 +0))) + +(let ((!k646 (ite dune.9 1 +0))) + +(let ((!k647 (ite lwt.49 1 +0))) + +(let ((!k648 (ite num.3 1 +0))) + +(let ((!k651 (ite ppx%5ftools%5fversioned.10 1 +0))) + +(let ((!k652 (ite alt-ergo.9 1 +0))) + +(let ((!k653 (ite jbuilder.14 1 +0))) + +(let ((!k654 (ite num.2 1 +0))) + +(let ((!k655 (ite jbuilder.17 1 +0))) + +(let ((!k657 (ite dune.51 14 +0))) + +(let ((!k663 (ite lwt.24 20 +0))) + +(let ((!k666 (ite dune-configurator.10 11 +0))) + +(let ((!k668 (ite why3.25 3 +0))) + +(let ((!k669 (ite base.14 8 +0))) + +(let ((!k673 (ite menhirSdk.8 2 +0))) + +(let ((!k676 (ite stdio.9 2 +0))) + +(let ((!k677 (ite menhir.34 21 +0))) + +(let ((!k679 (ite dune-configurator.20 3 +0))) + +(let ((!k681 (ite lwt.23 21 +0))) + +(let ((!k683 (ite topkg.14 2 +0))) + +(let ((!k686 (ite zarith.9 3 +0))) + +(let ((!k687 (ite ocaml-migrate-parsetree.33 2 +0))) + +(let ((!k690 (ite ppx%5ftools%5fversioned.5 7 +0))) + +(let ((!k691 (ite lwt.43 7 +0))) + +(let ((!k692 (ite sqlite3.22 3 +0))) + +(let ((!k699 (ite sqlite3.17 8 +0))) + +(let ((!k700 (ite menhir.46 10 +0))) + +(let ((!k701 (ite alt-ergo.8 4 +0))) + +(let ((!k705 (ite ocaml-migrate-parsetree.28 6 +0))) + +(let ((!k706 (ite menhirLib.5 5 +0))) + +(let ((!k707 (ite alt-ergo.5 7 +0))) + +(let ((!k708 (ite camlp4.22 11 +0))) + +(let ((!k711 (ite jbuilder.19 6 +0))) + +(let ((!k714 (ite lwt.25 19 +0))) + +(let ((!k715 (ite dune.26 31 +0))) + +(let ((!k718 (ite dune.57 10 +0))) + +(let ((!k720 (ite menhir.37 19 +0))) + +(let ((!k724 (ite lwt.34 14 +0))) + +(let ((!k725 (ite lwt.47 3 +0))) + +(let ((!k728 (ite dune-configurator.6 15 +0))) + +(let ((!k730 (ite menhirSdk.2 8 +0))) + +(let ((!k731 (ite lwt.36 12 +0))) + +(let ((!k732 (ite camlp5.24 7 +0))) + +(let ((!k734 (ite dune.12 41 +0))) + +(let ((!k737 (ite menhirSdk.4 6 +0))) + +(let ((!k739 (ite menhir.30 25 +0))) + +(let ((!k740 (ite alt-ergo-lib.1 3 +0))) + +(let ((!k742 (ite sqlite3.12 13 +0))) + +(let ((!k743 (ite jbuilder.3 22 +0))) + +(let ((!k744 (ite sexplib0.4 2 +0))) + +(let ((!k746 (ite stdio.7 3 +0))) + +(let ((!k747 (ite psmt2-frontend.2 2 +0))) + +(let ((!k748 (ite jbuilder.15 10 +0))) + +(let ((!k751 (ite menhir.49 7 +0))) + +(let ((!k752 (ite dune-private-libs.9 9 +0))) + +(let ((!k753 (ite conf-gmp.1 2 +0))) + +(let ((!k755 (ite ocaml-migrate-parsetree.32 3 +0))) + +(let ((!k756 (ite menhir.44 12 +0))) + +(let ((!k759 (ite dune-configurator.18 4 +0))) + +(let ((!k760 (ite sqlite3.11 14 +0))) + +(let ((!k762 (ite cppo%5focamlbuild.1 2 +0))) + +(let ((!k764 (ite jbuilder.9 16 +0))) + +(let ((!k766 (ite why3.22 6 +0))) + +(let ((!k767 (ite cppo.18 4 +0))) + +(let ((!k768 (ite menhirSdk.3 7 +0))) + +(let ((!k776 (ite dune.20 36 +0))) + +(let ((!k777 (ite dune.27 30 +0))) + +(let ((!k778 (ite topkg.12 4 +0))) + +(let ((!k779 (ite topkg.9 6 +0))) + +(let ((!k781 (ite lwt.38 11 +0))) + +(let ((!k785 (ite base.17 6 +0))) + +(let ((!k788 (ite lwt.26 18 +0))) + +(let ((!k790 (ite menhir.23 32 +0))) + +(let ((!k791 (ite cppo.20 2 +0))) + +(let ((!k792 (ite zarith.4 8 +0))) + +(let ((!k800 (ite ppx%5ftools%5fversioned.7 5 +0))) + +(let ((!k801 (ite dune.38 22 +0))) + +(let ((!k803 (ite jbuilder.20 5 +0))) + +(let ((!k804 (ite alt-ergo.7 5 +0))) + +(let ((!k807 (ite menhir.32 23 +0))) + +(let ((!k808 (ite ocaml-migrate-parsetree.19 14 +0))) + +(let ((!k811 (ite menhir.25 30 +0))) + +(let ((!k812 (ite base.18 5 +0))) + +(let ((!k813 (ite menhirSdk.1 9 +0))) + +(let ((!k815 (ite sqlite3.19 6 +0))) + +(let ((!k817 (ite jbuilder.16 9 +0))) + +(let ((!k819 (ite psmt2-frontend.1 3 +0))) + +(let ((!k820 (ite ppx%5ftools%5fversioned.6 6 +0))) + +(let ((!k821 (ite zarith.7 5 +0))) + +(let ((!k822 (ite dune.52 13 +0))) + +(let ((!k823 (ite menhirLib.6 4 +0))) + +(let ((!k824 (ite sqlite3.23 2 +0))) + +(let ((!k826 (ite octavius.3 3 +0))) + +(let ((!k828 (ite cppo.17 5 +0))) + +(let ((!k831 (ite ocaml-migrate-parsetree.30 5 +0))) + +(let ((!k832 (ite why3.21 7 +0))) + +(let ((!k833 (ite result.2 4 +0))) + +(let ((!k834 (ite ocamlbuild.3 5 +0))) + +(let ((!k835 (ite dune.56 11 +0))) + +(let ((!k836 (ite alt-ergo.6 6 +0))) + +(let ((!k840 (ite dune-private-libs.4 14 +0))) + +(let ((!k842 (ite dune.14 40 +0))) + +(let ((!k844 (ite dune.34 25 +0))) + +(let ((!k845 (ite dune-private-libs.8 10 +0))) + +(let ((!k847 (ite topkg.11 5 +0))) + +(let ((!k848 (ite sexplib.60 4 +0))) + +(let ((!k849 (ite dune-configurator.11 10 +0))) + +(let ((!k850 (ite dune-configurator.21 0 +2))) + +(let ((!k851 (ite menhir.36 20 +0))) + +(let ((!k852 (ite jbuilder.21 4 +0))) + +(let ((!k853 (ite menhir.51 5 +0))) + +(let ((!k854 (ite sexplib0.2 3 +0))) + +(let ((!k857 (ite dune-configurator.12 9 +0))) + +(let ((!k858 (ite menhir.41 15 +0))) + +(let ((!k859 (ite dune-private-libs.7 11 +0))) + +(let ((!k860 (ite why3.23 5 +0))) + +(let ((!k861 (ite menhirLib.1 9 +0))) + +(let ((!k862 (ite dune-private-libs.14 4 +0))) + +(let ((!k863 (ite menhirLib.4 6 +0))) + +(let ((!k864 (ite menhir.54 2 +0))) + +(let ((!k865 (ite dune.10 42 +0))) + +(let ((!k871 (ite octavius.4 2 +0))) + +(let ((!k875 (ite ocaml-migrate-parsetree.17 16 +0))) + +(let ((!k876 (ite sqlite3.18 7 +0))) + +(let ((!k877 (ite jbuilder.5 20 +0))) + +(let ((!k880 (ite dune.24 33 +0))) + +(let ((!k882 (ite menhir.26 29 +0))) + +(let ((!k883 (ite dune.68 3 +0))) + +(let ((!k884 (ite sqlite3.8 17 +0))) + +(let ((!k885 (ite dune-configurator.7 14 +0))) + +(let ((!k886 (ite menhir.42 14 +0))) + +(let ((!k888 (ite menhirLib.2 8 +0))) + +(let ((!k892 (ite camlzip.3 4 +0))) + +(let ((!k895 (ite dune-private-libs.6 12 +0))) + +(let ((!k899 (ite sqlite3.10 15 +0))) + +(let ((!k900 (ite conf-pkg-config.2 2 +0))) + +(let ((!k904 (ite jbuilder.12 13 +0))) + +(let ((!k905 (ite dune.30 28 +0))) + +(let ((!k906 (ite sqlite3.16 9 +0))) + +(let ((!k907 (ite camlzip.4 3 +0))) + +(let ((!k908 (ite camlp5.21 10 +0))) + +(let ((!k909 (ite alt-ergo-lib.2 2 +0))) + +(let ((!k911 (ite lwt.35 13 +0))) + +(let ((!k913 (ite topkg.7 8 +0))) + +(let ((!k915 (ite menhir.53 3 +0))) + +(let ((!k916 (ite dune.35 24 +0))) + +(let ((!k919 (ite menhir.28 27 +0))) + +(let ((!k922 (ite ocaml-compiler-libs.2 5 +0))) + +(let ((!k923 (ite menhirLib.3 7 +0))) + +(let ((!k926 (ite dune.22 34 +0))) + +(let ((!k927 (ite menhir.45 11 +0))) + +(let ((!k928 (ite dune.29 29 +0))) + +(let ((!k929 (ite dune-configurator.16 6 +0))) + +(let ((!k931 (ite dune.48 16 +0))) + +(let ((!k932 (ite dune.21 35 +0))) + +(let ((!k933 (ite lablgtk.13 2 +0))) + +(let ((!k934 (ite topkg.3 12 +0))) + +(let ((!k935 (ite sqlite3.14 11 +0))) + +(let ((!k936 (ite dune.41 20 +0))) + +(let ((!k937 (ite why3.24 4 +0))) + +(let ((!k938 (ite cppo.19 3 +0))) + +(let ((!k940 (ite alt-ergo-parsers.1 3 +0))) + +(let ((!k945 (ite camlp5.22 9 +0))) + +(let ((!k946 (ite camlp5.23 8 +0))) + +(let ((!k947 (ite lwt.46 4 +0))) + +(let ((!k950 (ite ppx%5ftools%5fversioned.8 4 +0))) + +(let ((!k953 (ite jbuilder.18 7 +0))) + +(let ((!k956 (ite menhir.29 26 +0))) + +(let ((!k959 (ite ocaml-migrate-parsetree.18 15 +0))) + +(let ((!k960 (ite sqlite3.9 16 +0))) + +(let ((!k961 (ite dune.25 32 +0))) + +(let ((!k964 (ite dune-configurator.9 12 +0))) + +(let ((!k965 (ite lwt.41 8 +0))) + +(let ((!k966 (ite dune.36 23 +0))) + +(let ((!k967 (ite menhir.48 8 +0))) + +(let ((!k968 (ite dune.66 4 +0))) + +(let ((!k970 (ite lwt.30 16 +0))) + +(let ((!k971 (ite dune-private-libs.12 6 +0))) + +(let ((!k972 (ite ppx%5ftraverse%5fbuiltins.2 2 +0))) + +(let ((!k974 (ite alt-ergo-parsers.2 2 +0))) + +(let ((!k975 (ite dune.54 12 +0))) + +(let ((!k979 (ite menhir.22 33 +0))) + +(let ((!k980 (ite dune.6 45 +0))) + +(let ((!k983 (ite alt-ergo.10 2 +0))) + +(let ((!k984 (ite lwt.22 22 +0))) + +(let ((!k987 (ite jbuilder.6 19 +0))) + +(let ((!k988 (ite dune-configurator.17 5 +0))) + +(let ((!k990 (ite dune.4 46 +0))) + +(let ((!k992 (ite sexplib.58 5 +0))) + +(let ((!k993 (ite jbuilder.2 23 +0))) + +(let ((!k995 (ite sqlite3.13 12 +0))) + +(let ((!k997 (ite topkg.4 11 +0))) + +(let ((!k998 (ite jbuilder.13 12 +0))) + +(let ((!k999 (ite base.16 7 +0))) + +(let ((!k1000 (ite menhir.50 6 +0))) + +(let ((!k1002 (ite dune.33 26 +0))) + +(let ((!k1004 (ite alt-ergo.2 10 +0))) + +(let ((!k1006 (ite dune-private-libs.5 13 +0))) + +(let ((!k1007 (ite dune.17 38 +0))) + +(let ((!k1008 (ite base.20 4 +0))) + +(let ((!k1009 (ite ocaml-migrate-parsetree.23 10 +0))) + +(let ((!k1010 (ite dune.40 21 +0))) + +(let ((!k1012 (ite jbuilder.4 21 +0))) + +(let ((!k1013 (ite base.22 2 +0))) + +(let ((!k1015 (ite sqlite3.15 10 +0))) + +(let ((!k1016 (ite ocaml-migrate-parsetree.20 13 +0))) + +(let ((!k1017 (ite dune-configurator.14 7 +0))) + +(let ((!k1020 (ite octavius.1 5 +0))) + +(let ((!k1021 (ite dune.3 47 +0))) + +(let ((!k1022 (ite dune.61 8 +0))) + +(let ((!k1023 (ite camlzip.5 2 +0))) + +(let ((!k1024 (ite dune-configurator.5 16 +0))) + +(let ((!k1025 (ite dune.64 6 +0))) + +(let ((!k1026 (ite menhirLib.8 2 +0))) + +(let ((!k1029 (ite dune.16 39 +0))) + +(let ((!k1031 (ite dune.19 37 +0))) + +(let ((!k1033 (ite ppx%5fast.4 2 +0))) + +(let ((!k1034 (ite menhir.27 28 +0))) + +(let ((!k1035 (ite lwt.39 10 +0))) + +(let ((!k1037 (ite menhir.52 4 +0))) + +(let ((!k1038 (ite camlp5.18 13 +0))) + +(let ((!k1040 (ite menhirSdk.6 4 +0))) + +(let ((!k1041 (ite dune-configurator.2 18 +0))) + +(let ((!k1042 (ite dune.62 7 +0))) + +(let ((!k1043 (ite topkg.6 9 +0))) + +(let ((!k1044 (ite alt-ergo.3 9 +0))) + +(let ((!k1045 (ite ocaml-migrate-parsetree.31 4 +0))) + +(let ((!k1046 (ite base.21 3 +0))) + +(let ((!k1047 (ite alt-ergo.4 8 +0))) + +(let ((!k1050 (ite result.3 3 +0))) + +(let ((!k1051 (ite dune-private-libs.2 16 +0))) + +(let ((!k1053 (ite menhirLib.7 3 +0))) + +(let ((!k1054 (ite topkg.13 3 +0))) + +(let ((!k1056 (ite lwt.32 15 +0))) + +(let ((!k1058 (ite jbuilder.23 2 +0))) + +(let ((!k1060 (ite dune.50 15 +0))) + +(let ((!k1061 (ite num.4 2 +0))) + +(let ((!k1062 (ite menhir.33 22 +0))) + +(let ((!k1063 (ite lablgtk.11 4 +0))) + +(let ((!k1065 (ite ppx%5ftools.13 6 +0))) + +(let ((!k1067 (ite dune.59 9 +0))) + +(let ((!k1068 (ite octavius.2 4 +0))) + +(let ((!k1072 (ite topkg.5 10 +0))) + +(let ((!k1073 (ite menhir.21 34 +0))) + +(let ((!k1075 (ite jbuilder.10 15 +0))) + +(let ((!k1076 (ite menhir.39 17 +0))) + +(let ((!k1077 (ite zarith.6 6 +0))) + +(let ((!k1078 (ite dune-configurator.8 13 +0))) + +(let ((!k1079 (ite jbuilder.8 17 +0))) + +(let ((!k1080 (ite ocamlbuild.4 4 +0))) + +(let ((!k1084 (ite menhir.43 13 +0))) + +(let ((!k1089 (ite dune-private-libs.11 7 +0))) + +(let ((!k1090 (ite ocaml-migrate-parsetree.27 7 +0))) + +(let ((!k1091 (ite dune.44 17 +0))) + +(let ((!k1093 (ite dune.7 44 +0))) + +(let ((!k1095 (ite dune-private-libs.10 8 +0))) + +(let ((!k1096 (ite zarith.3 9 +0))) + +(let ((!k1099 (ite jbuilder.11 14 +0))) + +(let ((!k1100 (ite dune.43 18 +0))) + +(let ((!k1101 (ite conf-pkg-config.1 3 +0))) + +(let ((!k1102 (ite camlp5.20 11 +0))) + +(let ((!k1104 (ite sqlite3.20 5 +0))) + +(let ((!k1105 (ite camlp5.17 14 +0))) + +(let ((!k1108 (ite menhir.31 24 +0))) + +(let ((!k1112 (ite zarith.5 7 +0))) + +(let ((!k1113 (ite ppx%5ftools%5fversioned.9 3 +0))) + +(let ((!k1116 (ite ocamlbuild.6 2 +0))) + +(let ((!k1117 (ite ocamlbuild.5 3 +0))) + +(let ((!k1119 (ite menhir.20 35 +0))) + +(let ((!k1122 (ite jbuilder.22 3 +0))) + +(let ((!k1123 (ite why3.26 2 +0))) + +(let ((!k1124 (ite menhir.24 31 +0))) + +(let ((!k1126 (ite lablgtk.12 3 +0))) + +(let ((!k1128 (ite menhirSdk.5 5 +0))) + +(let ((!k1129 (ite ocaml-migrate-parsetree.24 9 +0))) + +(let ((!k1130 (ite dune-configurator.13 8 +0))) + +(let ((!k1131 (ite dune.31 27 +0))) + +(let ((!k1132 (ite dune.65 5 +0))) + +(let ((!k1133 (ite dune.42 19 +0))) + +(let ((!k1135 (ite menhirSdk.7 3 +0))) + +(let ((!k1137 (ite dune-private-libs.3 15 +0))) + +(let ((!k1139 (ite sqlite3.21 4 +0))) + +(let ((!k1140 (ite zarith.12 2 +0))) + +(let ((!k1142 (ite zarith.8 4 +0))) + +(let ((!k1143 (ite topkg.8 7 +0))) + +(let ((!k1145 (ite menhir.47 9 +0))) + +(let ((!k1147 (ite result.1 5 +0))) + +(let ((!k1149 (ite menhir.38 18 +0))) + +(let ((!k1151 (ite lwt.29 17 +0))) + +(let ((!k1154 (ite dune.69 0 +2))) + +(let ((!k1155 (ite why3.20 8 +0))) + +(let ((!k1156 (ite lablgtk.10 5 +0))) + +(let ((!k1157 (ite ocaml-migrate-parsetree.26 8 +0))) + +(let ((!k1158 (ite lwt.40 9 +0))) + +(let ((!k1159 (ite jbuilder.7 18 +0))) + +(let ((!k1160 (ite dune-private-libs.13 5 +0))) + +(let ((!k1162 (ite lwt.45 5 +0))) + +(let ((!k1163 (ite result.4 2 +0))) + +(let ((!k1164 (ite lwt.44 6 +0))) + +(let ((!k1168 (ite menhir.40 16 +0))) + +(let ((!k1170 (ite dune.9 43 +0))) + +(let ((!k1171 (ite lwt.49 2 +0))) + +(let ((!k1172 (ite num.3 3 +0))) + +(let ((!k1175 (ite ppx%5ftools%5fversioned.10 2 +0))) + +(let ((!k1176 (ite alt-ergo.9 3 +0))) + +(let ((!k1177 (ite jbuilder.14 11 +0))) + +(let ((!k1178 (ite num.2 4 +0))) + +(let ((!k1179 (ite jbuilder.17 8 +0))) + +(let ((!k1180 (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 +))) + +(let ((!k1181 (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 +))) + +(let ((!k1182 (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 +))) + +(let ((!k1183 base-bytes.2)) + +(let ((!k1184 (or + lablgtk.10 + lablgtk.12 + lablgtk.15 + lablgtk.11 + lablgtk.13 + lablgtk.14 +))) + +(let ((!k1185 (or + ocamlfind.26 + ocamlfind.25 +))) + +(let ((!k1186 (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 +))) + +(let ((!k1187 (or + alt-ergo-lib.4 + alt-ergo-lib.2 + alt-ergo-lib.1 + alt-ergo-lib.3 +))) + +(let ((!k1188 (or + ocplib-simplex.1 + ocplib-simplex.2 +))) + +(let ((!k1189 (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 +))) + +(let ((!k1190 (or + alt-ergo-parsers.4 + alt-ergo-parsers.2 + alt-ergo-parsers.1 + alt-ergo-parsers.3 +))) + +(let ((!k1191 (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 +))) + +(let ((!k1192 (or + num.2 + num.3 + num.5 + num.4 + num.6 +))) + +(let ((!k1193 (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 +))) + +(let ((!k1194 (or + ocamlgraph.12 + ocamlgraph.9 +))) + +(let ((!k1195 (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 +))) + +(let ((!k1196 (or + ocaml-config.1 + ocaml-config.2 +))) + +(let ((!k1197 (or + ocaml-secondary-compiler.2 + ocaml-secondary-compiler.1 +))) + +(let ((!k1198 (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 +))) + +(let ((!k1199 (or + csexp.7 + csexp.8 +))) + +(let ((!k1200 (or + psmt2-frontend.3 + psmt2-frontend.1 + psmt2-frontend.4 + psmt2-frontend.2 +))) + +(let ((!k1201 (or + seq.4 + seq.5 +))) + +(let ((!k1202 (or + menhirLib.7 + menhirLib.8 + menhirLib.3 + menhirLib.2 + menhirLib.4 + menhirLib.1 + menhirLib.6 + menhirLib.10 + menhirLib.9 + menhirLib.5 +))) + +(let ((!k1203 (or + menhirSdk.7 + menhirSdk.5 + menhirSdk.6 + menhirSdk.1 + menhirSdk.3 + menhirSdk.10 + menhirSdk.9 + menhirSdk.4 + menhirSdk.2 + menhirSdk.8 +))) + +(let ((!k1204 (or + alt-ergo.9 + alt-ergo.11 + alt-ergo.4 + alt-ergo.3 + alt-ergo.2 + alt-ergo.10 + alt-ergo.6 + alt-ergo.7 + alt-ergo.12 + alt-ergo.5 + alt-ergo.8 +))) + +(let ((!k1205 (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 +))) + +(let ((!k1206 (ite !k1205 0 +1))) + +(let ((!k1207 (ite !k1204 0 +1))) + +(let ((!k1208 (ite !k1203 0 +1))) + +(let ((!k1209 (ite !k1202 0 +1))) + +(let ((!k1210 (ite !k1201 0 +1))) + +(let ((!k1211 (ite !k1200 0 +1))) + +(let ((!k1212 (ite !k1199 0 +1))) + +(let ((!k1213 (ite !k1198 0 +1))) + +(let ((!k1214 (ite !k1197 0 +1))) + +(let ((!k1215 (ite !k1196 0 +1))) + +(let ((!k1216 (ite !k1195 0 +1))) + +(let ((!k1217 (ite !k1194 0 +1))) + +(let ((!k1218 (ite !k1193 0 +1))) + +(let ((!k1219 (ite !k1192 0 +1))) + +(let ((!k1220 (ite !k1191 0 +1))) + +(let ((!k1221 (ite !k1190 0 +1))) + +(let ((!k1222 (ite !k1189 0 +1))) + +(let ((!k1223 (ite !k1188 0 +1))) + +(let ((!k1224 (ite !k1187 0 +1))) + +(let ((!k1225 (ite !k1186 0 +1))) + +(let ((!k1226 (ite !k1185 0 +1))) + +(let ((!k1227 (ite !k1184 0 +1))) + +(let ((!k1228 (ite !k1183 0 +1))) + +(let ((!k1229 (ite !k1182 0 +1))) + +(let ((!k1230 (ite !k1181 0 +1))) + +(let ((!k1231 (ite !k1180 0 +1))) + + +;; Main form: +;;;;;;;;;;;;; +(and + (not lwt.14) + (not camlp5.13) + (not sexplib.56) + (not cppo.7) + (not camlp5.19) + (not camlp4.21) + (not ppx%5ftools.18) + (not cppo.15) + (not seq.1) + (not coq.1) + (not sexplib.55) + (not menhir.15) + (not base-metaocaml-ocamlfind.1) + (not ocamlgraph.6) + (not ppx%5fbase.2) + (not menhir.4) + (not menhir.16) + (not camlp4.6) + (not ppx%5fcompare.11) + (not menhir.14) + (not why3-base.11) + (not why3.18) + base-unix.1 + (not ppx%5fdriver.16) + (not why3.15) + (not ppx%5ftools.8) + (not ppx%5fhash.2) + (not base.13) + (not camlp4.2) + (not lwt.18) + (not stdio.2) + (not cppo.16) + (not camlp4.5) + (not seq.3) + (not ocamlbuild.1) + (not ppx%5fjs%5fstyle.2) + (not why3-base.5) + (not ocaml-migrate-parsetree.10) + (not ocplib-endian.7) + ocaml-base-compiler.36 + (not lwt.10) + (not lwt.4) + (not ppx%5fsexp%5fconv.14) + (not ocaml-migrate-parsetree.9) + (not base-bytes.1) + (not ppx%5ftools.19) + (not base.6) + (not ocplib-endian.4) + (not why3.12) + (not ocaml-migrate-parsetree.21) + (not ppx%5fmetaquot.2) + (not ppx%5ftype%5fconv.14) + (not why3.1) + (not ppx%5ftools.10) + (not ocaml-migrate-parsetree.22) + (not menhir.2) + %3dopam-invariant.1 + (not base-no-ppx.1) + (not camlp5.3) + (not ocaml-migrate-parsetree.11) + (not base-implicits.1) + (not ppx%5ftools.11) + (not lablgtk.8) + (not ppx%5ftools.17) + (not menhir.13) + (not ppx%5ftype%5fconv.13) + (not camlp4.9) + (not base-num.1) + (not ppx%5ftools.14) + (not camlp4.18) + (not ocplib-endian.6) + (not ppx%5fdriver.15) + (not why3-base.3) + (not camlp4.14) + (not camlp5.16) + (not ppx%5ftools.5) + (not why3.8) + (not camlp4.19) + (not why3.4) + (not menhir.18) + (not cppo.4) + (not base.5) + (not camlzip.2) + (not lablgtk.9) + (not cppo.8) + (not ocamlfind.11) + (not lwt.20) + (not ppx%5fcore.13) + (not why3.14) + (not lwt.21) + (not ocamlfind.6) + (not camlp4.11) + (not ppx%5fcore.14) + (not ppx%5ftools.15) + (not camlp4.13) + (not lwt.17) + (not why3-base.10) + (not menhir.19) + (not camlp4.26) + (not ocaml-migrate-parsetree.13) + (not menhir.11) + (not ocaml-migrate-parsetree.16) + (not ppx%5fast.3) + (not camlp4.33) + base-bigarray.1 + (not ppx%5fenumerate.10) + (not ocaml-migrate-parsetree.8) + (not cppo.6) + (not ppx%5fast.2) + (not camlp5.12) + (not camlp4.29) + (not ocamlfind.10) + (not camlp4.32) + (not why3-base.6) + (not lwt.13) + (not ocamlfind.17) + (not optcomp.3) + (not camlp5.14) + (not lwt.8) + (not why3.6) + (not base.11) + (not menhir.6) + (not camlp5.2) + (not cppo.12) + (not ppx%5ftools.7) + (not ocamlgraph.5) + (not ocamlfind.5) + (not why3.10) + (not camlp5.9) + (not why3.13) + (not cppo.3) + (not ocamlfind.14) + (not configurator.5) + (not lablgtk.7) + (not ocamlfind.7) + (not cppo.2) + (not dune-configurator.3) + (not menhir.8) + (not ocaml-migrate-parsetree.6) + (not camlp5.7) + (not lablgtk.6) + (not base.25) + (not why3-base.7) + (not camlzip.1) + (not camlp4.23) + (not base-ocamlbuild.1) + (not why3-base.8) + (not why3.16) + (not xenbigarray.1) + (not ocamlfind.22) + (not zarith.1) + (not camlp4.7) + (not ocaml-migrate-parsetree.12) + (not ocamlfind.12) + (not cppo.13) + ocaml.60 + (not configurator.2) + (not base.7) + (not ocplib-endian.1) + (not camlp5.10) + (not lwt.7) + (not why3.5) + (not why3-base.1) + (not ppx%5ftools.3) + (not lablgtk.3) + (not why3.2) + (not zarith.2) + (not camlp5.11) + (not base.9) + (not ocamlfind.3) + (not camlp5.5) + (not camlp4.17) + (not ocamlfind.4) + (not seq.2) + (not why3-base.13) + (not cppo.5) + (not ppx%5ftools.1) + (not menhir.17) + (not why3.3) + (not lwt.11) + (not ocamlfind.23) + (not ocaml-migrate-parsetree.14) + (not ocamlgraph.8) + (not lwt.16) + (not ocplib-endian.3) + (not cppo.1) + (not why3-base.12) + (not ocaml-migrate-parsetree.15) + (not lwt.6) + (not ocamlbuild.2) + (not camlp4.16) + (not camlp4.3) + (not ppx%5ftools.12) + base-threads.1 + (not camlp4.8) + (not camlp4.31) + (not ocplib-endian.2) + (not stdio.3) + (not why3.17) + (not ocamlfind.15) + (not ppx%5ftools.2) + (not why3.19) + (not ocamlfind.18) + (not camlp4.15) + (not ppx%5foptcomp.12) + (not base.8) + (not camlp4.24) + (not lwt.19) + (not lwt.12) + (not stdio.5) + (not cppo.14) + (not ocamlfind.21) + (not camlp4.20) + (not ocamlfind.13) + (not camlp5.15) + (not ppx%5fdriver.14) + (not lwt.9) + (not sexplib.57) + (not camlp4.28) + (not ocaml-migrate-parsetree.4) + (not ocaml-migrate-parsetree.3) + (not camlp5.8) + (not ppx%5ftools.9) + (not ppx%5ftools.16) + (not configurator.3) + (not why3-base.2) + (not why3.11) + (not ocamlgraph.4) + (not camlp4.27) + (not ocamlgraph.7) + (not cppo.11) + (not camlp4.10) + (not camlp4.25) + (not ppx%5fcore.12) + (not cppo.10) + (not why3-base.4) + (not ppx%5ftools.4) + (not menhir.12) + (not camlp5.6) + (not camlp4.30) + (not why3.7) + (not camlp5.4) + (not menhir.3) + (not num.1) + (not ocamlfind.24) + (or + ocaml-config.1 + ocaml-config.2 + ) + (or + (not jbuilder.17) + (and + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not jbuilder.14) + (and + (not jbuilder.17) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not alt-ergo.9) + (and + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not ppx%5ftools%5fversioned.10) + (and + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not dune.9) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not result.4) + (and + (not result.6) + (not result.1) + (not result.3) + (not result.5) + (not result.2) + ) + ) + (or + (not dune-private-libs.13) + (and + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not jbuilder.7) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not result.6) + (and + (not result.4) + (not result.1) + (not result.3) + (not result.5) + (not result.2) + ) + ) + (or + (not result.1) + (and + (not result.4) + (not result.6) + (not result.3) + (not result.5) + (not result.2) + ) + ) + (or + (not csexp.7) + (not csexp.8) + ) + (or + (not ocplib-simplex.1) + (not ocplib-simplex.2) + ) + (or + (not topkg.8) + (and + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not sqlite3.21) + (and + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-private-libs.3) + (and + (not dune-private-libs.13) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.42) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not conf-zlib.1) + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + (not dune.31) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.13) + (and + dune-private-libs.10 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not jbuilder.22) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not conf-pkg-config.4) + (and + (not conf-pkg-config.1) + (not conf-pkg-config.2) + (not conf-pkg-config.3) + ) + ) + (or + (not ppx%5ftools%5fversioned.9) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not conf-autoconf.1) + conf-which.1 + ) + (or + (not topkg.15) + (and + (not topkg.8) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not sqlite3.20) + (and + (not sqlite3.21) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not conf-pkg-config.1) + (and + (not conf-pkg-config.4) + (not conf-pkg-config.2) + (not conf-pkg-config.3) + ) + ) + (or + (not alt-ergo-lib.4) + (and + (not alt-ergo-lib.2) + (not alt-ergo-lib.1) + (not alt-ergo-lib.3) + ) + ) + (or + (not dune.43) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.11) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune-private-libs.10) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.7) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.44) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not sqlite3.25) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-private-libs.11) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not jbuilder.8) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune-configurator.8) + (and + dune-private-libs.5 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not jbuilder.10) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not alt-ergo-parsers.4) + (and + (not alt-ergo-parsers.2) + (not alt-ergo-parsers.1) + (not alt-ergo-parsers.3) + ) + ) + (or + (not topkg.5) + (and + (not topkg.8) + (not topkg.15) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not octavius.2) + (and + (not octavius.6) + (not octavius.5) + (not octavius.1) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not alt-ergo.11) + (and + (not alt-ergo.9) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not octavius.6) + (and + (not octavius.2) + (not octavius.5) + (not octavius.1) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not dune.50) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not jbuilder.23) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not mmap.1) + (not mmap.2) + ) + (or + (not topkg.13) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune-private-libs.2) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not result.3) + (and + (not result.4) + (not result.6) + (not result.1) + (not result.5) + (not result.2) + ) + ) + (or + (not octavius.5) + (and + (not octavius.2) + (not octavius.6) + (not octavius.1) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not alt-ergo.4) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not alt-ergo.3) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not topkg.6) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + (not dune-configurator.2) + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + (or + (not dune.19) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.16) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.5) + (and + dune-private-libs.2 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not dune.3) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not octavius.1) + (and + (not octavius.2) + (not octavius.6) + (not octavius.5) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not conf-gmp.3) + (and + (not conf-gmp.2) + (not conf-gmp.1) + ) + ) + (or + (not dune-configurator.14) + (and + dune-private-libs.11 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not sqlite3.15) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not result.5) + (and + (not result.4) + (not result.6) + (not result.1) + (not result.3) + (not result.2) + ) + ) + (or + (not jbuilder.4) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune.40) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.17) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-private-libs.5) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not alt-ergo.2) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + (not conf-sqlite3.1) + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + (not dune.33) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.13) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not topkg.4) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not sqlite3.13) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not jbuilder.2) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune.4) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.17) + (and + dune-private-libs.13 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + ) + ) + (or + (not jbuilder.6) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not cppo%5focamlbuild.3) + (and + (not cppo%5focamlbuild.2) + (not cppo%5focamlbuild.1) + ) + ) + (or + (not alt-ergo.10) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not dune.6) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not ocaml-config.1) + (not ocaml-config.2) + ) + (or + (not dune.54) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not ocaml-secondary-compiler.2) + (not ocaml-secondary-compiler.1) + ) + (or + (not alt-ergo-parsers.2) + (and + (not alt-ergo-parsers.4) + (not alt-ergo-parsers.1) + (not alt-ergo-parsers.3) + ) + ) + (or + (not dune-private-libs.12) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.36) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.9) + (and + dune-private-libs.6 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not dune.25) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not sqlite3.9) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not jbuilder.18) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not ppx%5ftools%5fversioned.8) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not conf-gmp.2) + (and + (not conf-gmp.3) + (not conf-gmp.1) + ) + ) + (or + (not alt-ergo-parsers.1) + (and + (not alt-ergo-parsers.4) + (not alt-ergo-parsers.2) + (not alt-ergo-parsers.3) + ) + ) + (or + (not dune.41) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not sqlite3.14) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not topkg.3) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune.21) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.48) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune-configurator.16) + (and + dune-private-libs.12 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + ) + ) + (or + (not dune.29) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.22) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.35) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not alt-ergo-parsers.3) + (and + (not alt-ergo-parsers.4) + (not alt-ergo-parsers.2) + (not alt-ergo-parsers.1) + ) + ) + (or + (not topkg.7) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not psmt2-frontend.3) + (and + (not psmt2-frontend.1) + (not psmt2-frontend.4) + (not psmt2-frontend.2) + ) + ) + (or + (not alt-ergo-lib.2) + (and + (not alt-ergo-lib.4) + (not alt-ergo-lib.1) + (not alt-ergo-lib.3) + ) + ) + (or + (not sqlite3.16) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune.30) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.12) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not conf-pkg-config.2) + (and + (not conf-pkg-config.4) + (not conf-pkg-config.1) + (not conf-pkg-config.3) + ) + ) + (or + (not sqlite3.10) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not conf-pkg-config.3) + (and + (not conf-pkg-config.4) + (not conf-pkg-config.1) + (not conf-pkg-config.2) + ) + ) + (or + (not dune-private-libs.6) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune-configurator.7) + (and + dune-private-libs.4 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not sqlite3.8) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune.24) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.5) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not sqlite3.18) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not octavius.4) + (and + (not octavius.2) + (not octavius.6) + (not octavius.5) + (not octavius.1) + (not octavius.3) + ) + ) + (or + (not dune.10) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-private-libs.14) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not sqlite3.26) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-private-libs.7) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune-configurator.12) + (and + dune-private-libs.9 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.12) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not jbuilder.21) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not ppx%5fderivers.1) + (not ppx%5fderivers.2) + ) + (or + (not dune-configurator.11) + (and + dune-private-libs.8 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + (not conf-gtksourceview.1) + ) + (or + (not topkg.11) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune-private-libs.8) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.34) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.14) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-private-libs.4) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.9) + ) + ) + (or + (not alt-ergo.6) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not result.2) + (and + (not result.4) + (not result.6) + (not result.1) + (not result.3) + (not result.5) + ) + ) + (or + (not cppo%5focamlbuild.2) + (and + (not cppo%5focamlbuild.3) + (not cppo%5focamlbuild.1) + ) + ) + (or + (not octavius.3) + (and + (not octavius.2) + (not octavius.6) + (not octavius.5) + (not octavius.1) + (not octavius.4) + ) + ) + (or + (not sqlite3.23) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune.52) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not ppx%5ftools%5fversioned.6) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not psmt2-frontend.1) + (and + (not psmt2-frontend.3) + (not psmt2-frontend.4) + (not psmt2-frontend.2) + ) + ) + (or + (not jbuilder.16) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not sqlite3.19) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + (not conf-ncurses.1) + ) + (or + (not jbuilder.25) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not psmt2-frontend.4) + (and + (not psmt2-frontend.3) + (not psmt2-frontend.1) + (not psmt2-frontend.2) + ) + ) + (or + (not alt-ergo.7) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not jbuilder.20) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune.38) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not ppx%5ftools%5fversioned.7) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not topkg.9) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not topkg.12) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune.27) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.20) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.9) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not cppo%5focamlbuild.1) + (and + (not cppo%5focamlbuild.3) + (not cppo%5focamlbuild.2) + ) + ) + (or + (not sqlite3.11) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-configurator.18) + (and + dune-private-libs.14 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + ) + ) + (or + (not conf-gmp.1) + (and + (not conf-gmp.3) + (not conf-gmp.2) + ) + ) + (or + (not topkg.16) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.14) + ) + ) + (or + (not dune-private-libs.9) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + ) + ) + (or + (not jbuilder.15) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not psmt2-frontend.2) + (and + (not psmt2-frontend.3) + (not psmt2-frontend.1) + (not psmt2-frontend.4) + ) + ) + (or + (not sexplib0.4) + (and + (not sexplib0.2) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not jbuilder.3) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not sqlite3.12) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not alt-ergo-lib.1) + (and + (not alt-ergo-lib.4) + (not alt-ergo-lib.2) + (not alt-ergo-lib.3) + ) + ) + (or + (not sexplib0.8) + (and + (not sexplib0.2) + (not sexplib0.4) + (not sexplib0.6) + ) + ) + (or + (not dune.12) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not alt-ergo.12) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + (not conf-gtk2.1) + ) + (or + (not ppx%5ftools%5fversioned.11) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not dune-configurator.6) + (and + dune-private-libs.3 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not sexplib0.6) + (and + (not sexplib0.2) + (not sexplib0.4) + (not sexplib0.8) + ) + ) + (or + (not ocamlfind-secondary.1) + (and + ocamlfind.26 + (or + ocaml-secondary-compiler.2 + ocaml-secondary-compiler.1 + ) + ) + ) + (or + (not dune.26) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.19) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.24) + ) + ) + (or + (not alt-ergo.5) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.8) + ) + ) + (or + (not alt-ergo.8) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + ) + ) + (or + (not sqlite3.17) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.22) + ) + ) + (or + (not sqlite3.22) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + ) + ) + (or + (not ppx%5ftools%5fversioned.5) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + ) + ) + (or + (not jbuilder.24) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + ) + ) + (or + (not topkg.14) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + ) + ) + (or + (not alt-ergo-lib.3) + (and + (not alt-ergo-lib.4) + (not alt-ergo-lib.2) + (not alt-ergo-lib.1) + ) + ) + (or + (not dune-configurator.10) + (and + dune-private-libs.7 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not dune.51) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + ) + ) + (or + (not ocamlgraph.12) + (not ocamlgraph.9) + ) + (or + (not lwt.24) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.26) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not dune.51) + ) + ) + (or + (not dune-configurator.10) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + ) + ) + (or + (not base.14) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + ) + ) + (or + (not lablgtk.14) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.13) + ) + ) + (or + (not dune-configurator.20) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.10) + ) + ) + (or + (not lwt.23) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.26) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.24) + (not dune.51) + ) + ) + (or + (not zarith.9) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + ) + ) + (or + (not ocaml-migrate-parsetree.33) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + ) + ) + (or + (not lwt.43) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.51) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not ocaml-migrate-parsetree.28) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not lwt.25) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.26) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + (not dune.51) + ) + ) + (or + (not dune.57) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.26) + (not dune.51) + ) + ) + (or + (not lwt.34) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.47) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune-configurator.6) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lwt.36) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not camlp5.24) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + ) + ) + (or + (not stdio.7) + (and + (not stdio.13) + (not stdio.11) + (not stdio.9) + ) + ) + (or + (not ocaml-migrate-parsetree.32) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune-configurator.18) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not cppo.18) + (and + (not cppo.21) + (not cppo.22) + (not cppo.19) + (not cppo.17) + (not cppo.20) + ) + ) + (or + (not seq.4) + (not seq.5) + ) + (or + (not lwt.38) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not base.17) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.14) + ) + ) + (or + (not lwt.26) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + (not dune.51) + ) + ) + (or + (not cppo.20) + (and + (not cppo.21) + (not cppo.22) + (not cppo.19) + (not cppo.17) + (not cppo.18) + ) + ) + (or + (not zarith.4) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.9) + ) + ) + (or + (not ocaml-migrate-parsetree.19) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not base.18) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.17) + (not base.14) + ) + ) + (or + (not zarith.7) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not camlzip.6) + (and + (not camlzip.7) + (not camlzip.5) + (not camlzip.4) + (not camlzip.3) + ) + ) + (or + (not cppo.17) + (and + (not cppo.21) + (not cppo.22) + (not cppo.19) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not ocaml-migrate-parsetree.30) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune.56) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not sexplib.60) + (and + (not sexplib.58) + (not sexplib0.2) + (not sexplib0.4) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not dune-configurator.11) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune-configurator.21) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not sexplib0.2) + (and + (not sexplib.58) + (not sexplib.60) + (not sexplib0.4) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not dune-configurator.12) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not ocaml-migrate-parsetree.17) + (and + (not dune.9) + (not ocaml-migrate-parsetree.26) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not ocaml-migrate-parsetree.24) + (not dune.43) + (not dune.7) + (not dune.44) + (not ocaml-migrate-parsetree.27) + (not dune.59) + (not dune.50) + (not ocaml-migrate-parsetree.31) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not ocaml-migrate-parsetree.20) + (not dune.40) + (not ocaml-migrate-parsetree.23) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not ocaml-migrate-parsetree.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not ocaml-migrate-parsetree.30) + (not dune.52) + (not ocaml-migrate-parsetree.19) + (not dune.38) + (not dune.27) + (not dune.20) + (not ocaml-migrate-parsetree.32) + (not dune.12) + (not dune.57) + (not dune.26) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + (not dune.51) + ) + ) + (or + (not stdio.11) + (and + (not stdio.13) + (not stdio.7) + (not stdio.9) + ) + ) + (or + (not dune.68) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune-configurator.7) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not ocamlfind.26) + (not ocamlfind.25) + ) + (or + (not camlzip.3) + (and + (not camlzip.7) + (not camlzip.5) + (not camlzip.4) + (not camlzip.6) + ) + ) + (or + (not camlzip.4) + (and + (not camlzip.7) + (not camlzip.5) + (not camlzip.3) + (not camlzip.6) + ) + ) + (or + (not camlp5.21) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.24) + ) + ) + (or + (not lwt.35) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not zarith.13) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not dune-configurator.16) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lablgtk.13) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.14) + ) + ) + (or + (not cppo.19) + (and + (not cppo.21) + (not cppo.22) + (not cppo.17) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not camlp5.22) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not camlp5.23) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not lwt.46) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not ocaml-migrate-parsetree.18) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not lwt.50) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune-configurator.9) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lwt.41) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune.66) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not lwt.30) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not zarith.14) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not dune-configurator.22) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lwt.22) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune-configurator.17) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not sexplib.58) + (and + (not sexplib0.2) + (not sexplib.60) + (not sexplib0.4) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not base.16) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not dune-configurator.23) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not cppo.22) + (and + (not cppo.21) + (not cppo.19) + (not cppo.17) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not base.20) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not ocaml-migrate-parsetree.23) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not base.22) + (and + (not base.24) + (not base.21) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not num.6) + (and + (not num.2) + (not num.3) + (not num.5) + (not num.4) + ) + ) + (or + (not ocaml-migrate-parsetree.20) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune-configurator.14) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.61) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not camlzip.5) + (and + (not camlzip.7) + (not camlzip.4) + (not camlzip.3) + (not camlzip.6) + ) + ) + (or + (not dune-configurator.5) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.64) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not lwt.39) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not camlp5.18) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not dune-configurator.2) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.62) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune.72) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not ocaml-migrate-parsetree.31) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not base.21) + (and + (not base.24) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not lwt.32) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not num.4) + (and + (not num.2) + (not num.3) + (not num.5) + (not num.6) + ) + ) + (or + (not lablgtk.11) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not dune.59) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not stdio.13) + (and + (not stdio.11) + (not stdio.7) + (not stdio.9) + ) + ) + (or + (not camlzip.7) + (and + (not camlzip.5) + (not camlzip.4) + (not camlzip.3) + (not camlzip.6) + ) + ) + (or + (not zarith.6) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not dune-configurator.8) + (and + (not dune-configurator.13) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not base.24) + (and + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not ocaml-migrate-parsetree.27) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not zarith.3) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not num.5) + (and + (not num.2) + (not num.3) + (not num.4) + (not num.6) + ) + ) + (or + (not configurator.7) + (not jbuilder.20) + ) + (or + (not camlp5.20) + (and + (not camlp5.17) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not camlp5.17) + (and + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not zarith.5) + (and + (not zarith.8) + (not zarith.12) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not ocamlbuild.6) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.4) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + (not ocamlbuild.5) + (and + (not ocamlbuild.8) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + why3.20 + why3.26 + why3.24 + why3.23 + why3.21 + why3.27 + why3.28 + why3.22 + why3.25 + ) + (or + (not lablgtk.15) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.11) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not why3.26) + (and + (not why3.20) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not lablgtk.12) + (and + (not lablgtk.10) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not ocaml-migrate-parsetree.24) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune-configurator.13) + (and + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.71) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune.65) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not zarith.12) + (and + (not zarith.8) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not zarith.8) + (and + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not cppo.21) + (and + (not cppo.22) + (not cppo.19) + (not cppo.17) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not ocplib-endian.8) + (not ocplib-endian.9) + ) + (or + (not lwt.29) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not ocamlbuild.8) + (and + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + (not dune.69) + (and + (not dune.9) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not why3.20) + (and + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not lablgtk.10) + (and + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not ocaml-migrate-parsetree.26) + (and + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not lwt.40) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.45) + (and + (not lwt.49) + (not lwt.44) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.44) + (and + (not lwt.49) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.49) + (and + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not num.3) + (and + (not num.2) + (not num.5) + (not num.4) + (not num.6) + ) + ) + (or + (not num.2) + (and + (not num.3) + (not num.5) + (not num.4) + (not num.6) + ) + ) + (or + (not jbuilder.17) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not num.2) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not jbuilder.14) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not num.3) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not lwt.49) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not menhir.40) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.44) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lwt.45) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not jbuilder.7) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not lwt.40) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lablgtk.10) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not dune.69) + ocamlfind-secondary.1 + ) + (or + (not lwt.29) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not ocplib-endian.8) + (and + base-bytes.2 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.38) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not dose3.5) + (and + cudf.5 + re.23 + extlib.14 + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlgraph.12 + ocamlgraph.9 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocplib-simplex.1) + (and + conf-autoconf.1 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.8) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not zarith.8) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not zarith.12) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not base-bytes.2) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not sqlite3.21) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not lablgtk.12) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.24) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lablgtk.15) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.20) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.9) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + (not zarith.5) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.15) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.31) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.20) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not alt-ergo-lib.4) + (and + ocplib-simplex.2 + stdlib-shims.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not configurator.7) + (and + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + stdio.11 + stdio.7 + stdio.9 + ) + (or + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.11) + ocamlfind.25 + ) + (or + ocamlfind.26 + (not num.5) + ocamlfind.25 + ) + (or + (not zarith.3) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not sqlite3.25) + (and + conf-sqlite3.1 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not base.24) + (and + sexplib0.8 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not menhir.43) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocplib-simplex.2) + (and + conf-autoconf.1 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not ocamlbuild.4) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + ocamlfind.26 + (not jbuilder.8) + ocamlfind.25 + ) + (or + (not zarith.6) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not camlzip.7) + (and + conf-zlib.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not stdio.13) + (and + base.24 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not menhir.39) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.10) + ocamlfind.25 + ) + (or + (not menhir.21) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.5) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not octavius.2) + (and + (or + topkg.8 + topkg.15 + topkg.5 + topkg.13 + topkg.6 + topkg.4 + topkg.3 + topkg.7 + topkg.11 + topkg.9 + topkg.12 + topkg.16 + topkg.14 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not ppx%5ftools.13) + ocamlfind.25 + ) + (or + (not lablgtk.11) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.33) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not num.4) + ocamlfind.25 + ) + (or + (not lwt.32) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not dot-merlin-reader.3) + (and + result.6 + yojson.18 + (or + csexp.7 + csexp.8 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.13) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not alt-ergo.4) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not base.21) + (and + sexplib0.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not alt-ergo.3) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + ocamlgraph.12 + ocamlgraph.9 + ) + ) + ) + (or + (not topkg.6) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.39) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not menhir.27) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ppx%5fast.4) + (and + ocaml-compiler-libs.2 + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.4 + jbuilder.13 + jbuilder.2 + jbuilder.6 + jbuilder.18 + jbuilder.12 + jbuilder.5 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.3 + jbuilder.19 + jbuilder.24 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + (not camlzip.5) + (and + conf-zlib.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not octavius.1) + (and + (or + topkg.8 + topkg.15 + topkg.5 + topkg.13 + topkg.6 + topkg.4 + topkg.3 + topkg.7 + topkg.11 + topkg.9 + topkg.12 + topkg.16 + topkg.14 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.15) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not num.6) + ocamlfind.25 + ) + (or + (not base.22) + (and + sexplib0.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not base.20) + (and + sexplib0.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not alt-ergo.2) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + ocamlgraph.12 + ocamlgraph.9 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.13) + ocamlfind.25 + ) + (or + (not topkg.4) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.13) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sexplib.58) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.6) + ocamlfind.25 + ) + (or + (not cppo%5focamlbuild.3) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.22) + (and + ppx%5ftools.13 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + cppo%5focamlbuild.3 + cppo%5focamlbuild.2 + cppo%5focamlbuild.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not user-setup.7) + (and + re.23 + cmdliner.14 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not yojson.18) + (and + biniou.9 + easy-format.7 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not menhir.22) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not zarith.14) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not lwt.30) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not lwt.41) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lwt.50) + (and + ocaml-syntax-shims.1 + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not sqlite3.9) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocaml-migrate-parsetree.18) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.29) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.18) + ocamlfind.25 + ) + (or + (not ppx%5ftools%5fversioned.8) + (and + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + (not lwt.46) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not cppo.19) + (and + base-bytes.2 + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not why3.24) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.24) + (and + (not why3.20) + (not why3.26) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not sqlite3.14) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.3) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lablgtk.13) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not ocplib-endian.9) + (and + base-bytes.2 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not menhir.45) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not zarith.13) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.28) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.7) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.35) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + mmap.1 + mmap.2 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not alt-ergo-lib.2) + (and + ocplib-simplex.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + ocamlfind.26 + (not camlzip.4) + ocamlfind.25 + ) + (or + (not sqlite3.16) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.12) + ocamlfind.25 + ) + (or + (not sqlite3.10) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not z3.10) + (and + conf-python-2-7.2 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not cudf.5) + (and + extlib.14 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not camlzip.3) + ocamlfind.25 + ) + (or + (not menhir.42) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.8) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not dune.68) + ocamlfind-secondary.1 + ) + (or + (not menhir.26) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.5) + ) + (or + (not sqlite3.18) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not ocaml-migrate-parsetree.17) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not octavius.4) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not why3.23) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.23) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not sqlite3.26) + (and + conf-sqlite3.1 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not menhir.41) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not re.23) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not menhir.36) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sexplib.60) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + ) + ) + (or + (not topkg.11) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocamlbuild.3) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.7) + ) + ) + (or + (not why3.21) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.21) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not cppo%5focamlbuild.2) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + cppo.21 + cppo.22 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not cppo.17) + (and + base-bytes.2 + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not camlzip.6) + (and + conf-zlib.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not octavius.3) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not sqlite3.23) + (and + conf-sqlite3.1 + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + (not stdlib-shims.2) + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + (not zarith.7) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.6) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.16) + ) + (or + (not ocp-indent.28) + (and + base-bytes.2 + cmdliner.14 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not sqlite3.19) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not base.18) + (and + sexplib0.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not menhir.25) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.32) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not why3.27) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not why3.27) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not ppx%5ftools%5fversioned.7) + (and + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + (not zarith.4) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not why3.28) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not why3.28) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.22) + (not why3.25) + ) + ) + (or + (not menhir.23) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.26) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not base.17) + (and + sexplib0.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not lwt.38) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not topkg.9) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.12) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not extlib.14) + (and + base-bytes.2 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not cppo.18) + (and + base-bytes.2 + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not why3.22) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.22) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.25) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.9) + ) + (or + (not cppo%5focamlbuild.1) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.11) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.44) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.16) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocamlbuild.7) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.3) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.15) + ) + (or + (not stdio.7) + (and + base.14 + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not sqlite3.12) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not alt-ergo-lib.1) + (and + ocplib-simplex.2 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not menhir.30) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.36) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + mmap.1 + mmap.2 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not lwt.47) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lwt.34) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + mmap.1 + mmap.2 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not menhir.37) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.25) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.19) + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + (not camlp4.22) + ) + (or + (not alt-ergo.5) + (and + ocplib-simplex.1 + (or + zarith.8 + zarith.12 + zarith.5 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + camlzip.4 + camlzip.3 + ) + ) + ) + (or + (not menhir.46) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.17) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.51) + (and + ocaml-syntax-shims.1 + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not sqlite3.22) + (and + configurator.7 + conf-sqlite3.1 + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not lwt.43) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.5) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + (not zarith.9) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.14) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not alt-ergo-lib.3) + (and + ocplib-simplex.2 + stdlib-shims.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not lwt.23) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not menhir.34) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not stdio.9) + (and + (not stdio.13) + (not stdio.11) + (not stdio.7) + ) + ) + (or + (not lablgtk.14) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not why3.25) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not why3.25) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + ) + ) + (or + (not lwt.24) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not ocamlgraph.9) + ) + (or + (not base.14) + (and + sexplib0.2 + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + (not menhirSdk.8) + dune.51 + ) + (or + (not stdio.9) + (and + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + base.16 + base.18 + base.17 + ) + ) + ) + (or + dune.69 + dune.71 + dune.72 + dune.68 + (not dune-configurator.20) + ) + (or + (not ocaml-migrate-parsetree.33) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + (not menhir.56) + (and + menhirLib.10 + menhirSdk.10 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ocaml-migrate-parsetree.28) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + (not menhirLib.5) + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + (not sexplib0.6) + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirLib.9) + dune.57 + dune.51 + ) + (or + (not ppx%5ftools%5fversioned.11) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.2) + dune.57 + dune.51 + ) + (or + (not alt-ergo.12) + (and + alt-ergo-lib.4 + alt-ergo-parsers.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + conf-perl.1 + (not camlp5.24) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not sexplib0.8) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.4) + dune.57 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + (not sexplib0.4) + dune.57 + dune.26 + dune.51 + ) + (or + (not menhir.49) + (and + menhirLib.3 + menhirSdk.3 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + (not dune-private-libs.9) + dune.57 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + (not mmap.2) + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.9) + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.32) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.10) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.3) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirLib.10) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not ocaml-syntax-shims.1) + dune.57 + dune.51 + ) + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + (not cppo.20) + jbuilder.19 + jbuilder.24 + ) + (or + conf-emacs.1 + (not tuareg.6) + ) + (or + (not ocaml-migrate-parsetree.19) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + ) + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + (not jbuilder.25) + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.1) + dune.57 + dune.51 + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + (not ppx%5fderivers.2) + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + (not menhirLib.6) + dune.52 + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.30) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + (not dune-private-libs.4) + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + (not dune-private-libs.8) + dune.56 + dune.57 + ) + (or + (not csexp.8) + (and + result.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not dune-configurator.21) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + csexp.7 + csexp.8 + ) + (or + dune.69 + dune.71 + dune.72 + dune.68 + ) + ) + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + (not ppx%5fderivers.1) + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + (not menhir.51) + (and + menhirSdk.5 + menhirLib.5 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.12) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + jbuilder.22 + jbuilder.23 + (not sexplib0.2) + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + (not dune-private-libs.7) + dune.56 + dune.57 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + (not menhirLib.1) + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + (not dune-private-libs.14) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + (not menhirLib.4) + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.54) + (and + menhirLib.8 + menhirSdk.8 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not stdio.11) + (and + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + base.21 + base.22 + base.20 + ) + ) + ) + (or + (not ocamlfind.25) + conf-m4.1 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + (not menhirLib.2) + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + (not dune-private-libs.6) + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + (not easy-format.7) + dune.68 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + (not menhir.53) + (and + menhirSdk.7 + menhirLib.7 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not merlin.46) + (and + result.6 + dot-merlin-reader.3 + yojson.18 + (or + csexp.7 + csexp.8 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + ) + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.4 + jbuilder.13 + jbuilder.6 + jbuilder.18 + (not ocaml-compiler-libs.2) + jbuilder.12 + jbuilder.5 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + (not menhirLib.3) + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.48) + (and + menhirLib.2 + menhirSdk.2 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + (not dune-private-libs.12) + dune.66 + dune.68 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.4 + jbuilder.13 + jbuilder.6 + (not ppx%5ftraverse%5fbuiltins.2) + jbuilder.18 + jbuilder.12 + jbuilder.5 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + (not dune-configurator.22) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + csexp.7 + csexp.8 + ) + (or + dune.71 + dune.72 + ) + ) + ) + (or + (not alt-ergo.10) + (and + alt-ergo-parsers.2 + alt-ergo-lib.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + (not ocamlgraph.12) + (and + stdlib-shims.2 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not base.16) + (and + sexplib0.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + (not menhir.50) + (and + menhirLib.4 + menhirSdk.4 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not dune-configurator.23) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + csexp.7 + csexp.8 + ) + (or + dune.71 + dune.72 + ) + ) + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + (not cppo.22) + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + (not dune-private-libs.5) + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.23) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + (not result.5) + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.20) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + (not menhirLib.8) + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.52) + (and + menhirSdk.6 + menhirLib.6 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + (not menhirSdk.6) + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not dune.72) + ocamlfind-secondary.1 + ) + (or + (not ocaml-migrate-parsetree.31) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + (not octavius.5) + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + (not dune-private-libs.2) + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + (not menhirLib.7) + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + (not mmap.1) + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + (not seq.4) + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + (not octavius.6) + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not alt-ergo.11) + (and + alt-ergo-parsers.3 + alt-ergo-lib.3 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + (not mccs.9) + (and + cudf.5 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + (not dune-private-libs.11) + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + (or + (not ocaml-migrate-parsetree.27) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + (not dune-private-libs.10) + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + (or + (not ocamlfind.26) + conf-m4.1 + ) + (or + (not biniou.9) + (and + easy-format.7 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + (not menhirSdk.5) + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.24) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + (not dune.71) + ocamlfind-secondary.1 + ) + (or + dune.69 + (not menhirSdk.7) + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + (not dune-private-libs.3) + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.47) + (and + menhirLib.1 + menhirSdk.1 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not csexp.7) + (and + result.6 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + ) + ) + ) + (or + dune.9 + dune.69 + (not cppo.21) + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.9 + dune.69 + (not result.6) + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.26) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + (not dune-private-libs.13) + dune.69 + dune.65 + dune.71 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + ) + (or + jbuilder.17 + jbuilder.14 + (not result.4) + jbuilder.22 + jbuilder.11 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + (not menhir.55) + (and + menhirSdk.9 + menhirLib.9 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.10) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + (not alt-ergo.9) + (and + alt-ergo-parsers.1 + alt-ergo-lib.1 + ) + ) + (or + (not menhirSdk.8) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.34) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + ) + ) + (or + (not menhir.56) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.34) + ) + ) + (or + (not menhir.46) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo.8) + (and + conf-autoconf.1 + ocplib-simplex.2 + psmt2-frontend.1 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + camlzip.4 + camlzip.3 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhirLib.5) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.37) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.9) + (and + (not menhir.40) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.2) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirSdk.4) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhir.30) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not psmt2-frontend.2) + (and + conf-autoconf.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.49) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.9) + (and + (not menhir.40) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhir.44) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.10) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirSdk.3) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirLib.10) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.34) + ) + ) + (or + (not menhir.23) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo.7) + (and + conf-autoconf.1 + ocplib-simplex.2 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + camlzip.4 + camlzip.3 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not psmt2-frontend.4) + (and + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.32) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.25) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.1) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not psmt2-frontend.1) + (and + conf-autoconf.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhirLib.6) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo.6) + (and + conf-autoconf.1 + ocplib-simplex.2 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + camlzip.4 + camlzip.3 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.36) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.51) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.41) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.1) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.4) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.54) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.26) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.42) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.2) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not psmt2-frontend.3) + (and + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.53) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.3) + (and + stdlib-shims.2 + alt-ergo-lib.3 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.28) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.3) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.45) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.1) + (and + alt-ergo-lib.1 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.29) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.48) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.2) + (and + alt-ergo-lib.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.22) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.50) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.8) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.27) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.52) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.6) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirLib.7) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.33) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.4) + (and + alt-ergo-lib.4 + stdlib-shims.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.21) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.39) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.43) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.31) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.20) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not why3.26) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.24) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.5) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirSdk.7) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhir.47) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not why3.20) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not menhir.40) + (and + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.55) + (and + (not menhir.40) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.38) + (and + (not menhir.40) + (not menhir.55) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (not (>= (+ !k655 !k654 !k653 !k652 !k651 !k648 !k647 !k646 !k644 !k641 !k639 !k637 !k636 !k634 !k633 !k632 !k631 !k630 !k629 !k628 !k627 !k626 !k623 !k622 !k620 !k618 !k615 !k614 !k613 !k612 !k610 !k609 !k608 !k606 !k605 !k604 !k602 !k600 !k598 !k597 !k596 !k595 !k594 !k593 !k592 !k591 !k589 !k587 !k586 !k585 !k584 !k582 !k579 !k577 !k576 !k575 !k574 !k571 !k570 !k567 !k566 !k564 !k561 !k560 !k559 !k557 !k556 !k555 !k554 !k553 !k552 !k549 !k548 !k547 !k545 !k543 !k542 !k541 !k540 !k537 !k536 !k533 !k530 !k528 !k527 !k526 !k524 !k523 !k522 !k521 !k520 !k517 !k516 !k515 !k511 !k510 !k509 !k508 !k507 !k505 !k503 !k502 !k501 !k500 !k498 !k497 !k495 !k494 !k492 !k491 !k489 !k488 !k483 !k482 !k481 !k480 !k479 !k478 !k477 !k476 !k474 !k473 !k472 !k470 !k469 !k467 !k466 !k465 !k463 !k461 !k458 !k457 !k456 !k455 !k454 !k453 !k451 !k450 !k447 !k446 !k445 !k444 !k442 !k441 !k440 !k438 !k437 !k436 !k435 !k434 !k432 !k431 !k430 !k428 !k427 !k425 !k424 !k423 !k422 !k420 !k418 !k417 !k415 !k414 !k412 !k411 !k410 !k407 !k406 !k405 !k402 !k401 !k400 !k396 !k395 !k394 !k393 !k392 !k391 !k389 !k388 !k387 !k385 !k384 !k383 !k382 !k381 !k378 !k377 !k376 !k375 !k372 !k369 !k368 !k365 !k362 !k361 !k360 !k358 !k354 !k352 !k351 !k350 !k349 !k347 !k346 !k344 !k343 !k342 !k340 !k339 !k338 !k337 !k336 !k334 !k332 !k331 !k330 !k327 !k323 !k322 !k321 !k319 !k317 !k316 !k314 !k313 !k312 !k311 !k310 !k308 !k305 !k303 !k302 !k299 !k298 !k296 !k294 !k292 !k288 !k287 !k285 !k284 !k283 !k282 !k281 !k279 !k276 !k275 !k273 !k272 !k268 !k262 !k260 !k259 !k258 !k257 !k256 !k255 !k254 !k253 !k252 !k249 !k248 !k247 !k246 !k245 !k244 !k243 !k242 !k241 !k240 !k239 !k238 !k237 !k236 !k233 !k232 !k231 !k229 !k227 !k222 !k221 !k220 !k219 !k218 !k217 !k214 !k213 !k211 !k210 !k208 !k207 !k206 !k205 !k204 !k203 !k202 !k200 !k198 !k197 !k195 !k194 !k193 !k192 !k191 !k190 !k189 !k186 !k185 !k184 !k181 !k180 !k179 !k177 !k176 !k175 !k167 !k166 !k165 !k164 !k163 !k161 !k157 !k154 !k152 !k150 !k149 !k148 !k147 !k146 !k145 !k143 !k136 !k134 !k133 !k131 !k129 !k127 !k126 !k123 !k122 !k121 !k120 !k117 !k116 !k115 !k114 !k113 !k112 !k111 !k108 !k107 !k106 !k104 !k103 !k102 !k100 !k99 !k97 !k96 !k93 !k91 !k90 !k89 !k88 !k87 !k85 !k84 !k83 !k82 !k80 !k78 !k77 !k74 !k72 !k70 !k67 !k66 !k63 !k60 !k59 !k58 !k57 !k53 !k52 !k51 !k48 !k43 !k42 !k41 !k39 !k38 !k36 !k35 !k32 !k31 !k29 !k27 !k25 !k24 !k22 !k20 !k16 !k15 !k13 !k10 !k9 !k7 !k2) 100000000000001)) + (not (>= (+ !k560 !k428 !k194) 100000000000001)) + (not (>= (+ !k1179 !k1178 !k1177 !k1176 !k1175 !k1172 !k1171 !k1170 !k1168 !k1164 !k1163 !k1162 !k1160 !k1159 !k1158 !k1157 !k1156 !k1155 !k1154 !k1151 !k1149 !k1147 !k1145 !k1143 !k1142 !k1140 !k1139 !k1137 !k1135 !k1133 !k1132 !k1131 !k1130 !k1129 !k1128 !k1126 !k1124 !k1123 !k1122 !k1119 !k1117 !k1116 !k1113 !k1112 !k1108 !k1105 !k1104 !k1102 !k1101 !k1100 !k1099 !k1096 !k1095 !k1093 !k1091 !k1090 !k1089 !k1084 !k1080 !k1079 !k1078 !k1077 !k1076 !k1075 !k1073 !k1072 !k1068 !k1067 !k1065 !k1063 !k1062 !k1061 !k1060 !k1058 !k1056 !k1054 !k1053 !k1051 !k1050 !k1047 !k1046 !k1045 !k1044 !k1043 !k1042 !k1041 !k1040 !k1038 !k1037 !k1035 !k1034 !k1033 !k1031 !k1029 !k1026 !k1025 !k1024 !k1023 !k1022 !k1021 !k1020 !k1017 !k1016 !k1015 !k1013 !k1012 !k1010 !k1009 !k1008 !k1007 !k1006 !k1004 !k1002 !k1000 !k999 !k998 !k997 !k995 !k993 !k992 !k990 !k988 !k987 !k984 !k983 !k980 !k979 !k975 !k974 !k972 !k971 !k970 !k968 !k967 !k966 !k965 !k964 !k961 !k960 !k959 !k956 !k953 !k950 !k947 !k946 !k945 !k940 !k938 !k937 !k936 !k935 !k934 !k933 !k932 !k931 !k929 !k928 !k927 !k926 !k923 !k922 !k919 !k916 !k915 !k913 !k911 !k909 !k908 !k907 !k906 !k905 !k904 !k900 !k899 !k895 !k892 !k888 !k886 !k885 !k884 !k883 !k882 !k880 !k877 !k876 !k875 !k871 !k865 !k864 !k863 !k862 !k861 !k860 !k859 !k858 !k857 !k854 !k853 !k852 !k851 !k850 !k849 !k848 !k847 !k845 !k844 !k842 !k840 !k836 !k835 !k834 !k833 !k832 !k831 !k828 !k826 !k824 !k823 !k822 !k821 !k820 !k819 !k817 !k815 !k813 !k812 !k811 !k808 !k807 !k804 !k803 !k801 !k800 !k792 !k791 !k790 !k788 !k785 !k781 !k779 !k778 !k777 !k776 !k768 !k767 !k766 !k764 !k762 !k760 !k759 !k756 !k755 !k753 !k752 !k751 !k748 !k747 !k746 !k744 !k743 !k742 !k740 !k739 !k737 !k734 !k732 !k731 !k730 !k728 !k725 !k724 !k720 !k718 !k715 !k714 !k711 !k708 !k707 !k706 !k705 !k701 !k700 !k699 !k692 !k691 !k690 !k687 !k686 !k683 !k681 !k679 !k677 !k676 !k673 !k669 !k668 !k666 !k663 !k657 !k641 !k622 !k615 !k614 !k610 !k596 !k566 !k549 !k541 !k537 !k510 !k508 !k497 !k483 !k444 !k396 !k394 !k377 !k358 !k342 !k334 !k322 !k316 !k298 !k287 !k275 !k241 !k214 !k211 !k179 !k116 !k114 !k85 !k84 !k82 !k38 !k31 !k22 !k7) 100000000000001)) + (not (>= (+ !k1155 !k1123 !k937 !k860 !k832 !k766 !k668 !k179) 100000000000001)) + (not (>= (+ !k1231 !k1230 !k1229 !k1228 !k1227 !k1226 !k1225 !k1224 !k1223 !k1222 !k1221 !k1220 !k1219 !k1218 !k1217 !k1216 !k1215 !k1214 !k1213 !k1212 !k1211 !k1210 !k1209 !k1208 !k1207 !k1206 !k613 !k595 !k582 !k567 !k560 !k536 !k494 !k405 !k402 !k369 !k330 !k305 !k299 !k294 !k249 !k246 !k206 !k198 !k193 !k177 !k163 !k147 !k123 !k89 !k80 !k74) 100000000000001)) +) +)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + +(check-sat) +(exit) +;;expected answer: unknown diff --git a/examples/optim-examples/opam-optim/original-no-optim-preprocessed.smt2 b/examples/optim-examples/opam-optim/original-no-optim-preprocessed.smt2 new file mode 100644 index 000000000..bde3e68a7 --- /dev/null +++ b/examples/optim-examples/opam-optim/original-no-optim-preprocessed.smt2 @@ -0,0 +1,23479 @@ +(set-logic QF_LIA) +(set-info :status unknown) + +;; Vars declarations: +;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(declare-fun %3dopam-invariant.1 () Bool) +(declare-fun ocamlfind.26 () Bool) +(declare-fun ocamlfind.25 () Bool) +(declare-fun ocamlfind.23 () Bool) +(declare-fun ocamlfind.22 () Bool) +(declare-fun ocamlfind.21 () Bool) +(declare-fun ocamlfind.18 () Bool) +(declare-fun ocamlfind.17 () Bool) +(declare-fun ocamlfind.15 () Bool) +(declare-fun ocamlfind.14 () Bool) +(declare-fun ocamlfind.13 () Bool) +(declare-fun ocamlfind.12 () Bool) +(declare-fun ocamlfind.11 () Bool) +(declare-fun ocamlfind.10 () Bool) +(declare-fun ocamlfind.7 () Bool) +(declare-fun ocamlfind.6 () Bool) +(declare-fun ocamlfind.5 () Bool) +(declare-fun ocamlfind.4 () Bool) +(declare-fun ocamlfind.3 () Bool) +(declare-fun ocamlfind.24 () Bool) +(declare-fun conf-m4.1 () Bool) +(declare-fun jbuilder.25 () Bool) +(declare-fun dune.72 () Bool) +(declare-fun dune.71 () Bool) +(declare-fun dune.69 () Bool) +(declare-fun dune.68 () Bool) +(declare-fun dune.66 () Bool) +(declare-fun dune.65 () Bool) +(declare-fun dune.64 () Bool) +(declare-fun dune.62 () Bool) +(declare-fun dune.61 () Bool) +(declare-fun dune.59 () Bool) +(declare-fun dune.57 () Bool) +(declare-fun dune.56 () Bool) +(declare-fun dune.54 () Bool) +(declare-fun dune.52 () Bool) +(declare-fun dune.50 () Bool) +(declare-fun dune.48 () Bool) +(declare-fun dune.44 () Bool) +(declare-fun dune.43 () Bool) +(declare-fun dune.42 () Bool) +(declare-fun dune.41 () Bool) +(declare-fun dune.40 () Bool) +(declare-fun dune.38 () Bool) +(declare-fun dune.36 () Bool) +(declare-fun dune.35 () Bool) +(declare-fun dune.34 () Bool) +(declare-fun dune.33 () Bool) +(declare-fun dune.31 () Bool) +(declare-fun dune.30 () Bool) +(declare-fun dune.29 () Bool) +(declare-fun dune.27 () Bool) +(declare-fun dune.26 () Bool) +(declare-fun dune.25 () Bool) +(declare-fun dune.24 () Bool) +(declare-fun dune.22 () Bool) +(declare-fun dune.21 () Bool) +(declare-fun dune.20 () Bool) +(declare-fun dune.19 () Bool) +(declare-fun dune.17 () Bool) +(declare-fun dune.16 () Bool) +(declare-fun dune.14 () Bool) +(declare-fun dune.12 () Bool) +(declare-fun dune.10 () Bool) +(declare-fun dune.9 () Bool) +(declare-fun dune.7 () Bool) +(declare-fun dune.6 () Bool) +(declare-fun dune.4 () Bool) +(declare-fun dune.3 () Bool) +(declare-fun dune.51 () Bool) +(declare-fun base-threads.1 () Bool) +(declare-fun base-unix.1 () Bool) +(declare-fun ocaml.60 () Bool) +(declare-fun ocamlfind-secondary.1 () Bool) +(declare-fun num.6 () Bool) +(declare-fun num.5 () Bool) +(declare-fun num.4 () Bool) +(declare-fun num.3 () Bool) +(declare-fun num.2 () Bool) +(declare-fun num.1 () Bool) +(declare-fun base-num.1 () Bool) +(declare-fun menhir.56 () Bool) +(declare-fun menhir.55 () Bool) +(declare-fun menhir.54 () Bool) +(declare-fun menhir.53 () Bool) +(declare-fun menhir.52 () Bool) +(declare-fun menhir.51 () Bool) +(declare-fun menhir.50 () Bool) +(declare-fun menhir.49 () Bool) +(declare-fun menhir.48 () Bool) +(declare-fun menhir.47 () Bool) +(declare-fun menhir.46 () Bool) +(declare-fun menhir.45 () Bool) +(declare-fun menhir.44 () Bool) +(declare-fun menhir.43 () Bool) +(declare-fun menhir.42 () Bool) +(declare-fun menhir.41 () Bool) +(declare-fun menhir.40 () Bool) +(declare-fun menhir.39 () Bool) +(declare-fun menhir.38 () Bool) +(declare-fun menhir.37 () Bool) +(declare-fun menhir.36 () Bool) +(declare-fun menhir.34 () Bool) +(declare-fun menhir.33 () Bool) +(declare-fun menhir.32 () Bool) +(declare-fun menhir.31 () Bool) +(declare-fun menhir.30 () Bool) +(declare-fun menhir.29 () Bool) +(declare-fun menhir.28 () Bool) +(declare-fun menhir.27 () Bool) +(declare-fun menhir.26 () Bool) +(declare-fun menhir.25 () Bool) +(declare-fun menhir.24 () Bool) +(declare-fun menhir.23 () Bool) +(declare-fun menhir.22 () Bool) +(declare-fun menhir.21 () Bool) +(declare-fun menhir.20 () Bool) +(declare-fun menhir.19 () Bool) +(declare-fun menhir.18 () Bool) +(declare-fun menhir.17 () Bool) +(declare-fun menhir.16 () Bool) +(declare-fun menhir.15 () Bool) +(declare-fun menhir.14 () Bool) +(declare-fun menhir.13 () Bool) +(declare-fun menhir.12 () Bool) +(declare-fun menhir.11 () Bool) +(declare-fun menhir.8 () Bool) +(declare-fun menhir.6 () Bool) +(declare-fun menhir.4 () Bool) +(declare-fun menhir.2 () Bool) +(declare-fun menhir.3 () Bool) +(declare-fun camlp5.24 () Bool) +(declare-fun camlp5.23 () Bool) +(declare-fun camlp5.22 () Bool) +(declare-fun camlp5.21 () Bool) +(declare-fun camlp5.20 () Bool) +(declare-fun camlp5.19 () Bool) +(declare-fun camlp5.18 () Bool) +(declare-fun camlp5.17 () Bool) +(declare-fun camlp5.16 () Bool) +(declare-fun camlp5.15 () Bool) +(declare-fun camlp5.14 () Bool) +(declare-fun camlp5.13 () Bool) +(declare-fun camlp5.12 () Bool) +(declare-fun camlp5.11 () Bool) +(declare-fun camlp5.10 () Bool) +(declare-fun camlp5.9 () Bool) +(declare-fun camlp5.8 () Bool) +(declare-fun camlp5.7 () Bool) +(declare-fun camlp5.6 () Bool) +(declare-fun camlp5.5 () Bool) +(declare-fun camlp5.3 () Bool) +(declare-fun camlp5.2 () Bool) +(declare-fun camlp5.4 () Bool) +(declare-fun why3.28 () Bool) +(declare-fun why3.27 () Bool) +(declare-fun why3.26 () Bool) +(declare-fun why3.25 () Bool) +(declare-fun why3.24 () Bool) +(declare-fun why3.23 () Bool) +(declare-fun why3.22 () Bool) +(declare-fun why3.21 () Bool) +(declare-fun why3.20 () Bool) +(declare-fun why3.19 () Bool) +(declare-fun why3.18 () Bool) +(declare-fun why3.17 () Bool) +(declare-fun why3.16 () Bool) +(declare-fun why3.15 () Bool) +(declare-fun why3.14 () Bool) +(declare-fun why3.13 () Bool) +(declare-fun why3.12 () Bool) +(declare-fun why3.11 () Bool) +(declare-fun why3.10 () Bool) +(declare-fun why3.8 () Bool) +(declare-fun why3.6 () Bool) +(declare-fun why3.5 () Bool) +(declare-fun why3.4 () Bool) +(declare-fun why3.3 () Bool) +(declare-fun why3.2 () Bool) +(declare-fun why3.1 () Bool) +(declare-fun why3.7 () Bool) +(declare-fun camlzip.7 () Bool) +(declare-fun camlzip.6 () Bool) +(declare-fun camlzip.5 () Bool) +(declare-fun camlzip.4 () Bool) +(declare-fun camlzip.3 () Bool) +(declare-fun camlzip.2 () Bool) +(declare-fun camlzip.1 () Bool) +(declare-fun conf-gtksourceview.1 () Bool) +(declare-fun lablgtk.15 () Bool) +(declare-fun lablgtk.14 () Bool) +(declare-fun lablgtk.13 () Bool) +(declare-fun lablgtk.12 () Bool) +(declare-fun lablgtk.11 () Bool) +(declare-fun lablgtk.10 () Bool) +(declare-fun lablgtk.9 () Bool) +(declare-fun lablgtk.8 () Bool) +(declare-fun lablgtk.7 () Bool) +(declare-fun lablgtk.6 () Bool) +(declare-fun lablgtk.3 () Bool) +(declare-fun ocamlgraph.12 () Bool) +(declare-fun ocamlgraph.9 () Bool) +(declare-fun ocamlgraph.8 () Bool) +(declare-fun ocamlgraph.7 () Bool) +(declare-fun ocamlgraph.6 () Bool) +(declare-fun ocamlgraph.5 () Bool) +(declare-fun ocamlgraph.4 () Bool) +(declare-fun why3-base.1 () Bool) +(declare-fun zarith.14 () Bool) +(declare-fun zarith.13 () Bool) +(declare-fun zarith.12 () Bool) +(declare-fun zarith.9 () Bool) +(declare-fun zarith.8 () Bool) +(declare-fun zarith.7 () Bool) +(declare-fun zarith.6 () Bool) +(declare-fun zarith.5 () Bool) +(declare-fun zarith.4 () Bool) +(declare-fun zarith.3 () Bool) +(declare-fun zarith.2 () Bool) +(declare-fun zarith.1 () Bool) +(declare-fun camlp4.33 () Bool) +(declare-fun camlp4.32 () Bool) +(declare-fun camlp4.31 () Bool) +(declare-fun camlp4.29 () Bool) +(declare-fun camlp4.28 () Bool) +(declare-fun camlp4.27 () Bool) +(declare-fun camlp4.26 () Bool) +(declare-fun camlp4.25 () Bool) +(declare-fun camlp4.24 () Bool) +(declare-fun camlp4.23 () Bool) +(declare-fun camlp4.22 () Bool) +(declare-fun camlp4.21 () Bool) +(declare-fun camlp4.20 () Bool) +(declare-fun camlp4.19 () Bool) +(declare-fun camlp4.18 () Bool) +(declare-fun camlp4.17 () Bool) +(declare-fun camlp4.16 () Bool) +(declare-fun camlp4.15 () Bool) +(declare-fun camlp4.14 () Bool) +(declare-fun camlp4.13 () Bool) +(declare-fun camlp4.11 () Bool) +(declare-fun camlp4.10 () Bool) +(declare-fun camlp4.9 () Bool) +(declare-fun camlp4.8 () Bool) +(declare-fun camlp4.7 () Bool) +(declare-fun camlp4.6 () Bool) +(declare-fun camlp4.5 () Bool) +(declare-fun camlp4.3 () Bool) +(declare-fun camlp4.2 () Bool) +(declare-fun camlp4.30 () Bool) +(declare-fun ocamlbuild.8 () Bool) +(declare-fun ocamlbuild.7 () Bool) +(declare-fun ocamlbuild.6 () Bool) +(declare-fun ocamlbuild.5 () Bool) +(declare-fun ocamlbuild.4 () Bool) +(declare-fun ocamlbuild.3 () Bool) +(declare-fun ocamlbuild.2 () Bool) +(declare-fun ocamlbuild.1 () Bool) +(declare-fun lwt.51 () Bool) +(declare-fun lwt.50 () Bool) +(declare-fun lwt.49 () Bool) +(declare-fun lwt.47 () Bool) +(declare-fun lwt.46 () Bool) +(declare-fun lwt.45 () Bool) +(declare-fun lwt.44 () Bool) +(declare-fun lwt.43 () Bool) +(declare-fun lwt.41 () Bool) +(declare-fun lwt.40 () Bool) +(declare-fun lwt.39 () Bool) +(declare-fun lwt.38 () Bool) +(declare-fun lwt.36 () Bool) +(declare-fun lwt.35 () Bool) +(declare-fun lwt.34 () Bool) +(declare-fun lwt.32 () Bool) +(declare-fun lwt.30 () Bool) +(declare-fun lwt.29 () Bool) +(declare-fun lwt.26 () Bool) +(declare-fun lwt.25 () Bool) +(declare-fun lwt.23 () Bool) +(declare-fun lwt.22 () Bool) +(declare-fun lwt.21 () Bool) +(declare-fun lwt.20 () Bool) +(declare-fun lwt.19 () Bool) +(declare-fun lwt.18 () Bool) +(declare-fun lwt.17 () Bool) +(declare-fun lwt.16 () Bool) +(declare-fun lwt.14 () Bool) +(declare-fun lwt.13 () Bool) +(declare-fun lwt.12 () Bool) +(declare-fun lwt.11 () Bool) +(declare-fun lwt.10 () Bool) +(declare-fun lwt.9 () Bool) +(declare-fun lwt.8 () Bool) +(declare-fun lwt.7 () Bool) +(declare-fun lwt.6 () Bool) +(declare-fun lwt.4 () Bool) +(declare-fun lwt.24 () Bool) +(declare-fun cppo.22 () Bool) +(declare-fun cppo.21 () Bool) +(declare-fun cppo.20 () Bool) +(declare-fun cppo.19 () Bool) +(declare-fun cppo.18 () Bool) +(declare-fun cppo.17 () Bool) +(declare-fun cppo.16 () Bool) +(declare-fun cppo.15 () Bool) +(declare-fun cppo.14 () Bool) +(declare-fun cppo.13 () Bool) +(declare-fun cppo.12 () Bool) +(declare-fun cppo.11 () Bool) +(declare-fun cppo.10 () Bool) +(declare-fun cppo.8 () Bool) +(declare-fun cppo.7 () Bool) +(declare-fun cppo.6 () Bool) +(declare-fun cppo.5 () Bool) +(declare-fun jbuilder.24 () Bool) +(declare-fun jbuilder.23 () Bool) +(declare-fun jbuilder.22 () Bool) +(declare-fun jbuilder.21 () Bool) +(declare-fun jbuilder.20 () Bool) +(declare-fun jbuilder.19 () Bool) +(declare-fun jbuilder.18 () Bool) +(declare-fun jbuilder.17 () Bool) +(declare-fun jbuilder.16 () Bool) +(declare-fun jbuilder.15 () Bool) +(declare-fun jbuilder.14 () Bool) +(declare-fun ocaml-migrate-parsetree.33 () Bool) +(declare-fun ocaml-migrate-parsetree.32 () Bool) +(declare-fun ocaml-migrate-parsetree.31 () Bool) +(declare-fun ocaml-migrate-parsetree.30 () Bool) +(declare-fun ocaml-migrate-parsetree.28 () Bool) +(declare-fun ocaml-migrate-parsetree.27 () Bool) +(declare-fun ocaml-migrate-parsetree.26 () Bool) +(declare-fun ocaml-migrate-parsetree.24 () Bool) +(declare-fun ocaml-migrate-parsetree.23 () Bool) +(declare-fun ocaml-migrate-parsetree.22 () Bool) +(declare-fun ocaml-migrate-parsetree.21 () Bool) +(declare-fun ocaml-migrate-parsetree.20 () Bool) +(declare-fun ocaml-migrate-parsetree.19 () Bool) +(declare-fun ocaml-migrate-parsetree.18 () Bool) +(declare-fun ocaml-migrate-parsetree.17 () Bool) +(declare-fun ocaml-migrate-parsetree.16 () Bool) +(declare-fun ocaml-migrate-parsetree.15 () Bool) +(declare-fun ocaml-migrate-parsetree.14 () Bool) +(declare-fun ocaml-migrate-parsetree.13 () Bool) +(declare-fun ocaml-migrate-parsetree.12 () Bool) +(declare-fun ocaml-migrate-parsetree.11 () Bool) +(declare-fun ocaml-migrate-parsetree.10 () Bool) +(declare-fun ocaml-migrate-parsetree.9 () Bool) +(declare-fun ocaml-migrate-parsetree.8 () Bool) +(declare-fun ocaml-migrate-parsetree.6 () Bool) +(declare-fun ocaml-migrate-parsetree.4 () Bool) +(declare-fun ocaml-migrate-parsetree.3 () Bool) +(declare-fun ppx%5ftools%5fversioned.12 () Bool) +(declare-fun ppx%5ftools%5fversioned.11 () Bool) +(declare-fun ppx%5ftools%5fversioned.10 () Bool) +(declare-fun ppx%5ftools%5fversioned.9 () Bool) +(declare-fun ppx%5ftools%5fversioned.8 () Bool) +(declare-fun ppx%5ftools%5fversioned.7 () Bool) +(declare-fun ppx%5ftools%5fversioned.6 () Bool) +(declare-fun ppx%5ftools%5fversioned.5 () Bool) +(declare-fun result.6 () Bool) +(declare-fun result.5 () Bool) +(declare-fun result.4 () Bool) +(declare-fun result.3 () Bool) +(declare-fun result.2 () Bool) +(declare-fun result.1 () Bool) +(declare-fun ocaml-config.1 () Bool) +(declare-fun ocaml-config.2 () Bool) +(declare-fun dune-configurator.23 () Bool) +(declare-fun dune-configurator.22 () Bool) +(declare-fun dune-configurator.21 () Bool) +(declare-fun dune-configurator.20 () Bool) +(declare-fun dune-configurator.18 () Bool) +(declare-fun dune-configurator.17 () Bool) +(declare-fun dune-configurator.16 () Bool) +(declare-fun dune-configurator.14 () Bool) +(declare-fun dune-configurator.13 () Bool) +(declare-fun dune-configurator.12 () Bool) +(declare-fun dune-configurator.11 () Bool) +(declare-fun dune-configurator.9 () Bool) +(declare-fun dune-configurator.8 () Bool) +(declare-fun dune-configurator.7 () Bool) +(declare-fun dune-configurator.6 () Bool) +(declare-fun dune-configurator.5 () Bool) +(declare-fun dune-configurator.3 () Bool) +(declare-fun dune-configurator.2 () Bool) +(declare-fun dune-configurator.10 () Bool) +(declare-fun dune-private-libs.7 () Bool) +(declare-fun ppx%5ftools.19 () Bool) +(declare-fun ppx%5ftools.18 () Bool) +(declare-fun ppx%5ftools.17 () Bool) +(declare-fun ppx%5ftools.16 () Bool) +(declare-fun ppx%5ftools.15 () Bool) +(declare-fun ppx%5ftools.14 () Bool) +(declare-fun ppx%5ftools.13 () Bool) +(declare-fun ppx%5ftools.12 () Bool) +(declare-fun ppx%5ftools.11 () Bool) +(declare-fun ppx%5ftools.10 () Bool) +(declare-fun ppx%5ftools.9 () Bool) +(declare-fun ppx%5ftools.8 () Bool) +(declare-fun ppx%5ftools.7 () Bool) +(declare-fun ppx%5ftools.5 () Bool) +(declare-fun ppx%5ftools.3 () Bool) +(declare-fun ppx%5ftools.2 () Bool) +(declare-fun ppx%5ftools.1 () Bool) +(declare-fun ppx%5ftools.4 () Bool) +(declare-fun why3-base.13 () Bool) +(declare-fun why3-base.12 () Bool) +(declare-fun why3-base.11 () Bool) +(declare-fun why3-base.10 () Bool) +(declare-fun why3-base.8 () Bool) +(declare-fun why3-base.7 () Bool) +(declare-fun why3-base.6 () Bool) +(declare-fun why3-base.5 () Bool) +(declare-fun why3-base.4 () Bool) +(declare-fun why3-base.3 () Bool) +(declare-fun why3-base.2 () Bool) +(declare-fun base.25 () Bool) +(declare-fun base.24 () Bool) +(declare-fun base.22 () Bool) +(declare-fun base.21 () Bool) +(declare-fun base.20 () Bool) +(declare-fun base.18 () Bool) +(declare-fun base.17 () Bool) +(declare-fun base.16 () Bool) +(declare-fun base.13 () Bool) +(declare-fun base.11 () Bool) +(declare-fun base.9 () Bool) +(declare-fun base.8 () Bool) +(declare-fun base.7 () Bool) +(declare-fun base.6 () Bool) +(declare-fun base.5 () Bool) +(declare-fun base.14 () Bool) +(declare-fun sexplib0.2 () Bool) +(declare-fun coq.1 () Bool) +(declare-fun cppo.4 () Bool) +(declare-fun cppo.3 () Bool) +(declare-fun cppo.2 () Bool) +(declare-fun cppo.1 () Bool) +(declare-fun ppx%5fcore.14 () Bool) +(declare-fun ppx%5fcore.13 () Bool) +(declare-fun ppx%5fcore.12 () Bool) +(declare-fun jbuilder.13 () Bool) +(declare-fun jbuilder.12 () Bool) +(declare-fun jbuilder.11 () Bool) +(declare-fun jbuilder.10 () Bool) +(declare-fun jbuilder.9 () Bool) +(declare-fun jbuilder.8 () Bool) +(declare-fun jbuilder.7 () Bool) +(declare-fun jbuilder.6 () Bool) +(declare-fun jbuilder.5 () Bool) +(declare-fun jbuilder.4 () Bool) +(declare-fun ocaml-compiler-libs.2 () Bool) +(declare-fun ppx%5fast.4 () Bool) +(declare-fun ppx%5fast.3 () Bool) +(declare-fun ppx%5fast.2 () Bool) +(declare-fun ppx%5ftraverse%5fbuiltins.2 () Bool) +(declare-fun stdio.3 () Bool) +(declare-fun stdio.2 () Bool) +(declare-fun menhirSdk.10 () Bool) +(declare-fun menhirSdk.9 () Bool) +(declare-fun menhirSdk.7 () Bool) +(declare-fun menhirSdk.6 () Bool) +(declare-fun menhirSdk.5 () Bool) +(declare-fun menhirSdk.4 () Bool) +(declare-fun menhirSdk.3 () Bool) +(declare-fun menhirSdk.2 () Bool) +(declare-fun menhirSdk.1 () Bool) +(declare-fun menhirSdk.8 () Bool) +(declare-fun conf-gtk2.1 () Bool) +(declare-fun conf-which.1 () Bool) +(declare-fun stdio.13 () Bool) +(declare-fun stdio.11 () Bool) +(declare-fun stdio.7 () Bool) +(declare-fun stdio.5 () Bool) +(declare-fun stdio.9 () Bool) +(declare-fun alt-ergo-lib.4 () Bool) +(declare-fun alt-ergo-lib.2 () Bool) +(declare-fun alt-ergo-lib.1 () Bool) +(declare-fun alt-ergo-lib.3 () Bool) +(declare-fun ocplib-simplex.2 () Bool) +(declare-fun seq.5 () Bool) +(declare-fun seq.4 () Bool) +(declare-fun seq.3 () Bool) +(declare-fun seq.2 () Bool) +(declare-fun seq.1 () Bool) +(declare-fun stdlib-shims.2 () Bool) +(declare-fun topkg.16 () Bool) +(declare-fun topkg.15 () Bool) +(declare-fun topkg.13 () Bool) +(declare-fun topkg.12 () Bool) +(declare-fun topkg.11 () Bool) +(declare-fun topkg.9 () Bool) +(declare-fun topkg.8 () Bool) +(declare-fun topkg.7 () Bool) +(declare-fun topkg.6 () Bool) +(declare-fun topkg.5 () Bool) +(declare-fun topkg.4 () Bool) +(declare-fun topkg.3 () Bool) +(declare-fun topkg.14 () Bool) +(declare-fun conf-gmp.3 () Bool) +(declare-fun conf-gmp.2 () Bool) +(declare-fun conf-gmp.1 () Bool) +(declare-fun conf-perl.1 () Bool) +(declare-fun ppx%5fderivers.2 () Bool) +(declare-fun ppx%5fderivers.1 () Bool) +(declare-fun jbuilder.3 () Bool) +(declare-fun jbuilder.2 () Bool) +(declare-fun menhirLib.10 () Bool) +(declare-fun configurator.7 () Bool) +(declare-fun configurator.5 () Bool) +(declare-fun configurator.2 () Bool) +(declare-fun configurator.3 () Bool) +(declare-fun ppx%5fbase.2 () Bool) +(declare-fun ppx%5fdriver.16 () Bool) +(declare-fun ppx%5fdriver.15 () Bool) +(declare-fun ppx%5fdriver.14 () Bool) +(declare-fun mmap.2 () Bool) +(declare-fun ocplib-endian.9 () Bool) +(declare-fun ocplib-endian.8 () Bool) +(declare-fun ocplib-endian.7 () Bool) +(declare-fun ocplib-endian.6 () Bool) +(declare-fun ocplib-endian.4 () Bool) +(declare-fun ocplib-endian.3 () Bool) +(declare-fun ocplib-endian.2 () Bool) +(declare-fun ocplib-endian.1 () Bool) +(declare-fun sqlite3.26 () Bool) +(declare-fun sqlite3.25 () Bool) +(declare-fun sqlite3.23 () Bool) +(declare-fun sqlite3.21 () Bool) +(declare-fun sqlite3.20 () Bool) +(declare-fun sqlite3.19 () Bool) +(declare-fun sqlite3.18 () Bool) +(declare-fun sqlite3.17 () Bool) +(declare-fun sqlite3.16 () Bool) +(declare-fun sqlite3.15 () Bool) +(declare-fun sqlite3.14 () Bool) +(declare-fun sqlite3.13 () Bool) +(declare-fun sqlite3.12 () Bool) +(declare-fun sqlite3.11 () Bool) +(declare-fun sqlite3.10 () Bool) +(declare-fun sqlite3.9 () Bool) +(declare-fun sqlite3.8 () Bool) +(declare-fun sqlite3.22 () Bool) +(declare-fun conf-sqlite3.1 () Bool) +(declare-fun ocaml-syntax-shims.1 () Bool) +(declare-fun conf-pkg-config.4 () Bool) +(declare-fun conf-pkg-config.3 () Bool) +(declare-fun conf-pkg-config.2 () Bool) +(declare-fun conf-pkg-config.1 () Bool) +(declare-fun alt-ergo.7 () Bool) +(declare-fun alt-ergo.6 () Bool) +(declare-fun alt-ergo.5 () Bool) +(declare-fun alt-ergo.4 () Bool) +(declare-fun alt-ergo.3 () Bool) +(declare-fun alt-ergo.2 () Bool) +(declare-fun alt-ergo.12 () Bool) +(declare-fun alt-ergo.11 () Bool) +(declare-fun alt-ergo.10 () Bool) +(declare-fun alt-ergo.9 () Bool) +(declare-fun alt-ergo.8 () Bool) +(declare-fun conf-autoconf.1 () Bool) +(declare-fun psmt2-frontend.1 () Bool) +(declare-fun sexplib0.8 () Bool) +(declare-fun sexplib0.6 () Bool) +(declare-fun sexplib0.4 () Bool) +(declare-fun sexplib.60 () Bool) +(declare-fun sexplib.58 () Bool) +(declare-fun sexplib.56 () Bool) +(declare-fun sexplib.55 () Bool) +(declare-fun sexplib.57 () Bool) +(declare-fun ppx%5foptcomp.12 () Bool) +(declare-fun menhirLib.9 () Bool) +(declare-fun menhirLib.8 () Bool) +(declare-fun menhirLib.7 () Bool) +(declare-fun menhirLib.6 () Bool) +(declare-fun menhirLib.4 () Bool) +(declare-fun menhirLib.3 () Bool) +(declare-fun menhirLib.2 () Bool) +(declare-fun menhirLib.1 () Bool) +(declare-fun menhirLib.5 () Bool) +(declare-fun ocplib-simplex.1 () Bool) +(declare-fun base-bytes.2 () Bool) +(declare-fun base-bytes.1 () Bool) +(declare-fun conf-ncurses.1 () Bool) +(declare-fun base-no-ppx.1 () Bool) +(declare-fun ocaml-secondary-compiler.2 () Bool) +(declare-fun ocaml-secondary-compiler.1 () Bool) +(declare-fun mmap.1 () Bool) +(declare-fun dune-private-libs.3 () Bool) +(declare-fun alt-ergo-parsers.4 () Bool) +(declare-fun optcomp.3 () Bool) +(declare-fun psmt2-frontend.4 () Bool) +(declare-fun psmt2-frontend.3 () Bool) +(declare-fun psmt2-frontend.2 () Bool) +(declare-fun dune-private-libs.14 () Bool) +(declare-fun dune-private-libs.13 () Bool) +(declare-fun dune-private-libs.12 () Bool) +(declare-fun dune-private-libs.11 () Bool) +(declare-fun dune-private-libs.10 () Bool) +(declare-fun dune-private-libs.8 () Bool) +(declare-fun dune-private-libs.6 () Bool) +(declare-fun dune-private-libs.5 () Bool) +(declare-fun dune-private-libs.4 () Bool) +(declare-fun dune-private-libs.2 () Bool) +(declare-fun dune-private-libs.9 () Bool) +(declare-fun base-ocamlbuild.1 () Bool) +(declare-fun cppo%5focamlbuild.3 () Bool) +(declare-fun cppo%5focamlbuild.2 () Bool) +(declare-fun cppo%5focamlbuild.1 () Bool) +(declare-fun extlib.14 () Bool) +(declare-fun conf-emacs.1 () Bool) +(declare-fun tuareg.6 () Bool) +(declare-fun cmdliner.14 () Bool) +(declare-fun ocp-indent.28 () Bool) +(declare-fun ocaml-base-compiler.36 () Bool) +(declare-fun octavius.6 () Bool) +(declare-fun octavius.5 () Bool) +(declare-fun octavius.4 () Bool) +(declare-fun octavius.2 () Bool) +(declare-fun octavius.1 () Bool) +(declare-fun octavius.3 () Bool) +(declare-fun conf-zlib.1 () Bool) +(declare-fun xenbigarray.1 () Bool) +(declare-fun csexp.7 () Bool) +(declare-fun csexp.8 () Bool) +(declare-fun opam-file-format.11 () Bool) +(declare-fun ocaml-options-vanilla.1 () Bool) +(declare-fun re.23 () Bool) +(declare-fun cudf.5 () Bool) +(declare-fun conf-python-2-7.2 () Bool) +(declare-fun z3.10 () Bool) +(declare-fun easy-format.7 () Bool) +(declare-fun alt-ergo-parsers.2 () Bool) +(declare-fun alt-ergo-parsers.1 () Bool) +(declare-fun alt-ergo-parsers.3 () Bool) +(declare-fun dot-merlin-reader.3 () Bool) +(declare-fun yojson.18 () Bool) +(declare-fun merlin.46 () Bool) +(declare-fun ppx%5fmetaquot.2 () Bool) +(declare-fun ppx%5ftype%5fconv.14 () Bool) +(declare-fun ppx%5ftype%5fconv.13 () Bool) +(declare-fun ppx%5fenumerate.10 () Bool) +(declare-fun biniou.9 () Bool) +(declare-fun user-setup.7 () Bool) +(declare-fun base-implicits.1 () Bool) +(declare-fun ppx%5fsexp%5fconv.14 () Bool) +(declare-fun base-bigarray.1 () Bool) +(declare-fun mccs.9 () Bool) +(declare-fun ppx%5fjs%5fstyle.2 () Bool) +(declare-fun ppx%5fcompare.11 () Bool) +(declare-fun ppx%5fhash.2 () Bool) +(declare-fun dose3.5 () Bool) +(declare-fun base-metaocaml-ocamlfind.1 () Bool) +(declare-fun conf-findutils.1 () Bool) + +(assert + +;; Definitions: +;;;;;;;;;;;;;;;;; +(let ((!k2 (ite dune.51 1 +0))) + +(let ((!k7 (ite ocamlgraph.9 1 +0))) + +(let ((!k9 (ite lwt.24 1 +0))) + +(let ((!k10 (ite ocaml-config.2 1 +0))) + +(let ((!k13 (ite dune-configurator.10 1 +0))) + +(let ((!k15 (ite why3.25 1 +0))) + +(let ((!k16 (ite base.14 1 +0))) + +(let ((!k20 (ite menhirSdk.8 1 +0))) + +(let ((!k22 (ite lablgtk.14 1 +0))) + +(let ((!k24 (ite stdio.9 1 +0))) + +(let ((!k25 (ite menhir.34 1 +0))) + +(let ((!k27 (ite dune-configurator.20 1 +0))) + +(let ((!k29 (ite lwt.23 1 +0))) + +(let ((!k31 (ite alt-ergo-lib.3 1 +0))) + +(let ((!k32 (ite topkg.14 1 +0))) + +(let ((!k35 (ite zarith.9 1 +0))) + +(let ((!k36 (ite ocaml-migrate-parsetree.33 1 +0))) + +(let ((!k38 (ite jbuilder.24 1 +0))) + +(let ((!k39 (ite menhir.56 0 +1))) + +(let ((!k41 (ite ppx%5ftools%5fversioned.5 1 +0))) + +(let ((!k42 (ite lwt.43 1 +0))) + +(let ((!k43 (ite sqlite3.22 1 +0))) + +(let ((!k48 (ite lwt.51 1 +0))) + +(let ((!k51 (ite sqlite3.17 1 +0))) + +(let ((!k52 (ite menhir.46 1 +0))) + +(let ((!k53 (ite alt-ergo.8 1 +0))) + +(let ((!k57 (ite ocaml-migrate-parsetree.28 1 +0))) + +(let ((!k58 (ite menhirLib.5 1 +0))) + +(let ((!k59 (ite alt-ergo.5 1 +0))) + +(let ((!k60 (ite camlp4.22 1 +0))) + +(let ((!k63 (ite jbuilder.19 1 +0))) + +(let ((!k66 (ite lwt.25 1 +0))) + +(let ((!k67 (ite dune.26 1 +0))) + +(let ((!k70 (ite dune.57 1 +0))) + +(let ((!k72 (ite menhir.37 1 +0))) + +(let ((!k74 (ite ocamlfind-secondary.1 0 +1))) + +(let ((!k77 (ite lwt.34 1 +0))) + +(let ((!k78 (ite lwt.47 1 +0))) + +(let ((!k80 (ite conf-m4.1 0 +1))) + +(let ((!k82 (ite sexplib0.6 1 +0))) + +(let ((!k83 (ite dune-configurator.6 1 +0))) + +(let ((!k84 (ite menhirLib.9 1 +0))) + +(let ((!k85 (ite ppx%5ftools%5fversioned.11 1 +0))) + +(let ((!k87 (ite menhirSdk.2 1 +0))) + +(let ((!k88 (ite lwt.36 1 +0))) + +(let ((!k89 (ite conf-gtk2.1 0 +1))) + +(let ((!k90 (ite alt-ergo.12 0 +1))) + +(let ((!k91 (ite camlp5.24 1 +0))) + +(let ((!k93 (ite dune.12 1 +0))) + +(let ((!k96 (ite sexplib0.8 1 +0))) + +(let ((!k97 (ite menhirSdk.4 1 +0))) + +(let ((!k99 (ite menhir.30 1 +0))) + +(let ((!k100 (ite alt-ergo-lib.1 1 +0))) + +(let ((!k102 (ite sqlite3.12 1 +0))) + +(let ((!k103 (ite jbuilder.3 1 +0))) + +(let ((!k104 (ite sexplib0.4 1 +0))) + +(let ((!k106 (ite stdio.7 1 +0))) + +(let ((!k107 (ite psmt2-frontend.2 1 +0))) + +(let ((!k108 (ite jbuilder.15 1 +0))) + +(let ((!k111 (ite menhir.49 1 +0))) + +(let ((!k112 (ite dune-private-libs.9 1 +0))) + +(let ((!k113 (ite mmap.2 1 +0))) + +(let ((!k114 (ite ocamlbuild.7 1 +0))) + +(let ((!k115 (ite topkg.16 1 +0))) + +(let ((!k116 (ite menhirSdk.9 1 +0))) + +(let ((!k117 (ite conf-gmp.1 1 +0))) + +(let ((!k120 (ite ocaml-migrate-parsetree.32 1 +0))) + +(let ((!k121 (ite menhir.44 1 +0))) + +(let ((!k122 (ite menhirSdk.10 0 +1))) + +(let ((!k123 (ite conf-perl.1 0 +1))) + +(let ((!k126 (ite dune-configurator.18 1 +0))) + +(let ((!k127 (ite sqlite3.11 1 +0))) + +(let ((!k129 (ite cppo%5focamlbuild.1 1 +0))) + +(let ((!k131 (ite jbuilder.9 1 +0))) + +(let ((!k133 (ite why3.22 1 +0))) + +(let ((!k134 (ite cppo.18 1 +0))) + +(let ((!k136 (ite menhirSdk.3 1 +0))) + +(let ((!k143 (ite menhirLib.10 0 +1))) + +(let ((!k145 (ite dune.20 1 +0))) + +(let ((!k146 (ite seq.5 0 +1))) + +(let ((!k147 (ite extlib.14 0 +1))) + +(let ((!k148 (ite dune.27 1 +0))) + +(let ((!k149 (ite topkg.12 1 +0))) + +(let ((!k150 (ite topkg.9 1 +0))) + +(let ((!k152 (ite lwt.38 1 +0))) + +(let ((!k154 (ite ocaml-syntax-shims.1 1 +0))) + +(let ((!k157 (ite base.17 1 +0))) + +(let ((!k161 (ite lwt.26 1 +0))) + +(let ((!k163 (ite conf-python-2-7.2 0 +1))) + +(let ((!k164 (ite menhir.23 1 +0))) + +(let ((!k165 (ite cppo.20 1 +0))) + +(let ((!k166 (ite why3.28 1 +0))) + +(let ((!k167 (ite zarith.4 1 +0))) + +(let ((!k175 (ite ppx%5ftools%5fversioned.7 1 +0))) + +(let ((!k176 (ite dune.38 1 +0))) + +(let ((!k177 (ite tuareg.6 0 +1))) + +(let ((!k179 (ite why3.27 1 +0))) + +(let ((!k180 (ite jbuilder.20 1 +0))) + +(let ((!k181 (ite alt-ergo.7 1 +0))) + +(let ((!k184 (ite psmt2-frontend.4 0 +1))) + +(let ((!k185 (ite menhir.32 1 +0))) + +(let ((!k186 (ite ocaml-migrate-parsetree.19 1 +0))) + +(let ((!k189 (ite menhir.25 1 +0))) + +(let ((!k190 (ite base.18 1 +0))) + +(let ((!k191 (ite jbuilder.25 1 +0))) + +(let ((!k192 (ite menhirSdk.1 1 +0))) + +(let ((!k193 (ite cmdliner.14 0 +1))) + +(let ((!k194 (ite conf-ncurses.1 1 +0))) + +(let ((!k195 (ite ppx%5fderivers.2 1 +0))) + +(let ((!k197 (ite sqlite3.19 1 +0))) + +(let ((!k198 (ite ocp-indent.28 0 +1))) + +(let ((!k200 (ite jbuilder.16 1 +0))) + +(let ((!k202 (ite psmt2-frontend.1 1 +0))) + +(let ((!k203 (ite ppx%5ftools%5fversioned.6 1 +0))) + +(let ((!k204 (ite zarith.7 1 +0))) + +(let ((!k205 (ite dune.52 1 +0))) + +(let ((!k206 (ite stdlib-shims.2 0 +1))) + +(let ((!k207 (ite menhirLib.6 1 +0))) + +(let ((!k208 (ite sqlite3.23 1 +0))) + +(let ((!k210 (ite octavius.3 1 +0))) + +(let ((!k211 (ite camlzip.6 1 +0))) + +(let ((!k213 (ite cppo.17 1 +0))) + +(let ((!k214 (ite cppo%5focamlbuild.2 1 +0))) + +(let ((!k217 (ite ocaml-migrate-parsetree.30 1 +0))) + +(let ((!k218 (ite why3.21 1 +0))) + +(let ((!k219 (ite result.2 1 +0))) + +(let ((!k220 (ite ocamlbuild.3 1 +0))) + +(let ((!k221 (ite dune.56 1 +0))) + +(let ((!k222 (ite alt-ergo.6 1 +0))) + +(let ((!k227 (ite dune-private-libs.4 1 +0))) + +(let ((!k229 (ite dune.14 1 +0))) + +(let ((!k231 (ite dune.34 1 +0))) + +(let ((!k232 (ite dune-private-libs.8 1 +0))) + +(let ((!k233 (ite csexp.8 0 +1))) + +(let ((!k236 (ite topkg.11 1 +0))) + +(let ((!k237 (ite conf-gtksourceview.1 1 +0))) + +(let ((!k238 (ite sexplib.60 1 +0))) + +(let ((!k239 (ite dune-configurator.11 1 +0))) + +(let ((!k240 (ite dune-configurator.21 0 +1))) + +(let ((!k241 (ite ppx%5fderivers.1 1 +0))) + +(let ((!k242 (ite menhir.36 1 +0))) + +(let ((!k243 (ite jbuilder.21 1 +0))) + +(let ((!k244 (ite menhir.51 1 +0))) + +(let ((!k245 (ite ppx%5ftools%5fversioned.12 1 +0))) + +(let ((!k246 (ite opam-file-format.11 0 +1))) + +(let ((!k247 (ite ocaml-options-vanilla.1 1 +0))) + +(let ((!k248 (ite sexplib0.2 1 +0))) + +(let ((!k249 (ite re.23 0 +1))) + +(let ((!k252 (ite dune-configurator.12 1 +0))) + +(let ((!k253 (ite menhir.41 1 +0))) + +(let ((!k254 (ite dune-private-libs.7 1 +0))) + +(let ((!k255 (ite sqlite3.26 1 +0))) + +(let ((!k256 (ite why3.23 1 +0))) + +(let ((!k257 (ite menhirLib.1 1 +0))) + +(let ((!k258 (ite dune-private-libs.14 1 +0))) + +(let ((!k259 (ite menhirLib.4 1 +0))) + +(let ((!k260 (ite menhir.54 1 +0))) + +(let ((!k262 (ite dune.10 1 +0))) + +(let ((!k268 (ite octavius.4 1 +0))) + +(let ((!k272 (ite ocaml-migrate-parsetree.17 1 +0))) + +(let ((!k273 (ite sqlite3.18 1 +0))) + +(let ((!k275 (ite stdio.11 1 +0))) + +(let ((!k276 (ite jbuilder.5 1 +0))) + +(let ((!k279 (ite dune.24 1 +0))) + +(let ((!k281 (ite menhir.26 1 +0))) + +(let ((!k282 (ite dune.68 1 +0))) + +(let ((!k283 (ite sqlite3.8 1 +0))) + +(let ((!k284 (ite dune-configurator.7 1 +0))) + +(let ((!k285 (ite menhir.42 1 +0))) + +(let ((!k287 (ite ocamlfind.25 1 +0))) + +(let ((!k288 (ite menhirLib.2 1 +0))) + +(let ((!k292 (ite camlzip.3 1 +0))) + +(let ((!k294 (ite cudf.5 0 +1))) + +(let ((!k296 (ite dune-private-libs.6 1 +0))) + +(let ((!k298 (ite conf-pkg-config.3 1 +0))) + +(let ((!k299 (ite z3.10 0 +1))) + +(let ((!k302 (ite sqlite3.10 1 +0))) + +(let ((!k303 (ite conf-pkg-config.2 1 +0))) + +(let ((!k305 (ite easy-format.7 0 +1))) + +(let ((!k308 (ite jbuilder.12 1 +0))) + +(let ((!k310 (ite dune.30 1 +0))) + +(let ((!k311 (ite sqlite3.16 1 +0))) + +(let ((!k312 (ite camlzip.4 1 +0))) + +(let ((!k313 (ite camlp5.21 1 +0))) + +(let ((!k314 (ite alt-ergo-lib.2 1 +0))) + +(let ((!k316 (ite psmt2-frontend.3 1 +0))) + +(let ((!k317 (ite lwt.35 1 +0))) + +(let ((!k319 (ite topkg.7 1 +0))) + +(let ((!k321 (ite menhir.53 1 +0))) + +(let ((!k322 (ite alt-ergo-parsers.3 1 +0))) + +(let ((!k323 (ite dune.35 1 +0))) + +(let ((!k327 (ite menhir.28 1 +0))) + +(let ((!k330 (ite merlin.46 0 +1))) + +(let ((!k331 (ite ocaml-compiler-libs.2 1 +0))) + +(let ((!k332 (ite menhirLib.3 1 +0))) + +(let ((!k334 (ite zarith.13 1 +0))) + +(let ((!k336 (ite dune.22 1 +0))) + +(let ((!k337 (ite menhir.45 1 +0))) + +(let ((!k338 (ite dune.29 1 +0))) + +(let ((!k339 (ite dune-configurator.16 1 +0))) + +(let ((!k340 (ite ocplib-endian.9 1 +0))) + +(let ((!k342 (ite ocaml-secondary-compiler.1 1 +0))) + +(let ((!k343 (ite dune.48 1 +0))) + +(let ((!k344 (ite dune.21 1 +0))) + +(let ((!k346 (ite lablgtk.13 1 +0))) + +(let ((!k347 (ite topkg.3 1 +0))) + +(let ((!k349 (ite sqlite3.14 1 +0))) + +(let ((!k350 (ite dune.41 1 +0))) + +(let ((!k351 (ite why3.24 1 +0))) + +(let ((!k352 (ite cppo.19 1 +0))) + +(let ((!k354 (ite alt-ergo-parsers.1 1 +0))) + +(let ((!k358 (ite conf-gmp.2 1 +0))) + +(let ((!k360 (ite camlp5.22 1 +0))) + +(let ((!k361 (ite camlp5.23 1 +0))) + +(let ((!k362 (ite lwt.46 1 +0))) + +(let ((!k365 (ite ppx%5ftools%5fversioned.8 1 +0))) + +(let ((!k368 (ite jbuilder.18 1 +0))) + +(let ((!k369 (ite conf-which.1 0 +1))) + +(let ((!k372 (ite menhir.29 1 +0))) + +(let ((!k375 (ite ocaml-migrate-parsetree.18 1 +0))) + +(let ((!k376 (ite sqlite3.9 1 +0))) + +(let ((!k377 (ite lwt.50 1 +0))) + +(let ((!k378 (ite dune.25 1 +0))) + +(let ((!k381 (ite dune-configurator.9 1 +0))) + +(let ((!k382 (ite lwt.41 1 +0))) + +(let ((!k383 (ite dune.36 1 +0))) + +(let ((!k384 (ite menhir.48 1 +0))) + +(let ((!k385 (ite dune.66 1 +0))) + +(let ((!k387 (ite lwt.30 1 +0))) + +(let ((!k388 (ite dune-private-libs.12 1 +0))) + +(let ((!k389 (ite ppx%5ftraverse%5fbuiltins.2 1 +0))) + +(let ((!k391 (ite alt-ergo-parsers.2 1 +0))) + +(let ((!k392 (ite ocaml-secondary-compiler.2 0 +1))) + +(let ((!k393 (ite dune.54 1 +0))) + +(let ((!k394 (ite ocaml-config.1 0 +1))) + +(let ((!k395 (ite zarith.14 0 +1))) + +(let ((!k396 (ite dune-configurator.22 1 +0))) + +(let ((!k400 (ite menhir.22 1 +0))) + +(let ((!k401 (ite dune.6 1 +0))) + +(let ((!k402 (ite yojson.18 0 +1))) + +(let ((!k405 (ite user-setup.7 0 +1))) + +(let ((!k406 (ite alt-ergo.10 1 +0))) + +(let ((!k407 (ite lwt.22 1 +0))) + +(let ((!k410 (ite cppo%5focamlbuild.3 1 +0))) + +(let ((!k411 (ite jbuilder.6 1 +0))) + +(let ((!k412 (ite dune-configurator.17 1 +0))) + +(let ((!k414 (ite ocamlgraph.12 0 +1))) + +(let ((!k415 (ite dune.4 1 +0))) + +(let ((!k417 (ite sexplib.58 1 +0))) + +(let ((!k418 (ite jbuilder.2 1 +0))) + +(let ((!k420 (ite sqlite3.13 1 +0))) + +(let ((!k422 (ite topkg.4 1 +0))) + +(let ((!k423 (ite jbuilder.13 1 +0))) + +(let ((!k424 (ite base.16 1 +0))) + +(let ((!k425 (ite menhir.50 1 +0))) + +(let ((!k427 (ite dune.33 1 +0))) + +(let ((!k428 (ite conf-sqlite3.1 1 +0))) + +(let ((!k430 (ite alt-ergo.2 1 +0))) + +(let ((!k431 (ite dune-configurator.23 1 +0))) + +(let ((!k432 (ite cppo.22 0 +1))) + +(let ((!k434 (ite dune-private-libs.5 1 +0))) + +(let ((!k435 (ite dune.17 1 +0))) + +(let ((!k436 (ite base.20 1 +0))) + +(let ((!k437 (ite ocaml-migrate-parsetree.23 1 +0))) + +(let ((!k438 (ite dune.40 1 +0))) + +(let ((!k440 (ite jbuilder.4 1 +0))) + +(let ((!k441 (ite base.22 1 +0))) + +(let ((!k442 (ite num.6 0 +1))) + +(let ((!k444 (ite result.5 1 +0))) + +(let ((!k445 (ite sqlite3.15 1 +0))) + +(let ((!k446 (ite ocaml-migrate-parsetree.20 1 +0))) + +(let ((!k447 (ite dune-configurator.14 1 +0))) + +(let ((!k450 (ite conf-gmp.3 0 +1))) + +(let ((!k451 (ite octavius.1 1 +0))) + +(let ((!k453 (ite dune.3 1 +0))) + +(let ((!k454 (ite dune.61 1 +0))) + +(let ((!k455 (ite camlzip.5 1 +0))) + +(let ((!k456 (ite dune-configurator.5 1 +0))) + +(let ((!k457 (ite dune.64 1 +0))) + +(let ((!k458 (ite menhirLib.8 1 +0))) + +(let ((!k461 (ite dune.16 1 +0))) + +(let ((!k463 (ite dune.19 1 +0))) + +(let ((!k465 (ite ppx%5fast.4 1 +0))) + +(let ((!k466 (ite menhir.27 1 +0))) + +(let ((!k467 (ite lwt.39 1 +0))) + +(let ((!k469 (ite menhir.52 1 +0))) + +(let ((!k470 (ite camlp5.18 1 +0))) + +(let ((!k472 (ite menhirSdk.6 1 +0))) + +(let ((!k473 (ite dune-configurator.2 1 +0))) + +(let ((!k474 (ite conf-findutils.1 1 +0))) + +(let ((!k476 (ite dune.62 1 +0))) + +(let ((!k477 (ite topkg.6 1 +0))) + +(let ((!k478 (ite dune.72 1 +0))) + +(let ((!k479 (ite alt-ergo.3 1 +0))) + +(let ((!k480 (ite ocaml-migrate-parsetree.31 1 +0))) + +(let ((!k481 (ite base.21 1 +0))) + +(let ((!k482 (ite alt-ergo.4 1 +0))) + +(let ((!k483 (ite octavius.5 1 +0))) + +(let ((!k488 (ite result.3 1 +0))) + +(let ((!k489 (ite dune-private-libs.2 1 +0))) + +(let ((!k491 (ite menhirLib.7 1 +0))) + +(let ((!k492 (ite topkg.13 1 +0))) + +(let ((!k494 (ite dot-merlin-reader.3 0 +1))) + +(let ((!k495 (ite lwt.32 1 +0))) + +(let ((!k497 (ite mmap.1 1 +0))) + +(let ((!k498 (ite jbuilder.23 1 +0))) + +(let ((!k500 (ite dune.50 1 +0))) + +(let ((!k501 (ite num.4 1 +0))) + +(let ((!k502 (ite menhir.33 1 +0))) + +(let ((!k503 (ite lablgtk.11 1 +0))) + +(let ((!k505 (ite ppx%5ftools.13 1 +0))) + +(let ((!k507 (ite dune.59 1 +0))) + +(let ((!k508 (ite seq.4 1 +0))) + +(let ((!k509 (ite octavius.6 1 +0))) + +(let ((!k510 (ite alt-ergo.11 1 +0))) + +(let ((!k511 (ite octavius.2 1 +0))) + +(let ((!k515 (ite topkg.5 1 +0))) + +(let ((!k516 (ite alt-ergo-parsers.4 0 +1))) + +(let ((!k517 (ite menhir.21 1 +0))) + +(let ((!k520 (ite jbuilder.10 1 +0))) + +(let ((!k521 (ite menhir.39 1 +0))) + +(let ((!k522 (ite stdio.13 1 +0))) + +(let ((!k523 (ite camlzip.7 0 +1))) + +(let ((!k524 (ite zarith.6 1 +0))) + +(let ((!k526 (ite dune-configurator.8 1 +0))) + +(let ((!k527 (ite jbuilder.8 1 +0))) + +(let ((!k528 (ite ocamlbuild.4 1 +0))) + +(let ((!k530 (ite ocplib-simplex.2 0 +1))) + +(let ((!k533 (ite menhir.43 1 +0))) + +(let ((!k536 (ite mccs.9 0 +1))) + +(let ((!k537 (ite base.24 1 +0))) + +(let ((!k540 (ite dune-private-libs.11 1 +0))) + +(let ((!k541 (ite sqlite3.25 1 +0))) + +(let ((!k542 (ite ocaml-migrate-parsetree.27 1 +0))) + +(let ((!k543 (ite dune.44 1 +0))) + +(let ((!k545 (ite dune.7 1 +0))) + +(let ((!k547 (ite dune-private-libs.10 1 +0))) + +(let ((!k548 (ite zarith.3 1 +0))) + +(let ((!k549 (ite num.5 1 +0))) + +(let ((!k552 (ite jbuilder.11 1 +0))) + +(let ((!k553 (ite dune.43 1 +0))) + +(let ((!k554 (ite configurator.7 1 +0))) + +(let ((!k555 (ite alt-ergo-lib.4 0 +1))) + +(let ((!k556 (ite conf-pkg-config.1 1 +0))) + +(let ((!k557 (ite camlp5.20 1 +0))) + +(let ((!k559 (ite sqlite3.20 1 +0))) + +(let ((!k560 (ite conf-emacs.1 0 +1))) + +(let ((!k561 (ite camlp5.17 1 +0))) + +(let ((!k564 (ite menhir.31 1 +0))) + +(let ((!k566 (ite topkg.15 1 +0))) + +(let ((!k567 (ite conf-autoconf.1 0 +1))) + +(let ((!k570 (ite zarith.5 1 +0))) + +(let ((!k571 (ite ppx%5ftools%5fversioned.9 1 +0))) + +(let ((!k574 (ite conf-pkg-config.4 0 +1))) + +(let ((!k575 (ite ocamlfind.26 0 +1))) + +(let ((!k576 (ite ocamlbuild.6 1 +0))) + +(let ((!k577 (ite ocamlbuild.5 1 +0))) + +(let ((!k579 (ite menhir.20 1 +0))) + +(let ((!k582 (ite biniou.9 0 +1))) + +(let ((!k584 (ite lablgtk.15 0 +1))) + +(let ((!k585 (ite jbuilder.22 1 +0))) + +(let ((!k586 (ite why3.26 1 +0))) + +(let ((!k587 (ite menhir.24 1 +0))) + +(let ((!k589 (ite lablgtk.12 1 +0))) + +(let ((!k591 (ite menhirSdk.5 1 +0))) + +(let ((!k592 (ite ocaml-migrate-parsetree.24 1 +0))) + +(let ((!k593 (ite dune-configurator.13 1 +0))) + +(let ((!k594 (ite dune.31 1 +0))) + +(let ((!k595 (ite conf-zlib.1 0 +1))) + +(let ((!k596 (ite dune.71 1 +0))) + +(let ((!k597 (ite dune.65 1 +0))) + +(let ((!k598 (ite dune.42 1 +0))) + +(let ((!k600 (ite menhirSdk.7 1 +0))) + +(let ((!k602 (ite dune-private-libs.3 1 +0))) + +(let ((!k604 (ite sqlite3.21 1 +0))) + +(let ((!k605 (ite base-bytes.2 0 +1))) + +(let ((!k606 (ite zarith.12 1 +0))) + +(let ((!k608 (ite zarith.8 1 +0))) + +(let ((!k609 (ite topkg.8 1 +0))) + +(let ((!k610 (ite ocplib-simplex.1 1 +0))) + +(let ((!k612 (ite menhir.47 1 +0))) + +(let ((!k613 (ite dose3.5 0 +1))) + +(let ((!k614 (ite csexp.7 1 +0))) + +(let ((!k615 (ite cppo.21 1 +0))) + +(let ((!k618 (ite result.1 1 +0))) + +(let ((!k620 (ite menhir.38 1 +0))) + +(let ((!k622 (ite ocplib-endian.8 1 +0))) + +(let ((!k623 (ite lwt.29 1 +0))) + +(let ((!k626 (ite result.6 0 +1))) + +(let ((!k627 (ite ocamlbuild.8 0 +1))) + +(let ((!k628 (ite dune.69 0 +1))) + +(let ((!k629 (ite why3.20 1 +0))) + +(let ((!k630 (ite lablgtk.10 1 +0))) + +(let ((!k631 (ite ocaml-migrate-parsetree.26 1 +0))) + +(let ((!k632 (ite lwt.40 1 +0))) + +(let ((!k633 (ite jbuilder.7 1 +0))) + +(let ((!k634 (ite dune-private-libs.13 1 +0))) + +(let ((!k636 (ite lwt.45 1 +0))) + +(let ((!k637 (ite result.4 1 +0))) + +(let ((!k639 (ite lwt.44 1 +0))) + +(let ((!k641 (ite menhir.55 1 +0))) + +(let ((!k644 (ite menhir.40 1 +0))) + +(let ((!k646 (ite dune.9 1 +0))) + +(let ((!k647 (ite lwt.49 1 +0))) + +(let ((!k648 (ite num.3 1 +0))) + +(let ((!k651 (ite ppx%5ftools%5fversioned.10 1 +0))) + +(let ((!k652 (ite alt-ergo.9 1 +0))) + +(let ((!k653 (ite jbuilder.14 1 +0))) + +(let ((!k654 (ite num.2 1 +0))) + +(let ((!k655 (ite jbuilder.17 1 +0))) + +(let ((!k657 (ite dune.51 14 +0))) + +(let ((!k663 (ite lwt.24 20 +0))) + +(let ((!k666 (ite dune-configurator.10 11 +0))) + +(let ((!k668 (ite why3.25 3 +0))) + +(let ((!k669 (ite base.14 8 +0))) + +(let ((!k673 (ite menhirSdk.8 2 +0))) + +(let ((!k676 (ite stdio.9 2 +0))) + +(let ((!k677 (ite menhir.34 21 +0))) + +(let ((!k679 (ite dune-configurator.20 3 +0))) + +(let ((!k681 (ite lwt.23 21 +0))) + +(let ((!k683 (ite topkg.14 2 +0))) + +(let ((!k686 (ite zarith.9 3 +0))) + +(let ((!k687 (ite ocaml-migrate-parsetree.33 2 +0))) + +(let ((!k690 (ite ppx%5ftools%5fversioned.5 7 +0))) + +(let ((!k691 (ite lwt.43 7 +0))) + +(let ((!k692 (ite sqlite3.22 3 +0))) + +(let ((!k699 (ite sqlite3.17 8 +0))) + +(let ((!k700 (ite menhir.46 10 +0))) + +(let ((!k701 (ite alt-ergo.8 4 +0))) + +(let ((!k705 (ite ocaml-migrate-parsetree.28 6 +0))) + +(let ((!k706 (ite menhirLib.5 5 +0))) + +(let ((!k707 (ite alt-ergo.5 7 +0))) + +(let ((!k708 (ite camlp4.22 11 +0))) + +(let ((!k711 (ite jbuilder.19 6 +0))) + +(let ((!k714 (ite lwt.25 19 +0))) + +(let ((!k715 (ite dune.26 31 +0))) + +(let ((!k718 (ite dune.57 10 +0))) + +(let ((!k720 (ite menhir.37 19 +0))) + +(let ((!k724 (ite lwt.34 14 +0))) + +(let ((!k725 (ite lwt.47 3 +0))) + +(let ((!k728 (ite dune-configurator.6 15 +0))) + +(let ((!k730 (ite menhirSdk.2 8 +0))) + +(let ((!k731 (ite lwt.36 12 +0))) + +(let ((!k732 (ite camlp5.24 7 +0))) + +(let ((!k734 (ite dune.12 41 +0))) + +(let ((!k737 (ite menhirSdk.4 6 +0))) + +(let ((!k739 (ite menhir.30 25 +0))) + +(let ((!k740 (ite alt-ergo-lib.1 3 +0))) + +(let ((!k742 (ite sqlite3.12 13 +0))) + +(let ((!k743 (ite jbuilder.3 22 +0))) + +(let ((!k744 (ite sexplib0.4 2 +0))) + +(let ((!k746 (ite stdio.7 3 +0))) + +(let ((!k747 (ite psmt2-frontend.2 2 +0))) + +(let ((!k748 (ite jbuilder.15 10 +0))) + +(let ((!k751 (ite menhir.49 7 +0))) + +(let ((!k752 (ite dune-private-libs.9 9 +0))) + +(let ((!k753 (ite conf-gmp.1 2 +0))) + +(let ((!k755 (ite ocaml-migrate-parsetree.32 3 +0))) + +(let ((!k756 (ite menhir.44 12 +0))) + +(let ((!k759 (ite dune-configurator.18 4 +0))) + +(let ((!k760 (ite sqlite3.11 14 +0))) + +(let ((!k762 (ite cppo%5focamlbuild.1 2 +0))) + +(let ((!k764 (ite jbuilder.9 16 +0))) + +(let ((!k766 (ite why3.22 6 +0))) + +(let ((!k767 (ite cppo.18 4 +0))) + +(let ((!k768 (ite menhirSdk.3 7 +0))) + +(let ((!k776 (ite dune.20 36 +0))) + +(let ((!k777 (ite dune.27 30 +0))) + +(let ((!k778 (ite topkg.12 4 +0))) + +(let ((!k779 (ite topkg.9 6 +0))) + +(let ((!k781 (ite lwt.38 11 +0))) + +(let ((!k785 (ite base.17 6 +0))) + +(let ((!k788 (ite lwt.26 18 +0))) + +(let ((!k790 (ite menhir.23 32 +0))) + +(let ((!k791 (ite cppo.20 2 +0))) + +(let ((!k792 (ite zarith.4 8 +0))) + +(let ((!k800 (ite ppx%5ftools%5fversioned.7 5 +0))) + +(let ((!k801 (ite dune.38 22 +0))) + +(let ((!k803 (ite jbuilder.20 5 +0))) + +(let ((!k804 (ite alt-ergo.7 5 +0))) + +(let ((!k807 (ite menhir.32 23 +0))) + +(let ((!k808 (ite ocaml-migrate-parsetree.19 14 +0))) + +(let ((!k811 (ite menhir.25 30 +0))) + +(let ((!k812 (ite base.18 5 +0))) + +(let ((!k813 (ite menhirSdk.1 9 +0))) + +(let ((!k815 (ite sqlite3.19 6 +0))) + +(let ((!k817 (ite jbuilder.16 9 +0))) + +(let ((!k819 (ite psmt2-frontend.1 3 +0))) + +(let ((!k820 (ite ppx%5ftools%5fversioned.6 6 +0))) + +(let ((!k821 (ite zarith.7 5 +0))) + +(let ((!k822 (ite dune.52 13 +0))) + +(let ((!k823 (ite menhirLib.6 4 +0))) + +(let ((!k824 (ite sqlite3.23 2 +0))) + +(let ((!k826 (ite octavius.3 3 +0))) + +(let ((!k828 (ite cppo.17 5 +0))) + +(let ((!k831 (ite ocaml-migrate-parsetree.30 5 +0))) + +(let ((!k832 (ite why3.21 7 +0))) + +(let ((!k833 (ite result.2 4 +0))) + +(let ((!k834 (ite ocamlbuild.3 5 +0))) + +(let ((!k835 (ite dune.56 11 +0))) + +(let ((!k836 (ite alt-ergo.6 6 +0))) + +(let ((!k840 (ite dune-private-libs.4 14 +0))) + +(let ((!k842 (ite dune.14 40 +0))) + +(let ((!k844 (ite dune.34 25 +0))) + +(let ((!k845 (ite dune-private-libs.8 10 +0))) + +(let ((!k847 (ite topkg.11 5 +0))) + +(let ((!k848 (ite sexplib.60 4 +0))) + +(let ((!k849 (ite dune-configurator.11 10 +0))) + +(let ((!k850 (ite dune-configurator.21 0 +2))) + +(let ((!k851 (ite menhir.36 20 +0))) + +(let ((!k852 (ite jbuilder.21 4 +0))) + +(let ((!k853 (ite menhir.51 5 +0))) + +(let ((!k854 (ite sexplib0.2 3 +0))) + +(let ((!k857 (ite dune-configurator.12 9 +0))) + +(let ((!k858 (ite menhir.41 15 +0))) + +(let ((!k859 (ite dune-private-libs.7 11 +0))) + +(let ((!k860 (ite why3.23 5 +0))) + +(let ((!k861 (ite menhirLib.1 9 +0))) + +(let ((!k862 (ite dune-private-libs.14 4 +0))) + +(let ((!k863 (ite menhirLib.4 6 +0))) + +(let ((!k864 (ite menhir.54 2 +0))) + +(let ((!k865 (ite dune.10 42 +0))) + +(let ((!k871 (ite octavius.4 2 +0))) + +(let ((!k875 (ite ocaml-migrate-parsetree.17 16 +0))) + +(let ((!k876 (ite sqlite3.18 7 +0))) + +(let ((!k877 (ite jbuilder.5 20 +0))) + +(let ((!k880 (ite dune.24 33 +0))) + +(let ((!k882 (ite menhir.26 29 +0))) + +(let ((!k883 (ite dune.68 3 +0))) + +(let ((!k884 (ite sqlite3.8 17 +0))) + +(let ((!k885 (ite dune-configurator.7 14 +0))) + +(let ((!k886 (ite menhir.42 14 +0))) + +(let ((!k888 (ite menhirLib.2 8 +0))) + +(let ((!k892 (ite camlzip.3 4 +0))) + +(let ((!k895 (ite dune-private-libs.6 12 +0))) + +(let ((!k899 (ite sqlite3.10 15 +0))) + +(let ((!k900 (ite conf-pkg-config.2 2 +0))) + +(let ((!k904 (ite jbuilder.12 13 +0))) + +(let ((!k905 (ite dune.30 28 +0))) + +(let ((!k906 (ite sqlite3.16 9 +0))) + +(let ((!k907 (ite camlzip.4 3 +0))) + +(let ((!k908 (ite camlp5.21 10 +0))) + +(let ((!k909 (ite alt-ergo-lib.2 2 +0))) + +(let ((!k911 (ite lwt.35 13 +0))) + +(let ((!k913 (ite topkg.7 8 +0))) + +(let ((!k915 (ite menhir.53 3 +0))) + +(let ((!k916 (ite dune.35 24 +0))) + +(let ((!k919 (ite menhir.28 27 +0))) + +(let ((!k922 (ite ocaml-compiler-libs.2 5 +0))) + +(let ((!k923 (ite menhirLib.3 7 +0))) + +(let ((!k926 (ite dune.22 34 +0))) + +(let ((!k927 (ite menhir.45 11 +0))) + +(let ((!k928 (ite dune.29 29 +0))) + +(let ((!k929 (ite dune-configurator.16 6 +0))) + +(let ((!k931 (ite dune.48 16 +0))) + +(let ((!k932 (ite dune.21 35 +0))) + +(let ((!k933 (ite lablgtk.13 2 +0))) + +(let ((!k934 (ite topkg.3 12 +0))) + +(let ((!k935 (ite sqlite3.14 11 +0))) + +(let ((!k936 (ite dune.41 20 +0))) + +(let ((!k937 (ite why3.24 4 +0))) + +(let ((!k938 (ite cppo.19 3 +0))) + +(let ((!k940 (ite alt-ergo-parsers.1 3 +0))) + +(let ((!k945 (ite camlp5.22 9 +0))) + +(let ((!k946 (ite camlp5.23 8 +0))) + +(let ((!k947 (ite lwt.46 4 +0))) + +(let ((!k950 (ite ppx%5ftools%5fversioned.8 4 +0))) + +(let ((!k953 (ite jbuilder.18 7 +0))) + +(let ((!k956 (ite menhir.29 26 +0))) + +(let ((!k959 (ite ocaml-migrate-parsetree.18 15 +0))) + +(let ((!k960 (ite sqlite3.9 16 +0))) + +(let ((!k961 (ite dune.25 32 +0))) + +(let ((!k964 (ite dune-configurator.9 12 +0))) + +(let ((!k965 (ite lwt.41 8 +0))) + +(let ((!k966 (ite dune.36 23 +0))) + +(let ((!k967 (ite menhir.48 8 +0))) + +(let ((!k968 (ite dune.66 4 +0))) + +(let ((!k970 (ite lwt.30 16 +0))) + +(let ((!k971 (ite dune-private-libs.12 6 +0))) + +(let ((!k972 (ite ppx%5ftraverse%5fbuiltins.2 2 +0))) + +(let ((!k974 (ite alt-ergo-parsers.2 2 +0))) + +(let ((!k975 (ite dune.54 12 +0))) + +(let ((!k979 (ite menhir.22 33 +0))) + +(let ((!k980 (ite dune.6 45 +0))) + +(let ((!k983 (ite alt-ergo.10 2 +0))) + +(let ((!k984 (ite lwt.22 22 +0))) + +(let ((!k987 (ite jbuilder.6 19 +0))) + +(let ((!k988 (ite dune-configurator.17 5 +0))) + +(let ((!k990 (ite dune.4 46 +0))) + +(let ((!k992 (ite sexplib.58 5 +0))) + +(let ((!k993 (ite jbuilder.2 23 +0))) + +(let ((!k995 (ite sqlite3.13 12 +0))) + +(let ((!k997 (ite topkg.4 11 +0))) + +(let ((!k998 (ite jbuilder.13 12 +0))) + +(let ((!k999 (ite base.16 7 +0))) + +(let ((!k1000 (ite menhir.50 6 +0))) + +(let ((!k1002 (ite dune.33 26 +0))) + +(let ((!k1004 (ite alt-ergo.2 10 +0))) + +(let ((!k1006 (ite dune-private-libs.5 13 +0))) + +(let ((!k1007 (ite dune.17 38 +0))) + +(let ((!k1008 (ite base.20 4 +0))) + +(let ((!k1009 (ite ocaml-migrate-parsetree.23 10 +0))) + +(let ((!k1010 (ite dune.40 21 +0))) + +(let ((!k1012 (ite jbuilder.4 21 +0))) + +(let ((!k1013 (ite base.22 2 +0))) + +(let ((!k1015 (ite sqlite3.15 10 +0))) + +(let ((!k1016 (ite ocaml-migrate-parsetree.20 13 +0))) + +(let ((!k1017 (ite dune-configurator.14 7 +0))) + +(let ((!k1020 (ite octavius.1 5 +0))) + +(let ((!k1021 (ite dune.3 47 +0))) + +(let ((!k1022 (ite dune.61 8 +0))) + +(let ((!k1023 (ite camlzip.5 2 +0))) + +(let ((!k1024 (ite dune-configurator.5 16 +0))) + +(let ((!k1025 (ite dune.64 6 +0))) + +(let ((!k1026 (ite menhirLib.8 2 +0))) + +(let ((!k1029 (ite dune.16 39 +0))) + +(let ((!k1031 (ite dune.19 37 +0))) + +(let ((!k1033 (ite ppx%5fast.4 2 +0))) + +(let ((!k1034 (ite menhir.27 28 +0))) + +(let ((!k1035 (ite lwt.39 10 +0))) + +(let ((!k1037 (ite menhir.52 4 +0))) + +(let ((!k1038 (ite camlp5.18 13 +0))) + +(let ((!k1040 (ite menhirSdk.6 4 +0))) + +(let ((!k1041 (ite dune-configurator.2 18 +0))) + +(let ((!k1042 (ite dune.62 7 +0))) + +(let ((!k1043 (ite topkg.6 9 +0))) + +(let ((!k1044 (ite alt-ergo.3 9 +0))) + +(let ((!k1045 (ite ocaml-migrate-parsetree.31 4 +0))) + +(let ((!k1046 (ite base.21 3 +0))) + +(let ((!k1047 (ite alt-ergo.4 8 +0))) + +(let ((!k1050 (ite result.3 3 +0))) + +(let ((!k1051 (ite dune-private-libs.2 16 +0))) + +(let ((!k1053 (ite menhirLib.7 3 +0))) + +(let ((!k1054 (ite topkg.13 3 +0))) + +(let ((!k1056 (ite lwt.32 15 +0))) + +(let ((!k1058 (ite jbuilder.23 2 +0))) + +(let ((!k1060 (ite dune.50 15 +0))) + +(let ((!k1061 (ite num.4 2 +0))) + +(let ((!k1062 (ite menhir.33 22 +0))) + +(let ((!k1063 (ite lablgtk.11 4 +0))) + +(let ((!k1065 (ite ppx%5ftools.13 6 +0))) + +(let ((!k1067 (ite dune.59 9 +0))) + +(let ((!k1068 (ite octavius.2 4 +0))) + +(let ((!k1072 (ite topkg.5 10 +0))) + +(let ((!k1073 (ite menhir.21 34 +0))) + +(let ((!k1075 (ite jbuilder.10 15 +0))) + +(let ((!k1076 (ite menhir.39 17 +0))) + +(let ((!k1077 (ite zarith.6 6 +0))) + +(let ((!k1078 (ite dune-configurator.8 13 +0))) + +(let ((!k1079 (ite jbuilder.8 17 +0))) + +(let ((!k1080 (ite ocamlbuild.4 4 +0))) + +(let ((!k1084 (ite menhir.43 13 +0))) + +(let ((!k1089 (ite dune-private-libs.11 7 +0))) + +(let ((!k1090 (ite ocaml-migrate-parsetree.27 7 +0))) + +(let ((!k1091 (ite dune.44 17 +0))) + +(let ((!k1093 (ite dune.7 44 +0))) + +(let ((!k1095 (ite dune-private-libs.10 8 +0))) + +(let ((!k1096 (ite zarith.3 9 +0))) + +(let ((!k1099 (ite jbuilder.11 14 +0))) + +(let ((!k1100 (ite dune.43 18 +0))) + +(let ((!k1101 (ite conf-pkg-config.1 3 +0))) + +(let ((!k1102 (ite camlp5.20 11 +0))) + +(let ((!k1104 (ite sqlite3.20 5 +0))) + +(let ((!k1105 (ite camlp5.17 14 +0))) + +(let ((!k1108 (ite menhir.31 24 +0))) + +(let ((!k1112 (ite zarith.5 7 +0))) + +(let ((!k1113 (ite ppx%5ftools%5fversioned.9 3 +0))) + +(let ((!k1116 (ite ocamlbuild.6 2 +0))) + +(let ((!k1117 (ite ocamlbuild.5 3 +0))) + +(let ((!k1119 (ite menhir.20 35 +0))) + +(let ((!k1122 (ite jbuilder.22 3 +0))) + +(let ((!k1123 (ite why3.26 2 +0))) + +(let ((!k1124 (ite menhir.24 31 +0))) + +(let ((!k1126 (ite lablgtk.12 3 +0))) + +(let ((!k1128 (ite menhirSdk.5 5 +0))) + +(let ((!k1129 (ite ocaml-migrate-parsetree.24 9 +0))) + +(let ((!k1130 (ite dune-configurator.13 8 +0))) + +(let ((!k1131 (ite dune.31 27 +0))) + +(let ((!k1132 (ite dune.65 5 +0))) + +(let ((!k1133 (ite dune.42 19 +0))) + +(let ((!k1135 (ite menhirSdk.7 3 +0))) + +(let ((!k1137 (ite dune-private-libs.3 15 +0))) + +(let ((!k1139 (ite sqlite3.21 4 +0))) + +(let ((!k1140 (ite zarith.12 2 +0))) + +(let ((!k1142 (ite zarith.8 4 +0))) + +(let ((!k1143 (ite topkg.8 7 +0))) + +(let ((!k1145 (ite menhir.47 9 +0))) + +(let ((!k1147 (ite result.1 5 +0))) + +(let ((!k1149 (ite menhir.38 18 +0))) + +(let ((!k1151 (ite lwt.29 17 +0))) + +(let ((!k1154 (ite dune.69 0 +2))) + +(let ((!k1155 (ite why3.20 8 +0))) + +(let ((!k1156 (ite lablgtk.10 5 +0))) + +(let ((!k1157 (ite ocaml-migrate-parsetree.26 8 +0))) + +(let ((!k1158 (ite lwt.40 9 +0))) + +(let ((!k1159 (ite jbuilder.7 18 +0))) + +(let ((!k1160 (ite dune-private-libs.13 5 +0))) + +(let ((!k1162 (ite lwt.45 5 +0))) + +(let ((!k1163 (ite result.4 2 +0))) + +(let ((!k1164 (ite lwt.44 6 +0))) + +(let ((!k1168 (ite menhir.40 16 +0))) + +(let ((!k1170 (ite dune.9 43 +0))) + +(let ((!k1171 (ite lwt.49 2 +0))) + +(let ((!k1172 (ite num.3 3 +0))) + +(let ((!k1175 (ite ppx%5ftools%5fversioned.10 2 +0))) + +(let ((!k1176 (ite alt-ergo.9 3 +0))) + +(let ((!k1177 (ite jbuilder.14 11 +0))) + +(let ((!k1178 (ite num.2 4 +0))) + +(let ((!k1179 (ite jbuilder.17 8 +0))) + +(let ((!k1180 (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 +))) + +(let ((!k1181 (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 +))) + +(let ((!k1182 (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 +))) + +(let ((!k1183 base-bytes.2)) + +(let ((!k1184 (or + lablgtk.10 + lablgtk.12 + lablgtk.15 + lablgtk.11 + lablgtk.13 + lablgtk.14 +))) + +(let ((!k1185 (or + ocamlfind.26 + ocamlfind.25 +))) + +(let ((!k1186 (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 +))) + +(let ((!k1187 (or + alt-ergo-lib.4 + alt-ergo-lib.2 + alt-ergo-lib.1 + alt-ergo-lib.3 +))) + +(let ((!k1188 (or + ocplib-simplex.1 + ocplib-simplex.2 +))) + +(let ((!k1189 (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 +))) + +(let ((!k1190 (or + alt-ergo-parsers.4 + alt-ergo-parsers.2 + alt-ergo-parsers.1 + alt-ergo-parsers.3 +))) + +(let ((!k1191 (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 +))) + +(let ((!k1192 (or + num.2 + num.3 + num.5 + num.4 + num.6 +))) + +(let ((!k1193 (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 +))) + +(let ((!k1194 (or + ocamlgraph.12 + ocamlgraph.9 +))) + +(let ((!k1195 (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 +))) + +(let ((!k1196 (or + ocaml-config.1 + ocaml-config.2 +))) + +(let ((!k1197 (or + ocaml-secondary-compiler.2 + ocaml-secondary-compiler.1 +))) + +(let ((!k1198 (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 +))) + +(let ((!k1199 (or + csexp.7 + csexp.8 +))) + +(let ((!k1200 (or + psmt2-frontend.3 + psmt2-frontend.1 + psmt2-frontend.4 + psmt2-frontend.2 +))) + +(let ((!k1201 (or + seq.4 + seq.5 +))) + +(let ((!k1202 (or + menhirLib.7 + menhirLib.8 + menhirLib.3 + menhirLib.2 + menhirLib.4 + menhirLib.1 + menhirLib.6 + menhirLib.10 + menhirLib.9 + menhirLib.5 +))) + +(let ((!k1203 (or + menhirSdk.7 + menhirSdk.5 + menhirSdk.6 + menhirSdk.1 + menhirSdk.3 + menhirSdk.10 + menhirSdk.9 + menhirSdk.4 + menhirSdk.2 + menhirSdk.8 +))) + +(let ((!k1204 (or + alt-ergo.9 + alt-ergo.11 + alt-ergo.4 + alt-ergo.3 + alt-ergo.2 + alt-ergo.10 + alt-ergo.6 + alt-ergo.7 + alt-ergo.12 + alt-ergo.5 + alt-ergo.8 +))) + +(let ((!k1205 (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 +))) + +(let ((!k1206 (ite !k1205 0 +1))) + +(let ((!k1207 (ite !k1204 0 +1))) + +(let ((!k1208 (ite !k1203 0 +1))) + +(let ((!k1209 (ite !k1202 0 +1))) + +(let ((!k1210 (ite !k1201 0 +1))) + +(let ((!k1211 (ite !k1200 0 +1))) + +(let ((!k1212 (ite !k1199 0 +1))) + +(let ((!k1213 (ite !k1198 0 +1))) + +(let ((!k1214 (ite !k1197 0 +1))) + +(let ((!k1215 (ite !k1196 0 +1))) + +(let ((!k1216 (ite !k1195 0 +1))) + +(let ((!k1217 (ite !k1194 0 +1))) + +(let ((!k1218 (ite !k1193 0 +1))) + +(let ((!k1219 (ite !k1192 0 +1))) + +(let ((!k1220 (ite !k1191 0 +1))) + +(let ((!k1221 (ite !k1190 0 +1))) + +(let ((!k1222 (ite !k1189 0 +1))) + +(let ((!k1223 (ite !k1188 0 +1))) + +(let ((!k1224 (ite !k1187 0 +1))) + +(let ((!k1225 (ite !k1186 0 +1))) + +(let ((!k1226 (ite !k1185 0 +1))) + +(let ((!k1227 (ite !k1184 0 +1))) + +(let ((!k1228 (ite !k1183 0 +1))) + +(let ((!k1229 (ite !k1182 0 +1))) + +(let ((!k1230 (ite !k1181 0 +1))) + +(let ((!k1231 (ite !k1180 0 +1))) + + +;; Main form: +;;;;;;;;;;;;; +(and + (not lwt.14) + (not camlp5.13) + (not sexplib.56) + (not cppo.7) + (not camlp5.19) + (not camlp4.21) + (not ppx%5ftools.18) + (not cppo.15) + (not seq.1) + (not coq.1) + (not sexplib.55) + (not menhir.15) + (not base-metaocaml-ocamlfind.1) + (not ocamlgraph.6) + (not ppx%5fbase.2) + (not menhir.4) + (not menhir.16) + (not camlp4.6) + (not ppx%5fcompare.11) + (not menhir.14) + (not why3-base.11) + (not why3.18) + base-unix.1 + (not ppx%5fdriver.16) + (not why3.15) + (not ppx%5ftools.8) + (not ppx%5fhash.2) + (not base.13) + (not camlp4.2) + (not lwt.18) + (not stdio.2) + (not cppo.16) + (not camlp4.5) + (not seq.3) + (not ocamlbuild.1) + (not ppx%5fjs%5fstyle.2) + (not why3-base.5) + (not ocaml-migrate-parsetree.10) + (not ocplib-endian.7) + ocaml-base-compiler.36 + (not lwt.10) + (not lwt.4) + (not ppx%5fsexp%5fconv.14) + (not ocaml-migrate-parsetree.9) + (not base-bytes.1) + (not ppx%5ftools.19) + (not base.6) + (not ocplib-endian.4) + (not why3.12) + (not ocaml-migrate-parsetree.21) + (not ppx%5fmetaquot.2) + (not ppx%5ftype%5fconv.14) + (not why3.1) + (not ppx%5ftools.10) + (not ocaml-migrate-parsetree.22) + (not menhir.2) + %3dopam-invariant.1 + (not base-no-ppx.1) + (not camlp5.3) + (not ocaml-migrate-parsetree.11) + (not base-implicits.1) + (not ppx%5ftools.11) + (not lablgtk.8) + (not ppx%5ftools.17) + (not menhir.13) + (not ppx%5ftype%5fconv.13) + (not camlp4.9) + (not base-num.1) + (not ppx%5ftools.14) + (not camlp4.18) + (not ocplib-endian.6) + (not ppx%5fdriver.15) + (not why3-base.3) + (not camlp4.14) + (not camlp5.16) + (not ppx%5ftools.5) + (not why3.8) + (not camlp4.19) + (not why3.4) + (not menhir.18) + (not cppo.4) + (not base.5) + (not camlzip.2) + (not lablgtk.9) + (not cppo.8) + (not ocamlfind.11) + (not lwt.20) + (not ppx%5fcore.13) + (not why3.14) + (not lwt.21) + (not ocamlfind.6) + (not camlp4.11) + (not ppx%5fcore.14) + (not ppx%5ftools.15) + (not camlp4.13) + (not lwt.17) + (not why3-base.10) + (not menhir.19) + (not camlp4.26) + (not ocaml-migrate-parsetree.13) + (not menhir.11) + (not ocaml-migrate-parsetree.16) + (not ppx%5fast.3) + (not camlp4.33) + base-bigarray.1 + (not ppx%5fenumerate.10) + (not ocaml-migrate-parsetree.8) + (not cppo.6) + (not ppx%5fast.2) + (not camlp5.12) + (not camlp4.29) + (not ocamlfind.10) + (not camlp4.32) + (not why3-base.6) + (not lwt.13) + (not ocamlfind.17) + (not optcomp.3) + (not camlp5.14) + (not lwt.8) + (not why3.6) + (not base.11) + (not menhir.6) + (not camlp5.2) + (not cppo.12) + (not ppx%5ftools.7) + (not ocamlgraph.5) + (not ocamlfind.5) + (not why3.10) + (not camlp5.9) + (not why3.13) + (not cppo.3) + (not ocamlfind.14) + (not configurator.5) + (not lablgtk.7) + (not ocamlfind.7) + (not cppo.2) + (not dune-configurator.3) + (not menhir.8) + (not ocaml-migrate-parsetree.6) + (not camlp5.7) + (not lablgtk.6) + (not base.25) + (not why3-base.7) + (not camlzip.1) + (not camlp4.23) + (not base-ocamlbuild.1) + (not why3-base.8) + (not why3.16) + (not xenbigarray.1) + (not ocamlfind.22) + (not zarith.1) + (not camlp4.7) + (not ocaml-migrate-parsetree.12) + (not ocamlfind.12) + (not cppo.13) + ocaml.60 + (not configurator.2) + (not base.7) + (not ocplib-endian.1) + (not camlp5.10) + (not lwt.7) + (not why3.5) + (not why3-base.1) + (not ppx%5ftools.3) + (not lablgtk.3) + (not why3.2) + (not zarith.2) + (not camlp5.11) + (not base.9) + (not ocamlfind.3) + (not camlp5.5) + (not camlp4.17) + (not ocamlfind.4) + (not seq.2) + (not why3-base.13) + (not cppo.5) + (not ppx%5ftools.1) + (not menhir.17) + (not why3.3) + (not lwt.11) + (not ocamlfind.23) + (not ocaml-migrate-parsetree.14) + (not ocamlgraph.8) + (not lwt.16) + (not ocplib-endian.3) + (not cppo.1) + (not why3-base.12) + (not ocaml-migrate-parsetree.15) + (not lwt.6) + (not ocamlbuild.2) + (not camlp4.16) + (not camlp4.3) + (not ppx%5ftools.12) + base-threads.1 + (not camlp4.8) + (not camlp4.31) + (not ocplib-endian.2) + (not stdio.3) + (not why3.17) + (not ocamlfind.15) + (not ppx%5ftools.2) + (not why3.19) + (not ocamlfind.18) + (not camlp4.15) + (not ppx%5foptcomp.12) + (not base.8) + (not camlp4.24) + (not lwt.19) + (not lwt.12) + (not stdio.5) + (not cppo.14) + (not ocamlfind.21) + (not camlp4.20) + (not ocamlfind.13) + (not camlp5.15) + (not ppx%5fdriver.14) + (not lwt.9) + (not sexplib.57) + (not camlp4.28) + (not ocaml-migrate-parsetree.4) + (not ocaml-migrate-parsetree.3) + (not camlp5.8) + (not ppx%5ftools.9) + (not ppx%5ftools.16) + (not configurator.3) + (not why3-base.2) + (not why3.11) + (not ocamlgraph.4) + (not camlp4.27) + (not ocamlgraph.7) + (not cppo.11) + (not camlp4.10) + (not camlp4.25) + (not ppx%5fcore.12) + (not cppo.10) + (not why3-base.4) + (not ppx%5ftools.4) + (not menhir.12) + (not camlp5.6) + (not camlp4.30) + (not why3.7) + (not camlp5.4) + (not menhir.3) + (not num.1) + (not ocamlfind.24) + (or + ocaml-config.1 + ocaml-config.2 + ) + (or + (not jbuilder.17) + (and + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not jbuilder.14) + (and + (not jbuilder.17) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not alt-ergo.9) + (and + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not ppx%5ftools%5fversioned.10) + (and + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not dune.9) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not result.4) + (and + (not result.6) + (not result.1) + (not result.3) + (not result.5) + (not result.2) + ) + ) + (or + (not dune-private-libs.13) + (and + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not jbuilder.7) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not result.6) + (and + (not result.4) + (not result.1) + (not result.3) + (not result.5) + (not result.2) + ) + ) + (or + (not result.1) + (and + (not result.4) + (not result.6) + (not result.3) + (not result.5) + (not result.2) + ) + ) + (or + (not csexp.7) + (not csexp.8) + ) + (or + (not ocplib-simplex.1) + (not ocplib-simplex.2) + ) + (or + (not topkg.8) + (and + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not sqlite3.21) + (and + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-private-libs.3) + (and + (not dune-private-libs.13) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.42) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not conf-zlib.1) + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + (not dune.31) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.13) + (and + dune-private-libs.10 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not jbuilder.22) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not conf-pkg-config.4) + (and + (not conf-pkg-config.1) + (not conf-pkg-config.2) + (not conf-pkg-config.3) + ) + ) + (or + (not ppx%5ftools%5fversioned.9) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not conf-autoconf.1) + conf-which.1 + ) + (or + (not topkg.15) + (and + (not topkg.8) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not sqlite3.20) + (and + (not sqlite3.21) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not conf-pkg-config.1) + (and + (not conf-pkg-config.4) + (not conf-pkg-config.2) + (not conf-pkg-config.3) + ) + ) + (or + (not alt-ergo-lib.4) + (and + (not alt-ergo-lib.2) + (not alt-ergo-lib.1) + (not alt-ergo-lib.3) + ) + ) + (or + (not dune.43) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.11) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune-private-libs.10) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.7) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.44) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not sqlite3.25) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-private-libs.11) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not jbuilder.8) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune-configurator.8) + (and + dune-private-libs.5 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not jbuilder.10) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not alt-ergo-parsers.4) + (and + (not alt-ergo-parsers.2) + (not alt-ergo-parsers.1) + (not alt-ergo-parsers.3) + ) + ) + (or + (not topkg.5) + (and + (not topkg.8) + (not topkg.15) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not octavius.2) + (and + (not octavius.6) + (not octavius.5) + (not octavius.1) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not alt-ergo.11) + (and + (not alt-ergo.9) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not octavius.6) + (and + (not octavius.2) + (not octavius.5) + (not octavius.1) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not dune.50) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not jbuilder.23) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not mmap.1) + (not mmap.2) + ) + (or + (not topkg.13) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune-private-libs.2) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not result.3) + (and + (not result.4) + (not result.6) + (not result.1) + (not result.5) + (not result.2) + ) + ) + (or + (not octavius.5) + (and + (not octavius.2) + (not octavius.6) + (not octavius.1) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not alt-ergo.4) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not alt-ergo.3) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not topkg.6) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + (not dune-configurator.2) + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + (or + (not dune.19) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.16) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.5) + (and + dune-private-libs.2 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not dune.3) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not octavius.1) + (and + (not octavius.2) + (not octavius.6) + (not octavius.5) + (not octavius.4) + (not octavius.3) + ) + ) + (or + (not conf-gmp.3) + (and + (not conf-gmp.2) + (not conf-gmp.1) + ) + ) + (or + (not dune-configurator.14) + (and + dune-private-libs.11 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not sqlite3.15) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not result.5) + (and + (not result.4) + (not result.6) + (not result.1) + (not result.3) + (not result.2) + ) + ) + (or + (not jbuilder.4) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune.40) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.17) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-private-libs.5) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not alt-ergo.2) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + (not conf-sqlite3.1) + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + (not dune.33) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.13) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not topkg.4) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not sqlite3.13) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not jbuilder.2) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune.4) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.17) + (and + dune-private-libs.13 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + ) + ) + (or + (not jbuilder.6) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not cppo%5focamlbuild.3) + (and + (not cppo%5focamlbuild.2) + (not cppo%5focamlbuild.1) + ) + ) + (or + (not alt-ergo.10) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not dune.6) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not ocaml-config.1) + (not ocaml-config.2) + ) + (or + (not dune.54) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not ocaml-secondary-compiler.2) + (not ocaml-secondary-compiler.1) + ) + (or + (not alt-ergo-parsers.2) + (and + (not alt-ergo-parsers.4) + (not alt-ergo-parsers.1) + (not alt-ergo-parsers.3) + ) + ) + (or + (not dune-private-libs.12) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.36) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-configurator.9) + (and + dune-private-libs.6 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not dune.25) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not sqlite3.9) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not jbuilder.18) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not ppx%5ftools%5fversioned.8) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not conf-gmp.2) + (and + (not conf-gmp.3) + (not conf-gmp.1) + ) + ) + (or + (not alt-ergo-parsers.1) + (and + (not alt-ergo-parsers.4) + (not alt-ergo-parsers.2) + (not alt-ergo-parsers.3) + ) + ) + (or + (not dune.41) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not sqlite3.14) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not topkg.3) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune.21) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.48) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune-configurator.16) + (and + dune-private-libs.12 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + ) + ) + (or + (not dune.29) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.22) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.35) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not alt-ergo-parsers.3) + (and + (not alt-ergo-parsers.4) + (not alt-ergo-parsers.2) + (not alt-ergo-parsers.1) + ) + ) + (or + (not topkg.7) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not psmt2-frontend.3) + (and + (not psmt2-frontend.1) + (not psmt2-frontend.4) + (not psmt2-frontend.2) + ) + ) + (or + (not alt-ergo-lib.2) + (and + (not alt-ergo-lib.4) + (not alt-ergo-lib.1) + (not alt-ergo-lib.3) + ) + ) + (or + (not sqlite3.16) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune.30) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.12) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not conf-pkg-config.2) + (and + (not conf-pkg-config.4) + (not conf-pkg-config.1) + (not conf-pkg-config.3) + ) + ) + (or + (not sqlite3.10) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not conf-pkg-config.3) + (and + (not conf-pkg-config.4) + (not conf-pkg-config.1) + (not conf-pkg-config.2) + ) + ) + (or + (not dune-private-libs.6) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune-configurator.7) + (and + dune-private-libs.4 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not sqlite3.8) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune.24) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.5) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not sqlite3.18) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not octavius.4) + (and + (not octavius.2) + (not octavius.6) + (not octavius.5) + (not octavius.1) + (not octavius.3) + ) + ) + (or + (not dune.10) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-private-libs.14) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not sqlite3.26) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-private-libs.7) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.8) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune-configurator.12) + (and + dune-private-libs.9 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.12) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not jbuilder.21) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not ppx%5fderivers.1) + (not ppx%5fderivers.2) + ) + (or + (not dune-configurator.11) + (and + dune-private-libs.8 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + (not conf-gtksourceview.1) + ) + (or + (not topkg.11) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.9) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune-private-libs.8) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.4) + (not dune-private-libs.9) + ) + ) + (or + (not dune.34) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.14) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune-private-libs.4) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.9) + ) + ) + (or + (not alt-ergo.6) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not result.2) + (and + (not result.4) + (not result.6) + (not result.1) + (not result.3) + (not result.5) + ) + ) + (or + (not cppo%5focamlbuild.2) + (and + (not cppo%5focamlbuild.3) + (not cppo%5focamlbuild.1) + ) + ) + (or + (not octavius.3) + (and + (not octavius.2) + (not octavius.6) + (not octavius.5) + (not octavius.1) + (not octavius.4) + ) + ) + (or + (not sqlite3.23) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune.52) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not ppx%5ftools%5fversioned.6) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not psmt2-frontend.1) + (and + (not psmt2-frontend.3) + (not psmt2-frontend.4) + (not psmt2-frontend.2) + ) + ) + (or + (not jbuilder.16) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not sqlite3.19) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + (not conf-ncurses.1) + ) + (or + (not jbuilder.25) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not psmt2-frontend.4) + (and + (not psmt2-frontend.3) + (not psmt2-frontend.1) + (not psmt2-frontend.2) + ) + ) + (or + (not alt-ergo.7) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.12) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + (not jbuilder.20) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not dune.38) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not ppx%5ftools%5fversioned.7) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.11) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not topkg.9) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.12) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not topkg.12) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.16) + (not topkg.14) + ) + ) + (or + (not dune.27) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not dune.20) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.9) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not cppo%5focamlbuild.1) + (and + (not cppo%5focamlbuild.3) + (not cppo%5focamlbuild.2) + ) + ) + (or + (not sqlite3.11) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.12) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not dune-configurator.18) + (and + dune-private-libs.14 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + ) + ) + (or + (not conf-gmp.1) + (and + (not conf-gmp.3) + (not conf-gmp.2) + ) + ) + (or + (not topkg.16) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.14) + ) + ) + (or + (not dune-private-libs.9) + (and + (not dune-private-libs.13) + (not dune-private-libs.3) + (not dune-private-libs.10) + (not dune-private-libs.11) + (not dune-private-libs.2) + (not dune-private-libs.5) + (not dune-private-libs.12) + (not dune-private-libs.6) + (not dune-private-libs.14) + (not dune-private-libs.7) + (not dune-private-libs.8) + (not dune-private-libs.4) + ) + ) + (or + (not jbuilder.15) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.3) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not psmt2-frontend.2) + (and + (not psmt2-frontend.3) + (not psmt2-frontend.1) + (not psmt2-frontend.4) + ) + ) + (or + (not sexplib0.4) + (and + (not sexplib0.2) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not jbuilder.3) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.19) + (not jbuilder.24) + ) + ) + (or + (not sqlite3.12) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.17) + (not sqlite3.22) + ) + ) + (or + (not alt-ergo-lib.1) + (and + (not alt-ergo-lib.4) + (not alt-ergo-lib.2) + (not alt-ergo-lib.3) + ) + ) + (or + (not sexplib0.8) + (and + (not sexplib0.2) + (not sexplib0.4) + (not sexplib0.6) + ) + ) + (or + (not dune.12) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.57) + (not dune.26) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not alt-ergo.12) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.5) + (not alt-ergo.8) + ) + ) + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + (not conf-gtk2.1) + ) + (or + (not ppx%5ftools%5fversioned.11) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.5) + ) + ) + (or + (not dune-configurator.6) + (and + dune-private-libs.3 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not sexplib0.6) + (and + (not sexplib0.2) + (not sexplib0.4) + (not sexplib0.8) + ) + ) + (or + (not ocamlfind-secondary.1) + (and + ocamlfind.26 + (or + ocaml-secondary-compiler.2 + ocaml-secondary-compiler.1 + ) + ) + ) + (or + (not dune.26) + (and + (not jbuilder.17) + (not jbuilder.14) + (not dune.9) + (not jbuilder.7) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not jbuilder.22) + (not dune.43) + (not jbuilder.11) + (not dune.7) + (not dune.44) + (not jbuilder.8) + (not jbuilder.10) + (not dune.59) + (not dune.50) + (not jbuilder.23) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not jbuilder.4) + (not dune.40) + (not dune.17) + (not dune.33) + (not jbuilder.13) + (not jbuilder.2) + (not dune.4) + (not jbuilder.6) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not jbuilder.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not jbuilder.12) + (not dune.68) + (not dune.24) + (not jbuilder.5) + (not dune.10) + (not jbuilder.21) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.16) + (not jbuilder.20) + (not dune.38) + (not dune.27) + (not dune.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not dune.12) + (not dune.57) + (not jbuilder.19) + (not jbuilder.24) + (not dune.51) + ) + ) + (or + (not jbuilder.19) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.24) + ) + ) + (or + (not alt-ergo.5) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.8) + ) + ) + (or + (not alt-ergo.8) + (and + (not alt-ergo.9) + (not alt-ergo.11) + (not alt-ergo.4) + (not alt-ergo.3) + (not alt-ergo.2) + (not alt-ergo.10) + (not alt-ergo.6) + (not alt-ergo.7) + (not alt-ergo.12) + (not alt-ergo.5) + ) + ) + (or + (not sqlite3.17) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.22) + ) + ) + (or + (not sqlite3.22) + (and + (not sqlite3.21) + (not sqlite3.20) + (not sqlite3.25) + (not sqlite3.15) + (not sqlite3.13) + (not sqlite3.9) + (not sqlite3.14) + (not sqlite3.16) + (not sqlite3.10) + (not sqlite3.8) + (not sqlite3.18) + (not sqlite3.26) + (not sqlite3.23) + (not sqlite3.19) + (not sqlite3.11) + (not sqlite3.12) + (not sqlite3.17) + ) + ) + (or + (not ppx%5ftools%5fversioned.5) + (and + (not ppx%5ftools%5fversioned.10) + (not ppx%5ftools%5fversioned.9) + (not ppx%5ftools%5fversioned.8) + (not ppx%5ftools%5fversioned.12) + (not ppx%5ftools%5fversioned.6) + (not ppx%5ftools%5fversioned.7) + (not ppx%5ftools%5fversioned.11) + ) + ) + (or + (not jbuilder.24) + (and + (not jbuilder.17) + (not jbuilder.14) + (not jbuilder.7) + (not jbuilder.22) + (not jbuilder.11) + (not jbuilder.8) + (not jbuilder.10) + (not jbuilder.23) + (not jbuilder.4) + (not jbuilder.13) + (not jbuilder.2) + (not jbuilder.6) + (not jbuilder.18) + (not jbuilder.12) + (not jbuilder.5) + (not jbuilder.21) + (not jbuilder.16) + (not jbuilder.25) + (not jbuilder.20) + (not jbuilder.9) + (not jbuilder.15) + (not jbuilder.3) + (not jbuilder.19) + ) + ) + (or + (not topkg.14) + (and + (not topkg.8) + (not topkg.15) + (not topkg.5) + (not topkg.13) + (not topkg.6) + (not topkg.4) + (not topkg.3) + (not topkg.7) + (not topkg.11) + (not topkg.9) + (not topkg.12) + (not topkg.16) + ) + ) + (or + (not alt-ergo-lib.3) + (and + (not alt-ergo-lib.4) + (not alt-ergo-lib.2) + (not alt-ergo-lib.1) + ) + ) + (or + (not dune-configurator.10) + (and + dune-private-libs.7 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not dune.51) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune.57) + (not dune.26) + ) + ) + (or + (not ocamlgraph.12) + (not ocamlgraph.9) + ) + (or + (not lwt.24) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.26) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not dune.51) + ) + ) + (or + (not dune-configurator.10) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + ) + ) + (or + (not base.14) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + ) + ) + (or + (not lablgtk.14) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.13) + ) + ) + (or + (not dune-configurator.20) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.10) + ) + ) + (or + (not lwt.23) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.26) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.24) + (not dune.51) + ) + ) + (or + (not zarith.9) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + ) + ) + (or + (not ocaml-migrate-parsetree.33) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + ) + ) + (or + (not lwt.43) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.51) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not ocaml-migrate-parsetree.28) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not lwt.25) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.26) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + (not dune.51) + ) + ) + (or + (not dune.57) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.26) + (not dune.51) + ) + ) + (or + (not lwt.34) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.47) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune-configurator.6) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lwt.36) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not camlp5.24) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + ) + ) + (or + (not stdio.7) + (and + (not stdio.13) + (not stdio.11) + (not stdio.9) + ) + ) + (or + (not ocaml-migrate-parsetree.32) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune-configurator.18) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not cppo.18) + (and + (not cppo.21) + (not cppo.22) + (not cppo.19) + (not cppo.17) + (not cppo.20) + ) + ) + (or + (not seq.4) + (not seq.5) + ) + (or + (not lwt.38) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not base.17) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.14) + ) + ) + (or + (not lwt.26) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not dune.69) + (not lwt.29) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.44) + (not dune.59) + (not dune.50) + (not lwt.32) + (not dune.72) + (not dune.62) + (not lwt.39) + (not dune.64) + (not dune.61) + (not dune.40) + (not dune.33) + (not lwt.22) + (not dune.54) + (not lwt.30) + (not dune.66) + (not dune.36) + (not lwt.41) + (not dune.25) + (not lwt.50) + (not lwt.46) + (not dune.41) + (not dune.48) + (not dune.29) + (not dune.35) + (not lwt.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.34) + (not dune.56) + (not dune.52) + (not dune.38) + (not lwt.38) + (not dune.27) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not dune.57) + (not dune.26) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + (not dune.51) + ) + ) + (or + (not cppo.20) + (and + (not cppo.21) + (not cppo.22) + (not cppo.19) + (not cppo.17) + (not cppo.18) + ) + ) + (or + (not zarith.4) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.9) + ) + ) + (or + (not ocaml-migrate-parsetree.19) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not base.18) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.17) + (not base.14) + ) + ) + (or + (not zarith.7) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not camlzip.6) + (and + (not camlzip.7) + (not camlzip.5) + (not camlzip.4) + (not camlzip.3) + ) + ) + (or + (not cppo.17) + (and + (not cppo.21) + (not cppo.22) + (not cppo.19) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not ocaml-migrate-parsetree.30) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune.56) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not sexplib.60) + (and + (not sexplib.58) + (not sexplib0.2) + (not sexplib0.4) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not dune-configurator.11) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune-configurator.21) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not sexplib0.2) + (and + (not sexplib.58) + (not sexplib.60) + (not sexplib0.4) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not dune-configurator.12) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not ocaml-migrate-parsetree.17) + (and + (not dune.9) + (not ocaml-migrate-parsetree.26) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not ocaml-migrate-parsetree.24) + (not dune.43) + (not dune.7) + (not dune.44) + (not ocaml-migrate-parsetree.27) + (not dune.59) + (not dune.50) + (not ocaml-migrate-parsetree.31) + (not dune.72) + (not dune.62) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune.61) + (not dune.3) + (not ocaml-migrate-parsetree.20) + (not dune.40) + (not ocaml-migrate-parsetree.23) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune.25) + (not ocaml-migrate-parsetree.18) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not ocaml-migrate-parsetree.30) + (not dune.52) + (not ocaml-migrate-parsetree.19) + (not dune.38) + (not dune.27) + (not dune.20) + (not ocaml-migrate-parsetree.32) + (not dune.12) + (not dune.57) + (not dune.26) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + (not dune.51) + ) + ) + (or + (not stdio.11) + (and + (not stdio.13) + (not stdio.7) + (not stdio.9) + ) + ) + (or + (not dune.68) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune-configurator.7) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not ocamlfind.26) + (not ocamlfind.25) + ) + (or + (not camlzip.3) + (and + (not camlzip.7) + (not camlzip.5) + (not camlzip.4) + (not camlzip.6) + ) + ) + (or + (not camlzip.4) + (and + (not camlzip.7) + (not camlzip.5) + (not camlzip.3) + (not camlzip.6) + ) + ) + (or + (not camlp5.21) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.24) + ) + ) + (or + (not lwt.35) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not zarith.13) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not dune-configurator.16) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lablgtk.13) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.14) + ) + ) + (or + (not cppo.19) + (and + (not cppo.21) + (not cppo.22) + (not cppo.17) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not camlp5.22) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not camlp5.23) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.18) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not lwt.46) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not ocaml-migrate-parsetree.18) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not lwt.50) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune-configurator.9) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lwt.41) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune.66) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not lwt.30) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not zarith.14) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not dune-configurator.22) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not lwt.22) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not dune-configurator.17) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not sexplib.58) + (and + (not sexplib0.2) + (not sexplib.60) + (not sexplib0.4) + (not sexplib0.8) + (not sexplib0.6) + ) + ) + (or + (not base.16) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.20) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not dune-configurator.23) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not cppo.22) + (and + (not cppo.21) + (not cppo.19) + (not cppo.17) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not base.20) + (and + (not base.24) + (not base.21) + (not base.22) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not ocaml-migrate-parsetree.23) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not base.22) + (and + (not base.24) + (not base.21) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not num.6) + (and + (not num.2) + (not num.3) + (not num.5) + (not num.4) + ) + ) + (or + (not ocaml-migrate-parsetree.20) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune-configurator.14) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.61) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not camlzip.5) + (and + (not camlzip.7) + (not camlzip.4) + (not camlzip.3) + (not camlzip.6) + ) + ) + (or + (not dune-configurator.5) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.64) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not lwt.39) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not camlp5.18) + (and + (not camlp5.17) + (not camlp5.20) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not dune-configurator.2) + (and + (not dune-configurator.13) + (not dune-configurator.8) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.62) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune.72) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not ocaml-migrate-parsetree.31) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not base.21) + (and + (not base.24) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not lwt.32) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not num.4) + (and + (not num.2) + (not num.3) + (not num.5) + (not num.6) + ) + ) + (or + (not lablgtk.11) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not dune.59) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not stdio.13) + (and + (not stdio.11) + (not stdio.7) + (not stdio.9) + ) + ) + (or + (not camlzip.7) + (and + (not camlzip.5) + (not camlzip.4) + (not camlzip.3) + (not camlzip.6) + ) + ) + (or + (not zarith.6) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not dune-configurator.8) + (and + (not dune-configurator.13) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not base.24) + (and + (not base.21) + (not base.22) + (not base.20) + (not base.16) + (not base.18) + (not base.17) + (not base.14) + ) + ) + (or + (not ocaml-migrate-parsetree.27) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not zarith.3) + (and + (not zarith.8) + (not zarith.12) + (not zarith.5) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not num.5) + (and + (not num.2) + (not num.3) + (not num.4) + (not num.6) + ) + ) + (or + (not configurator.7) + (not jbuilder.20) + ) + (or + (not camlp5.20) + (and + (not camlp5.17) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not camlp5.17) + (and + (not camlp5.20) + (not camlp5.18) + (not camlp5.23) + (not camlp5.22) + (not camlp5.21) + (not camlp5.24) + ) + ) + (or + (not zarith.5) + (and + (not zarith.8) + (not zarith.12) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not ocamlbuild.6) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.4) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + (not ocamlbuild.5) + (and + (not ocamlbuild.8) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + why3.20 + why3.26 + why3.24 + why3.23 + why3.21 + why3.27 + why3.28 + why3.22 + why3.25 + ) + (or + (not lablgtk.15) + (and + (not lablgtk.10) + (not lablgtk.12) + (not lablgtk.11) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not why3.26) + (and + (not why3.20) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not lablgtk.12) + (and + (not lablgtk.10) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not ocaml-migrate-parsetree.24) + (and + (not ocaml-migrate-parsetree.26) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not dune-configurator.13) + (and + (not dune-configurator.8) + (not dune-configurator.2) + (not dune-configurator.5) + (not dune-configurator.14) + (not dune-configurator.23) + (not dune-configurator.17) + (not dune-configurator.22) + (not dune-configurator.9) + (not dune-configurator.16) + (not dune-configurator.7) + (not dune-configurator.12) + (not dune-configurator.21) + (not dune-configurator.11) + (not dune-configurator.18) + (not dune-configurator.6) + (not dune-configurator.20) + (not dune-configurator.10) + ) + ) + (or + (not dune.71) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.65) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not dune.65) + (and + (not dune.9) + (not dune.69) + (not dune.42) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not zarith.12) + (and + (not zarith.8) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not zarith.8) + (and + (not zarith.12) + (not zarith.5) + (not zarith.3) + (not zarith.6) + (not zarith.14) + (not zarith.13) + (not zarith.7) + (not zarith.4) + (not zarith.9) + ) + ) + (or + (not cppo.21) + (and + (not cppo.22) + (not cppo.19) + (not cppo.17) + (not cppo.20) + (not cppo.18) + ) + ) + (or + (not ocplib-endian.8) + (not ocplib-endian.9) + ) + (or + (not lwt.29) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not ocamlbuild.8) + (and + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + (not dune.69) + (and + (not dune.9) + (not dune.42) + (not dune.65) + (not dune.71) + (not dune.31) + (not dune.43) + (not dune.7) + (not dune.44) + (not dune-configurator.8) + (not dune.59) + (not dune.50) + (not dune.72) + (not dune.62) + (not dune-configurator.2) + (not dune.19) + (not dune.16) + (not dune.64) + (not dune-configurator.5) + (not dune.61) + (not dune.3) + (not dune.40) + (not dune.17) + (not dune.33) + (not dune.4) + (not dune.6) + (not dune.54) + (not dune.66) + (not dune.36) + (not dune-configurator.9) + (not dune.25) + (not dune.41) + (not dune.21) + (not dune.48) + (not dune.29) + (not dune.22) + (not dune.35) + (not dune.30) + (not dune-configurator.7) + (not dune.68) + (not dune.24) + (not dune.10) + (not dune.34) + (not dune.14) + (not dune.56) + (not dune.52) + (not jbuilder.25) + (not dune.38) + (not dune.27) + (not dune.20) + (not dune.12) + (not dune-configurator.6) + (not dune.57) + (not dune.26) + (not dune.51) + ) + ) + (or + (not why3.20) + (and + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not lablgtk.10) + (and + (not lablgtk.12) + (not lablgtk.15) + (not lablgtk.11) + (not lablgtk.13) + (not lablgtk.14) + ) + ) + (or + (not ocaml-migrate-parsetree.26) + (and + (not ocaml-migrate-parsetree.24) + (not ocaml-migrate-parsetree.27) + (not ocaml-migrate-parsetree.31) + (not ocaml-migrate-parsetree.20) + (not ocaml-migrate-parsetree.23) + (not ocaml-migrate-parsetree.18) + (not ocaml-migrate-parsetree.17) + (not ocaml-migrate-parsetree.30) + (not ocaml-migrate-parsetree.19) + (not ocaml-migrate-parsetree.32) + (not ocaml-migrate-parsetree.28) + (not ocaml-migrate-parsetree.33) + ) + ) + (or + (not lwt.40) + (and + (not lwt.49) + (not lwt.44) + (not lwt.45) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.45) + (and + (not lwt.49) + (not lwt.44) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.44) + (and + (not lwt.49) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not lwt.49) + (and + (not lwt.44) + (not lwt.45) + (not lwt.40) + (not lwt.29) + (not lwt.32) + (not lwt.39) + (not lwt.22) + (not lwt.30) + (not lwt.41) + (not lwt.50) + (not lwt.46) + (not lwt.35) + (not lwt.26) + (not lwt.38) + (not lwt.36) + (not lwt.47) + (not lwt.34) + (not lwt.25) + (not lwt.51) + (not lwt.43) + (not lwt.23) + (not lwt.24) + ) + ) + (or + (not num.3) + (and + (not num.2) + (not num.5) + (not num.4) + (not num.6) + ) + ) + (or + (not num.2) + (and + (not num.3) + (not num.5) + (not num.4) + (not num.6) + ) + ) + (or + (not jbuilder.17) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not num.2) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not jbuilder.14) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not num.3) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not lwt.49) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not menhir.40) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.44) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lwt.45) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not jbuilder.7) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not lwt.40) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lablgtk.10) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not dune.69) + ocamlfind-secondary.1 + ) + (or + (not lwt.29) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not ocplib-endian.8) + (and + base-bytes.2 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.38) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not dose3.5) + (and + cudf.5 + re.23 + extlib.14 + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlgraph.12 + ocamlgraph.9 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocplib-simplex.1) + (and + conf-autoconf.1 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.8) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not zarith.8) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not zarith.12) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not base-bytes.2) + ocamlfind.26 + ocamlfind.25 + ) + (or + (not sqlite3.21) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not lablgtk.12) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.24) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lablgtk.15) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.20) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.9) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + (not zarith.5) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.15) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.31) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.20) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not alt-ergo-lib.4) + (and + ocplib-simplex.2 + stdlib-shims.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not configurator.7) + (and + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + stdio.11 + stdio.7 + stdio.9 + ) + (or + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.11) + ocamlfind.25 + ) + (or + ocamlfind.26 + (not num.5) + ocamlfind.25 + ) + (or + (not zarith.3) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not sqlite3.25) + (and + conf-sqlite3.1 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not base.24) + (and + sexplib0.8 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not menhir.43) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocplib-simplex.2) + (and + conf-autoconf.1 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not ocamlbuild.4) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.3) + (not ocamlbuild.7) + ) + ) + (or + ocamlfind.26 + (not jbuilder.8) + ocamlfind.25 + ) + (or + (not zarith.6) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not camlzip.7) + (and + conf-zlib.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not stdio.13) + (and + base.24 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not menhir.39) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.10) + ocamlfind.25 + ) + (or + (not menhir.21) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.5) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not octavius.2) + (and + (or + topkg.8 + topkg.15 + topkg.5 + topkg.13 + topkg.6 + topkg.4 + topkg.3 + topkg.7 + topkg.11 + topkg.9 + topkg.12 + topkg.16 + topkg.14 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not ppx%5ftools.13) + ocamlfind.25 + ) + (or + (not lablgtk.11) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.33) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not num.4) + ocamlfind.25 + ) + (or + (not lwt.32) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not dot-merlin-reader.3) + (and + result.6 + yojson.18 + (or + csexp.7 + csexp.8 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.13) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not alt-ergo.4) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not base.21) + (and + sexplib0.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not alt-ergo.3) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + ocamlgraph.12 + ocamlgraph.9 + ) + ) + ) + (or + (not topkg.6) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.39) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not menhir.27) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ppx%5fast.4) + (and + ocaml-compiler-libs.2 + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.4 + jbuilder.13 + jbuilder.2 + jbuilder.6 + jbuilder.18 + jbuilder.12 + jbuilder.5 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.3 + jbuilder.19 + jbuilder.24 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + (not camlzip.5) + (and + conf-zlib.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not octavius.1) + (and + (or + topkg.8 + topkg.15 + topkg.5 + topkg.13 + topkg.6 + topkg.4 + topkg.3 + topkg.7 + topkg.11 + topkg.9 + topkg.12 + topkg.16 + topkg.14 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.15) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not num.6) + ocamlfind.25 + ) + (or + (not base.22) + (and + sexplib0.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not base.20) + (and + sexplib0.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not alt-ergo.2) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + ocamlgraph.12 + ocamlgraph.9 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.13) + ocamlfind.25 + ) + (or + (not topkg.4) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.13) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sexplib.58) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.6) + ocamlfind.25 + ) + (or + (not cppo%5focamlbuild.3) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.22) + (and + ppx%5ftools.13 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + cppo%5focamlbuild.3 + cppo%5focamlbuild.2 + cppo%5focamlbuild.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not user-setup.7) + (and + re.23 + cmdliner.14 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not yojson.18) + (and + biniou.9 + easy-format.7 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not menhir.22) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not zarith.14) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not lwt.30) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not lwt.41) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lwt.50) + (and + ocaml-syntax-shims.1 + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not sqlite3.9) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocaml-migrate-parsetree.18) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.29) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.18) + ocamlfind.25 + ) + (or + (not ppx%5ftools%5fversioned.8) + (and + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + (not lwt.46) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not cppo.19) + (and + base-bytes.2 + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not why3.24) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.24) + (and + (not why3.20) + (not why3.26) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not sqlite3.14) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.3) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lablgtk.13) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not ocplib-endian.9) + (and + base-bytes.2 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not menhir.45) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not zarith.13) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not menhir.28) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.7) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.35) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + mmap.1 + mmap.2 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not alt-ergo-lib.2) + (and + ocplib-simplex.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + ocamlfind.26 + (not camlzip.4) + ocamlfind.25 + ) + (or + (not sqlite3.16) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not jbuilder.12) + ocamlfind.25 + ) + (or + (not sqlite3.10) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not z3.10) + (and + conf-python-2-7.2 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not cudf.5) + (and + extlib.14 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + (not camlzip.3) + ocamlfind.25 + ) + (or + (not menhir.42) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.8) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not dune.68) + ocamlfind-secondary.1 + ) + (or + (not menhir.26) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.5) + ) + (or + (not sqlite3.18) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not ocaml-migrate-parsetree.17) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not octavius.4) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not why3.23) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.23) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not sqlite3.26) + (and + conf-sqlite3.1 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not menhir.41) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not re.23) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not menhir.36) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sexplib.60) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + ) + ) + (or + (not topkg.11) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocamlbuild.3) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.7) + ) + ) + (or + (not why3.21) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.21) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.27) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not cppo%5focamlbuild.2) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + cppo.21 + cppo.22 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not cppo.17) + (and + base-bytes.2 + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not camlzip.6) + (and + conf-zlib.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not octavius.3) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not sqlite3.23) + (and + conf-sqlite3.1 + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + (not stdlib-shims.2) + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + (not zarith.7) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.6) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.16) + ) + (or + (not ocp-indent.28) + (and + base-bytes.2 + cmdliner.14 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not sqlite3.19) + (and + configurator.7 + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not base.18) + (and + sexplib0.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not menhir.25) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.32) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not why3.27) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not why3.27) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.28) + (not why3.22) + (not why3.25) + ) + ) + (or + (not ppx%5ftools%5fversioned.7) + (and + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + (not zarith.4) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not why3.28) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not why3.28) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.22) + (not why3.25) + ) + ) + (or + (not menhir.23) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.26) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not base.17) + (and + sexplib0.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + ) + ) + (or + (not lwt.38) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not topkg.9) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.12) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not extlib.14) + (and + base-bytes.2 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not cppo.18) + (and + base-bytes.2 + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not why3.22) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not why3.22) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.25) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.9) + ) + (or + (not cppo%5focamlbuild.1) + (and + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.11) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not menhir.44) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not topkg.16) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not ocamlbuild.7) + (and + (not ocamlbuild.8) + (not ocamlbuild.5) + (not ocamlbuild.6) + (not ocamlbuild.4) + (not ocamlbuild.3) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.15) + ) + (or + (not stdio.7) + (and + base.14 + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + (not sqlite3.12) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not alt-ergo-lib.1) + (and + ocplib-simplex.2 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not menhir.30) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.36) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + mmap.1 + mmap.2 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not lwt.47) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not lwt.34) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + mmap.1 + mmap.2 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + ) + ) + (or + (not menhir.37) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.25) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not jbuilder.19) + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + (not camlp4.22) + ) + (or + (not alt-ergo.5) + (and + ocplib-simplex.1 + (or + zarith.8 + zarith.12 + zarith.5 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + camlzip.4 + camlzip.3 + ) + ) + ) + (or + (not menhir.46) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not sqlite3.17) + (and + conf-sqlite3.1 + (or + conf-pkg-config.4 + conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not lwt.51) + (and + ocaml-syntax-shims.1 + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not sqlite3.22) + (and + configurator.7 + conf-sqlite3.1 + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + base.24 + base.21 + base.22 + base.20 + base.16 + base.18 + base.17 + base.14 + ) + (or + stdio.13 + stdio.11 + stdio.7 + stdio.9 + ) + ) + ) + (or + (not lwt.43) + (and + mmap.2 + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.57 + dune.26 + dune.51 + ) + (or + dune-configurator.13 + dune-configurator.8 + dune-configurator.2 + dune-configurator.5 + dune-configurator.14 + dune-configurator.23 + dune-configurator.17 + dune-configurator.22 + dune-configurator.9 + dune-configurator.16 + dune-configurator.7 + dune-configurator.12 + dune-configurator.21 + dune-configurator.11 + dune-configurator.18 + dune-configurator.6 + dune-configurator.20 + dune-configurator.10 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + (or + seq.4 + seq.5 + ) + (or + ocplib-endian.8 + ocplib-endian.9 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.5) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ) + ) + ) + (or + (not zarith.9) + (and + conf-perl.1 + (or + conf-gmp.3 + conf-gmp.2 + conf-gmp.1 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not topkg.14) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not alt-ergo-lib.3) + (and + ocplib-simplex.2 + stdlib-shims.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + seq.4 + seq.5 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + ) + ) + (or + (not lwt.23) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.11 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + (not menhir.34) + (and + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocamlbuild.8 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.4 + ocamlbuild.3 + ocamlbuild.7 + ) + ) + ) + (or + (not stdio.9) + (and + (not stdio.13) + (not stdio.11) + (not stdio.7) + ) + ) + (or + (not lablgtk.14) + (and + conf-gtk2.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + ) + ) + (or + (not why3.25) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not why3.25) + (and + (not why3.20) + (not why3.26) + (not why3.24) + (not why3.23) + (not why3.21) + (not why3.27) + (not why3.28) + (not why3.22) + ) + ) + (or + (not lwt.24) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.12 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.5 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + (or + cppo.21 + cppo.22 + cppo.19 + cppo.17 + cppo.20 + cppo.18 + ) + ) + ) + (or + ocamlfind.26 + ocamlfind.25 + (not ocamlgraph.9) + ) + (or + (not base.14) + (and + sexplib0.2 + (or + jbuilder.22 + jbuilder.23 + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + (not menhirSdk.8) + dune.51 + ) + (or + (not stdio.9) + (and + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + base.16 + base.18 + base.17 + ) + ) + ) + (or + dune.69 + dune.71 + dune.72 + dune.68 + (not dune-configurator.20) + ) + (or + (not ocaml-migrate-parsetree.33) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + (not menhir.56) + (and + menhirLib.10 + menhirSdk.10 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ocaml-migrate-parsetree.28) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + (not menhirLib.5) + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + (not sexplib0.6) + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirLib.9) + dune.57 + dune.51 + ) + (or + (not ppx%5ftools%5fversioned.11) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.2) + dune.57 + dune.51 + ) + (or + (not alt-ergo.12) + (and + alt-ergo-lib.4 + alt-ergo-parsers.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + conf-perl.1 + (not camlp5.24) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not sexplib0.8) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.4) + dune.57 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + (not sexplib0.4) + dune.57 + dune.26 + dune.51 + ) + (or + (not menhir.49) + (and + menhirLib.3 + menhirSdk.3 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + (not dune-private-libs.9) + dune.57 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + (not mmap.2) + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.9) + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.32) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.10) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.3) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirLib.10) + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not ocaml-syntax-shims.1) + dune.57 + dune.51 + ) + (or + jbuilder.17 + jbuilder.22 + jbuilder.23 + jbuilder.18 + jbuilder.21 + jbuilder.25 + jbuilder.20 + (not cppo.20) + jbuilder.19 + jbuilder.24 + ) + (or + conf-emacs.1 + (not tuareg.6) + ) + (or + (not ocaml-migrate-parsetree.19) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + ) + ) + (or + dune.9 + dune.42 + dune.31 + dune.43 + dune.7 + dune.44 + dune.19 + dune.16 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.36 + dune.25 + dune.41 + dune.21 + dune.29 + dune.22 + dune.35 + dune.30 + dune.24 + dune.10 + dune.34 + dune.14 + (not jbuilder.25) + dune.38 + dune.27 + dune.20 + dune.12 + dune.26 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + (not menhirSdk.1) + dune.57 + dune.51 + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + (not ppx%5fderivers.2) + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + (not menhirLib.6) + dune.52 + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.30) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + (not dune-private-libs.4) + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + (not dune-private-libs.8) + dune.56 + dune.57 + ) + (or + (not csexp.8) + (and + result.6 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not dune-configurator.21) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + csexp.7 + csexp.8 + ) + (or + dune.69 + dune.71 + dune.72 + dune.68 + ) + ) + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + (not ppx%5fderivers.1) + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + (not menhir.51) + (and + menhirSdk.5 + menhirLib.5 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.12) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + jbuilder.22 + jbuilder.23 + (not sexplib0.2) + jbuilder.21 + jbuilder.25 + jbuilder.20 + jbuilder.19 + jbuilder.24 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + (not dune-private-libs.7) + dune.56 + dune.57 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + (not menhirLib.1) + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + (not dune-private-libs.14) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + (not menhirLib.4) + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.54) + (and + menhirLib.8 + menhirSdk.8 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not stdio.11) + (and + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + base.21 + base.22 + base.20 + ) + ) + ) + (or + (not ocamlfind.25) + conf-m4.1 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + (not menhirLib.2) + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + (not dune-private-libs.6) + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + (not easy-format.7) + dune.68 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + (not menhir.53) + (and + menhirSdk.7 + menhirLib.7 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not merlin.46) + (and + result.6 + dot-merlin-reader.3 + yojson.18 + (or + csexp.7 + csexp.8 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.29 + dune.35 + dune.30 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + ) + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.4 + jbuilder.13 + jbuilder.6 + jbuilder.18 + (not ocaml-compiler-libs.2) + jbuilder.12 + jbuilder.5 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + (not menhirLib.3) + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.48) + (and + menhirLib.2 + menhirSdk.2 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + (not dune-private-libs.12) + dune.66 + dune.68 + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + jbuilder.4 + jbuilder.13 + jbuilder.6 + (not ppx%5ftraverse%5fbuiltins.2) + jbuilder.18 + jbuilder.12 + jbuilder.5 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + (not dune-configurator.22) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + csexp.7 + csexp.8 + ) + (or + dune.71 + dune.72 + ) + ) + ) + (or + (not alt-ergo.10) + (and + alt-ergo-parsers.2 + alt-ergo-lib.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + (not ocamlgraph.12) + (and + stdlib-shims.2 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not base.16) + (and + sexplib0.4 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + (not menhir.50) + (and + menhirLib.4 + menhirSdk.4 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not dune-configurator.23) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + csexp.7 + csexp.8 + ) + (or + dune.71 + dune.72 + ) + ) + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + (not cppo.22) + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + (not dune-private-libs.5) + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.23) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + (not result.5) + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.20) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + (not menhirLib.8) + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.52) + (and + menhirSdk.6 + menhirLib.6 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + (not menhirSdk.6) + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not dune.72) + ocamlfind-secondary.1 + ) + (or + (not ocaml-migrate-parsetree.31) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + jbuilder.17 + jbuilder.14 + jbuilder.7 + jbuilder.22 + jbuilder.11 + jbuilder.8 + jbuilder.10 + jbuilder.23 + (not octavius.5) + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.9 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + (not dune-private-libs.2) + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + (not menhirLib.7) + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + (not mmap.1) + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + (not seq.4) + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + (not octavius.6) + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not alt-ergo.11) + (and + alt-ergo-parsers.3 + alt-ergo-lib.3 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + (not mccs.9) + (and + cudf.5 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + (not dune-private-libs.11) + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + (or + (not ocaml-migrate-parsetree.27) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + (not dune-private-libs.10) + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + dune.56 + dune.57 + ) + (or + (not ocamlfind.26) + conf-m4.1 + ) + (or + (not biniou.9) + (and + easy-format.7 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.54 + dune.66 + dune.41 + dune.48 + dune.68 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + ) + ) + (or + dune.69 + dune.65 + dune.71 + (not menhirSdk.5) + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.24) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + (not dune.71) + ocamlfind-secondary.1 + ) + (or + dune.69 + (not menhirSdk.7) + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + dune.69 + (not dune-private-libs.3) + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + (or + (not menhir.47) + (and + menhirLib.1 + menhirSdk.1 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.48 + dune.68 + dune.56 + dune.52 + dune.57 + dune.51 + ) + ) + ) + (or + (not csexp.7) + (and + result.6 + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + ) + ) + ) + (or + dune.9 + dune.69 + (not cppo.21) + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + dune.9 + dune.69 + (not result.6) + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + (not ocaml-migrate-parsetree.26) + (and + (or + result.4 + result.6 + result.1 + result.3 + result.5 + result.2 + ) + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.64 + dune.61 + dune.40 + dune.33 + dune.54 + dune.66 + dune.36 + dune.41 + dune.48 + dune.35 + dune.68 + dune.34 + dune.56 + dune.52 + dune.38 + dune.57 + dune.51 + ) + (or + ppx%5fderivers.1 + ppx%5fderivers.2 + ) + ) + ) + (or + (not dune-private-libs.13) + dune.69 + dune.65 + dune.71 + dune.72 + dune.62 + dune.64 + dune.61 + dune.66 + dune.68 + ) + (or + jbuilder.17 + jbuilder.14 + (not result.4) + jbuilder.22 + jbuilder.11 + jbuilder.23 + jbuilder.13 + jbuilder.18 + jbuilder.12 + jbuilder.21 + jbuilder.16 + jbuilder.25 + jbuilder.20 + jbuilder.15 + jbuilder.19 + jbuilder.24 + ) + (or + (not menhir.55) + (and + menhirSdk.9 + menhirLib.9 + (or + dune.69 + dune.65 + dune.71 + dune.59 + dune.72 + dune.62 + dune.64 + dune.61 + dune.54 + dune.66 + dune.68 + dune.56 + dune.57 + ) + ) + ) + (or + (not ppx%5ftools%5fversioned.10) + (and + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.33 + ) + ) + ) + (or + (not alt-ergo.9) + (and + alt-ergo-parsers.1 + alt-ergo-lib.1 + ) + ) + (or + (not menhirSdk.8) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.34) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + ) + ) + (or + (not menhir.56) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.34) + ) + ) + (or + (not menhir.46) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo.8) + (and + conf-autoconf.1 + ocplib-simplex.2 + psmt2-frontend.1 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + camlzip.4 + camlzip.3 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhirLib.5) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.37) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.9) + (and + (not menhir.40) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.2) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirSdk.4) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhir.30) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not psmt2-frontend.2) + (and + conf-autoconf.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.49) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.9) + (and + (not menhir.40) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhir.44) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.10) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirSdk.3) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirLib.10) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.34) + ) + ) + (or + (not menhir.23) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo.7) + (and + conf-autoconf.1 + ocplib-simplex.2 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + camlzip.4 + camlzip.3 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not psmt2-frontend.4) + (and + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.32) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.25) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.1) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not psmt2-frontend.1) + (and + conf-autoconf.1 + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhirLib.6) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo.6) + (and + conf-autoconf.1 + ocplib-simplex.2 + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + zarith.8 + zarith.12 + zarith.5 + zarith.3 + zarith.6 + zarith.14 + zarith.13 + zarith.7 + zarith.4 + zarith.9 + ) + (or + camlzip.4 + camlzip.3 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.36) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.51) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.41) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.1) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.4) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.54) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.26) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.42) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.2) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not psmt2-frontend.3) + (and + (or + dune.69 + dune.65 + dune.71 + dune.72 + dune.64 + dune.66 + dune.68 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.53) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.3) + (and + stdlib-shims.2 + alt-ergo-lib.3 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.28) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.3) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.45) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.1) + (and + alt-ergo-lib.1 + (or + dune.9 + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.7 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.3 + dune.40 + dune.17 + dune.33 + dune.4 + dune.6 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.10 + dune.34 + dune.14 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.12 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.29) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.48) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.2) + (and + alt-ergo-lib.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.22) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.50) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirLib.8) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirLib.7) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhir.53) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.27) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.52) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.6) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirLib.7) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhirLib.8) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhirLib.3) + (not menhir.28) + (not menhirLib.2) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhirLib.4) + (not menhirLib.1) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirLib.6) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirLib.10) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhirLib.9) + (not menhir.37) + (not menhirLib.5) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.33) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not alt-ergo-parsers.4) + (and + alt-ergo-lib.4 + stdlib-shims.2 + (or + dune.69 + dune.42 + dune.65 + dune.71 + dune.31 + dune.43 + dune.44 + dune.59 + dune.50 + dune.72 + dune.62 + dune.19 + dune.16 + dune.64 + dune.61 + dune.40 + dune.17 + dune.33 + dune.54 + dune.66 + dune.36 + dune.25 + dune.41 + dune.21 + dune.48 + dune.29 + dune.22 + dune.35 + dune.30 + dune.68 + dune.24 + dune.34 + dune.56 + dune.52 + dune.38 + dune.27 + dune.20 + dune.57 + dune.26 + dune.51 + ) + (or + psmt2-frontend.3 + psmt2-frontend.4 + psmt2-frontend.2 + ) + (or + camlzip.7 + camlzip.5 + camlzip.4 + camlzip.3 + camlzip.6 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.21) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.39) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.43) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.31) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.20) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not why3.26) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.55 + menhir.38 + menhir.47 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.52 + menhir.27 + menhir.50 + menhir.22 + menhir.48 + menhir.29 + menhir.45 + menhir.28 + menhir.53 + menhir.42 + menhir.26 + menhir.54 + menhir.41 + menhir.51 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.49 + menhir.30 + menhir.37 + menhir.46 + menhir.56 + menhir.34 + ) + ) + ) + (or + (not menhir.24) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhirSdk.5) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.7) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhirSdk.7) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhirSdk.5) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhirSdk.6) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhirSdk.1) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhirSdk.3) + (not menhirSdk.10) + (not menhir.44) + (not menhirSdk.9) + (not menhir.49) + (not menhir.30) + (not menhirSdk.4) + (not menhirSdk.2) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + (not menhirSdk.8) + ) + ) + (or + (not menhir.47) + (and + (not menhir.40) + (not menhir.55) + (not menhir.38) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not why3.20) + (and + (or + num.2 + num.3 + num.5 + num.4 + num.6 + ) + (or + ocamlfind.26 + ocamlfind.25 + ) + (or + menhir.40 + menhir.38 + menhir.24 + menhir.20 + menhir.31 + menhir.43 + menhir.39 + menhir.21 + menhir.33 + menhir.27 + menhir.22 + menhir.29 + menhir.45 + menhir.28 + menhir.42 + menhir.26 + menhir.41 + menhir.36 + menhir.25 + menhir.32 + menhir.23 + menhir.44 + menhir.30 + menhir.37 + menhir.46 + menhir.34 + ) + ) + ) + (or + (not menhir.40) + (and + (not menhir.55) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.55) + (and + (not menhir.40) + (not menhir.38) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (or + (not menhir.38) + (and + (not menhir.40) + (not menhir.55) + (not menhir.47) + (not menhir.24) + (not menhir.20) + (not menhir.31) + (not menhir.43) + (not menhir.39) + (not menhir.21) + (not menhir.33) + (not menhir.52) + (not menhir.27) + (not menhir.50) + (not menhir.22) + (not menhir.48) + (not menhir.29) + (not menhir.45) + (not menhir.28) + (not menhir.53) + (not menhir.42) + (not menhir.26) + (not menhir.54) + (not menhir.41) + (not menhir.51) + (not menhir.36) + (not menhir.25) + (not menhir.32) + (not menhir.23) + (not menhir.44) + (not menhir.49) + (not menhir.30) + (not menhir.37) + (not menhir.46) + (not menhir.56) + (not menhir.34) + ) + ) + (not (>= (+ !k655 !k654 !k653 !k652 !k651 !k648 !k647 !k646 !k644 !k641 !k639 !k637 !k636 !k634 !k633 !k632 !k631 !k630 !k629 !k628 !k627 !k626 !k623 !k622 !k620 !k618 !k615 !k614 !k613 !k612 !k610 !k609 !k608 !k606 !k605 !k604 !k602 !k600 !k598 !k597 !k596 !k595 !k594 !k593 !k592 !k591 !k589 !k587 !k586 !k585 !k584 !k582 !k579 !k577 !k576 !k575 !k574 !k571 !k570 !k567 !k566 !k564 !k561 !k560 !k559 !k557 !k556 !k555 !k554 !k553 !k552 !k549 !k548 !k547 !k545 !k543 !k542 !k541 !k540 !k537 !k536 !k533 !k530 !k528 !k527 !k526 !k524 !k523 !k522 !k521 !k520 !k517 !k516 !k515 !k511 !k510 !k509 !k508 !k507 !k505 !k503 !k502 !k501 !k500 !k498 !k497 !k495 !k494 !k492 !k491 !k489 !k488 !k483 !k482 !k481 !k480 !k479 !k478 !k477 !k476 !k474 !k473 !k472 !k470 !k469 !k467 !k466 !k465 !k463 !k461 !k458 !k457 !k456 !k455 !k454 !k453 !k451 !k450 !k447 !k446 !k445 !k444 !k442 !k441 !k440 !k438 !k437 !k436 !k435 !k434 !k432 !k431 !k430 !k428 !k427 !k425 !k424 !k423 !k422 !k420 !k418 !k417 !k415 !k414 !k412 !k411 !k410 !k407 !k406 !k405 !k402 !k401 !k400 !k396 !k395 !k394 !k393 !k392 !k391 !k389 !k388 !k387 !k385 !k384 !k383 !k382 !k381 !k378 !k377 !k376 !k375 !k372 !k369 !k368 !k365 !k362 !k361 !k360 !k358 !k354 !k352 !k351 !k350 !k349 !k347 !k346 !k344 !k343 !k342 !k340 !k339 !k338 !k337 !k336 !k334 !k332 !k331 !k330 !k327 !k323 !k322 !k321 !k319 !k317 !k316 !k314 !k313 !k312 !k311 !k310 !k308 !k305 !k303 !k302 !k299 !k298 !k296 !k294 !k292 !k288 !k287 !k285 !k284 !k283 !k282 !k281 !k279 !k276 !k275 !k273 !k272 !k268 !k262 !k260 !k259 !k258 !k257 !k256 !k255 !k254 !k253 !k252 !k249 !k248 !k247 !k246 !k245 !k244 !k243 !k242 !k241 !k240 !k239 !k238 !k237 !k236 !k233 !k232 !k231 !k229 !k227 !k222 !k221 !k220 !k219 !k218 !k217 !k214 !k213 !k211 !k210 !k208 !k207 !k206 !k205 !k204 !k203 !k202 !k200 !k198 !k197 !k195 !k194 !k193 !k192 !k191 !k190 !k189 !k186 !k185 !k184 !k181 !k180 !k179 !k177 !k176 !k175 !k167 !k166 !k165 !k164 !k163 !k161 !k157 !k154 !k152 !k150 !k149 !k148 !k147 !k146 !k145 !k143 !k136 !k134 !k133 !k131 !k129 !k127 !k126 !k123 !k122 !k121 !k120 !k117 !k116 !k115 !k114 !k113 !k112 !k111 !k108 !k107 !k106 !k104 !k103 !k102 !k100 !k99 !k97 !k96 !k93 !k91 !k90 !k89 !k88 !k87 !k85 !k84 !k83 !k82 !k80 !k78 !k77 !k74 !k72 !k70 !k67 !k66 !k63 !k60 !k59 !k58 !k57 !k53 !k52 !k51 !k48 !k43 !k42 !k41 !k39 !k38 !k36 !k35 !k32 !k31 !k29 !k27 !k25 !k24 !k22 !k20 !k16 !k15 !k13 !k10 !k9 !k7 !k2) 100000000000001)) + (not (>= (+ !k560 !k428 !k194) 100000000000001)) + (not (>= (+ !k1179 !k1178 !k1177 !k1176 !k1175 !k1172 !k1171 !k1170 !k1168 !k1164 !k1163 !k1162 !k1160 !k1159 !k1158 !k1157 !k1156 !k1155 !k1154 !k1151 !k1149 !k1147 !k1145 !k1143 !k1142 !k1140 !k1139 !k1137 !k1135 !k1133 !k1132 !k1131 !k1130 !k1129 !k1128 !k1126 !k1124 !k1123 !k1122 !k1119 !k1117 !k1116 !k1113 !k1112 !k1108 !k1105 !k1104 !k1102 !k1101 !k1100 !k1099 !k1096 !k1095 !k1093 !k1091 !k1090 !k1089 !k1084 !k1080 !k1079 !k1078 !k1077 !k1076 !k1075 !k1073 !k1072 !k1068 !k1067 !k1065 !k1063 !k1062 !k1061 !k1060 !k1058 !k1056 !k1054 !k1053 !k1051 !k1050 !k1047 !k1046 !k1045 !k1044 !k1043 !k1042 !k1041 !k1040 !k1038 !k1037 !k1035 !k1034 !k1033 !k1031 !k1029 !k1026 !k1025 !k1024 !k1023 !k1022 !k1021 !k1020 !k1017 !k1016 !k1015 !k1013 !k1012 !k1010 !k1009 !k1008 !k1007 !k1006 !k1004 !k1002 !k1000 !k999 !k998 !k997 !k995 !k993 !k992 !k990 !k988 !k987 !k984 !k983 !k980 !k979 !k975 !k974 !k972 !k971 !k970 !k968 !k967 !k966 !k965 !k964 !k961 !k960 !k959 !k956 !k953 !k950 !k947 !k946 !k945 !k940 !k938 !k937 !k936 !k935 !k934 !k933 !k932 !k931 !k929 !k928 !k927 !k926 !k923 !k922 !k919 !k916 !k915 !k913 !k911 !k909 !k908 !k907 !k906 !k905 !k904 !k900 !k899 !k895 !k892 !k888 !k886 !k885 !k884 !k883 !k882 !k880 !k877 !k876 !k875 !k871 !k865 !k864 !k863 !k862 !k861 !k860 !k859 !k858 !k857 !k854 !k853 !k852 !k851 !k850 !k849 !k848 !k847 !k845 !k844 !k842 !k840 !k836 !k835 !k834 !k833 !k832 !k831 !k828 !k826 !k824 !k823 !k822 !k821 !k820 !k819 !k817 !k815 !k813 !k812 !k811 !k808 !k807 !k804 !k803 !k801 !k800 !k792 !k791 !k790 !k788 !k785 !k781 !k779 !k778 !k777 !k776 !k768 !k767 !k766 !k764 !k762 !k760 !k759 !k756 !k755 !k753 !k752 !k751 !k748 !k747 !k746 !k744 !k743 !k742 !k740 !k739 !k737 !k734 !k732 !k731 !k730 !k728 !k725 !k724 !k720 !k718 !k715 !k714 !k711 !k708 !k707 !k706 !k705 !k701 !k700 !k699 !k692 !k691 !k690 !k687 !k686 !k683 !k681 !k679 !k677 !k676 !k673 !k669 !k668 !k666 !k663 !k657 !k641 !k622 !k615 !k614 !k610 !k596 !k566 !k549 !k541 !k537 !k510 !k508 !k497 !k483 !k444 !k396 !k394 !k377 !k358 !k342 !k334 !k322 !k316 !k298 !k287 !k275 !k241 !k214 !k211 !k179 !k116 !k114 !k85 !k84 !k82 !k38 !k31 !k22 !k7) 100000000000001)) + (not (>= (+ !k1155 !k1123 !k937 !k860 !k832 !k766 !k668 !k179) 100000000000001)) + (not (>= (+ !k1231 !k1230 !k1229 !k1228 !k1227 !k1226 !k1225 !k1224 !k1223 !k1222 !k1221 !k1220 !k1219 !k1218 !k1217 !k1216 !k1215 !k1214 !k1213 !k1212 !k1211 !k1210 !k1209 !k1208 !k1207 !k1206 !k613 !k595 !k582 !k567 !k560 !k536 !k494 !k405 !k402 !k369 !k330 !k305 !k299 !k294 !k249 !k246 !k206 !k198 !k193 !k177 !k163 !k147 !k123 !k89 !k80 !k74) 100000000000001)) +) +)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + +(check-sat) +(exit) +;;expected answer: unknown diff --git a/examples/optim-examples/opam-optim/original-no-optim.smt2 b/examples/optim-examples/opam-optim/original-no-optim.smt2 new file mode 100644 index 000000000..efe8a1ae4 --- /dev/null +++ b/examples/optim-examples/opam-optim/original-no-optim.smt2 @@ -0,0 +1,35277 @@ +(set-logic QF_LIA) + +(declare-fun %3dopam-invariant.1 () Bool) +(declare-fun ocamlfind.26 () Bool) +(declare-fun ocamlfind.25 () Bool) +(declare-fun ocamlfind.23 () Bool) +(declare-fun ocamlfind.22 () Bool) +(declare-fun ocamlfind.21 () Bool) +(declare-fun ocamlfind.18 () Bool) +(declare-fun ocamlfind.17 () Bool) +(declare-fun ocamlfind.15 () Bool) +(declare-fun ocamlfind.14 () Bool) +(declare-fun ocamlfind.13 () Bool) +(declare-fun ocamlfind.12 () Bool) +(declare-fun ocamlfind.11 () Bool) +(declare-fun ocamlfind.10 () Bool) +(declare-fun ocamlfind.7 () Bool) +(declare-fun ocamlfind.6 () Bool) +(declare-fun ocamlfind.5 () Bool) +(declare-fun ocamlfind.4 () Bool) +(declare-fun ocamlfind.3 () Bool) +(declare-fun ocamlfind.24 () Bool) +(declare-fun conf-m4.1 () Bool) +(declare-fun jbuilder.25 () Bool) +(declare-fun dune.72 () Bool) +(declare-fun dune.71 () Bool) +(declare-fun dune.69 () Bool) +(declare-fun dune.68 () Bool) +(declare-fun dune.66 () Bool) +(declare-fun dune.65 () Bool) +(declare-fun dune.64 () Bool) +(declare-fun dune.62 () Bool) +(declare-fun dune.61 () Bool) +(declare-fun dune.59 () Bool) +(declare-fun dune.57 () Bool) +(declare-fun dune.56 () Bool) +(declare-fun dune.54 () Bool) +(declare-fun dune.52 () Bool) +(declare-fun dune.50 () Bool) +(declare-fun dune.48 () Bool) +(declare-fun dune.44 () Bool) +(declare-fun dune.43 () Bool) +(declare-fun dune.42 () Bool) +(declare-fun dune.41 () Bool) +(declare-fun dune.40 () Bool) +(declare-fun dune.38 () Bool) +(declare-fun dune.36 () Bool) +(declare-fun dune.35 () Bool) +(declare-fun dune.34 () Bool) +(declare-fun dune.33 () Bool) +(declare-fun dune.31 () Bool) +(declare-fun dune.30 () Bool) +(declare-fun dune.29 () Bool) +(declare-fun dune.27 () Bool) +(declare-fun dune.26 () Bool) +(declare-fun dune.25 () Bool) +(declare-fun dune.24 () Bool) +(declare-fun dune.22 () Bool) +(declare-fun dune.21 () Bool) +(declare-fun dune.20 () Bool) +(declare-fun dune.19 () Bool) +(declare-fun dune.17 () Bool) +(declare-fun dune.16 () Bool) +(declare-fun dune.14 () Bool) +(declare-fun dune.12 () Bool) +(declare-fun dune.10 () Bool) +(declare-fun dune.9 () Bool) +(declare-fun dune.7 () Bool) +(declare-fun dune.6 () Bool) +(declare-fun dune.4 () Bool) +(declare-fun dune.3 () Bool) +(declare-fun dune.51 () Bool) +(declare-fun base-threads.1 () Bool) +(declare-fun base-unix.1 () Bool) +(declare-fun ocaml.60 () Bool) +(declare-fun ocamlfind-secondary.1 () Bool) +(declare-fun num.6 () Bool) +(declare-fun num.5 () Bool) +(declare-fun num.4 () Bool) +(declare-fun num.3 () Bool) +(declare-fun num.2 () Bool) +(declare-fun num.1 () Bool) +(declare-fun base-num.1 () Bool) +(declare-fun menhir.56 () Bool) +(declare-fun menhir.55 () Bool) +(declare-fun menhir.54 () Bool) +(declare-fun menhir.53 () Bool) +(declare-fun menhir.52 () Bool) +(declare-fun menhir.51 () Bool) +(declare-fun menhir.50 () Bool) +(declare-fun menhir.49 () Bool) +(declare-fun menhir.48 () Bool) +(declare-fun menhir.47 () Bool) +(declare-fun menhir.46 () Bool) +(declare-fun menhir.45 () Bool) +(declare-fun menhir.44 () Bool) +(declare-fun menhir.43 () Bool) +(declare-fun menhir.42 () Bool) +(declare-fun menhir.41 () Bool) +(declare-fun menhir.40 () Bool) +(declare-fun menhir.39 () Bool) +(declare-fun menhir.38 () Bool) +(declare-fun menhir.37 () Bool) +(declare-fun menhir.36 () Bool) +(declare-fun menhir.34 () Bool) +(declare-fun menhir.33 () Bool) +(declare-fun menhir.32 () Bool) +(declare-fun menhir.31 () Bool) +(declare-fun menhir.30 () Bool) +(declare-fun menhir.29 () Bool) +(declare-fun menhir.28 () Bool) +(declare-fun menhir.27 () Bool) +(declare-fun menhir.26 () Bool) +(declare-fun menhir.25 () Bool) +(declare-fun menhir.24 () Bool) +(declare-fun menhir.23 () Bool) +(declare-fun menhir.22 () Bool) +(declare-fun menhir.21 () Bool) +(declare-fun menhir.20 () Bool) +(declare-fun menhir.19 () Bool) +(declare-fun menhir.18 () Bool) +(declare-fun menhir.17 () Bool) +(declare-fun menhir.16 () Bool) +(declare-fun menhir.15 () Bool) +(declare-fun menhir.14 () Bool) +(declare-fun menhir.13 () Bool) +(declare-fun menhir.12 () Bool) +(declare-fun menhir.11 () Bool) +(declare-fun menhir.8 () Bool) +(declare-fun menhir.6 () Bool) +(declare-fun menhir.4 () Bool) +(declare-fun menhir.2 () Bool) +(declare-fun menhir.3 () Bool) +(declare-fun camlp5.24 () Bool) +(declare-fun camlp5.23 () Bool) +(declare-fun camlp5.22 () Bool) +(declare-fun camlp5.21 () Bool) +(declare-fun camlp5.20 () Bool) +(declare-fun camlp5.19 () Bool) +(declare-fun camlp5.18 () Bool) +(declare-fun camlp5.17 () Bool) +(declare-fun camlp5.16 () Bool) +(declare-fun camlp5.15 () Bool) +(declare-fun camlp5.14 () Bool) +(declare-fun camlp5.13 () Bool) +(declare-fun camlp5.12 () Bool) +(declare-fun camlp5.11 () Bool) +(declare-fun camlp5.10 () Bool) +(declare-fun camlp5.9 () Bool) +(declare-fun camlp5.8 () Bool) +(declare-fun camlp5.7 () Bool) +(declare-fun camlp5.6 () Bool) +(declare-fun camlp5.5 () Bool) +(declare-fun camlp5.3 () Bool) +(declare-fun camlp5.2 () Bool) +(declare-fun camlp5.4 () Bool) +(declare-fun why3.28 () Bool) +(declare-fun why3.27 () Bool) +(declare-fun why3.26 () Bool) +(declare-fun why3.25 () Bool) +(declare-fun why3.24 () Bool) +(declare-fun why3.23 () Bool) +(declare-fun why3.22 () Bool) +(declare-fun why3.21 () Bool) +(declare-fun why3.20 () Bool) +(declare-fun why3.19 () Bool) +(declare-fun why3.18 () Bool) +(declare-fun why3.17 () Bool) +(declare-fun why3.16 () Bool) +(declare-fun why3.15 () Bool) +(declare-fun why3.14 () Bool) +(declare-fun why3.13 () Bool) +(declare-fun why3.12 () Bool) +(declare-fun why3.11 () Bool) +(declare-fun why3.10 () Bool) +(declare-fun why3.8 () Bool) +(declare-fun why3.6 () Bool) +(declare-fun why3.5 () Bool) +(declare-fun why3.4 () Bool) +(declare-fun why3.3 () Bool) +(declare-fun why3.2 () Bool) +(declare-fun why3.1 () Bool) +(declare-fun why3.7 () Bool) +(declare-fun camlzip.7 () Bool) +(declare-fun camlzip.6 () Bool) +(declare-fun camlzip.5 () Bool) +(declare-fun camlzip.4 () Bool) +(declare-fun camlzip.3 () Bool) +(declare-fun camlzip.2 () Bool) +(declare-fun camlzip.1 () Bool) +(declare-fun conf-gtksourceview.1 () Bool) +(declare-fun lablgtk.15 () Bool) +(declare-fun lablgtk.14 () Bool) +(declare-fun lablgtk.13 () Bool) +(declare-fun lablgtk.12 () Bool) +(declare-fun lablgtk.11 () Bool) +(declare-fun lablgtk.10 () Bool) +(declare-fun lablgtk.9 () Bool) +(declare-fun lablgtk.8 () Bool) +(declare-fun lablgtk.7 () Bool) +(declare-fun lablgtk.6 () Bool) +(declare-fun lablgtk.3 () Bool) +(declare-fun ocamlgraph.12 () Bool) +(declare-fun ocamlgraph.9 () Bool) +(declare-fun ocamlgraph.8 () Bool) +(declare-fun ocamlgraph.7 () Bool) +(declare-fun ocamlgraph.6 () Bool) +(declare-fun ocamlgraph.5 () Bool) +(declare-fun ocamlgraph.4 () Bool) +(declare-fun why3-base.1 () Bool) +(declare-fun zarith.14 () Bool) +(declare-fun zarith.13 () Bool) +(declare-fun zarith.12 () Bool) +(declare-fun zarith.9 () Bool) +(declare-fun zarith.8 () Bool) +(declare-fun zarith.7 () Bool) +(declare-fun zarith.6 () Bool) +(declare-fun zarith.5 () Bool) +(declare-fun zarith.4 () Bool) +(declare-fun zarith.3 () Bool) +(declare-fun zarith.2 () Bool) +(declare-fun zarith.1 () Bool) +(declare-fun camlp4.33 () Bool) +(declare-fun camlp4.32 () Bool) +(declare-fun camlp4.31 () Bool) +(declare-fun camlp4.29 () Bool) +(declare-fun camlp4.28 () Bool) +(declare-fun camlp4.27 () Bool) +(declare-fun camlp4.26 () Bool) +(declare-fun camlp4.25 () Bool) +(declare-fun camlp4.24 () Bool) +(declare-fun camlp4.23 () Bool) +(declare-fun camlp4.22 () Bool) +(declare-fun camlp4.21 () Bool) +(declare-fun camlp4.20 () Bool) +(declare-fun camlp4.19 () Bool) +(declare-fun camlp4.18 () Bool) +(declare-fun camlp4.17 () Bool) +(declare-fun camlp4.16 () Bool) +(declare-fun camlp4.15 () Bool) +(declare-fun camlp4.14 () Bool) +(declare-fun camlp4.13 () Bool) +(declare-fun camlp4.11 () Bool) +(declare-fun camlp4.10 () Bool) +(declare-fun camlp4.9 () Bool) +(declare-fun camlp4.8 () Bool) +(declare-fun camlp4.7 () Bool) +(declare-fun camlp4.6 () Bool) +(declare-fun camlp4.5 () Bool) +(declare-fun camlp4.3 () Bool) +(declare-fun camlp4.2 () Bool) +(declare-fun camlp4.30 () Bool) +(declare-fun ocamlbuild.8 () Bool) +(declare-fun ocamlbuild.7 () Bool) +(declare-fun ocamlbuild.6 () Bool) +(declare-fun ocamlbuild.5 () Bool) +(declare-fun ocamlbuild.4 () Bool) +(declare-fun ocamlbuild.3 () Bool) +(declare-fun ocamlbuild.2 () Bool) +(declare-fun ocamlbuild.1 () Bool) +(declare-fun lwt.51 () Bool) +(declare-fun lwt.50 () Bool) +(declare-fun lwt.49 () Bool) +(declare-fun lwt.47 () Bool) +(declare-fun lwt.46 () Bool) +(declare-fun lwt.45 () Bool) +(declare-fun lwt.44 () Bool) +(declare-fun lwt.43 () Bool) +(declare-fun lwt.41 () Bool) +(declare-fun lwt.40 () Bool) +(declare-fun lwt.39 () Bool) +(declare-fun lwt.38 () Bool) +(declare-fun lwt.36 () Bool) +(declare-fun lwt.35 () Bool) +(declare-fun lwt.34 () Bool) +(declare-fun lwt.32 () Bool) +(declare-fun lwt.30 () Bool) +(declare-fun lwt.29 () Bool) +(declare-fun lwt.26 () Bool) +(declare-fun lwt.25 () Bool) +(declare-fun lwt.23 () Bool) +(declare-fun lwt.22 () Bool) +(declare-fun lwt.21 () Bool) +(declare-fun lwt.20 () Bool) +(declare-fun lwt.19 () Bool) +(declare-fun lwt.18 () Bool) +(declare-fun lwt.17 () Bool) +(declare-fun lwt.16 () Bool) +(declare-fun lwt.14 () Bool) +(declare-fun lwt.13 () Bool) +(declare-fun lwt.12 () Bool) +(declare-fun lwt.11 () Bool) +(declare-fun lwt.10 () Bool) +(declare-fun lwt.9 () Bool) +(declare-fun lwt.8 () Bool) +(declare-fun lwt.7 () Bool) +(declare-fun lwt.6 () Bool) +(declare-fun lwt.4 () Bool) +(declare-fun lwt.24 () Bool) +(declare-fun cppo.22 () Bool) +(declare-fun cppo.21 () Bool) +(declare-fun cppo.20 () Bool) +(declare-fun cppo.19 () Bool) +(declare-fun cppo.18 () Bool) +(declare-fun cppo.17 () Bool) +(declare-fun cppo.16 () Bool) +(declare-fun cppo.15 () Bool) +(declare-fun cppo.14 () Bool) +(declare-fun cppo.13 () Bool) +(declare-fun cppo.12 () Bool) +(declare-fun cppo.11 () Bool) +(declare-fun cppo.10 () Bool) +(declare-fun cppo.8 () Bool) +(declare-fun cppo.7 () Bool) +(declare-fun cppo.6 () Bool) +(declare-fun cppo.5 () Bool) +(declare-fun jbuilder.24 () Bool) +(declare-fun jbuilder.23 () Bool) +(declare-fun jbuilder.22 () Bool) +(declare-fun jbuilder.21 () Bool) +(declare-fun jbuilder.20 () Bool) +(declare-fun jbuilder.19 () Bool) +(declare-fun jbuilder.18 () Bool) +(declare-fun jbuilder.17 () Bool) +(declare-fun jbuilder.16 () Bool) +(declare-fun jbuilder.15 () Bool) +(declare-fun jbuilder.14 () Bool) +(declare-fun ocaml-migrate-parsetree.33 () Bool) +(declare-fun ocaml-migrate-parsetree.32 () Bool) +(declare-fun ocaml-migrate-parsetree.31 () Bool) +(declare-fun ocaml-migrate-parsetree.30 () Bool) +(declare-fun ocaml-migrate-parsetree.28 () Bool) +(declare-fun ocaml-migrate-parsetree.27 () Bool) +(declare-fun ocaml-migrate-parsetree.26 () Bool) +(declare-fun ocaml-migrate-parsetree.24 () Bool) +(declare-fun ocaml-migrate-parsetree.23 () Bool) +(declare-fun ocaml-migrate-parsetree.22 () Bool) +(declare-fun ocaml-migrate-parsetree.21 () Bool) +(declare-fun ocaml-migrate-parsetree.20 () Bool) +(declare-fun ocaml-migrate-parsetree.19 () Bool) +(declare-fun ocaml-migrate-parsetree.18 () Bool) +(declare-fun ocaml-migrate-parsetree.17 () Bool) +(declare-fun ocaml-migrate-parsetree.16 () Bool) +(declare-fun ocaml-migrate-parsetree.15 () Bool) +(declare-fun ocaml-migrate-parsetree.14 () Bool) +(declare-fun ocaml-migrate-parsetree.13 () Bool) +(declare-fun ocaml-migrate-parsetree.12 () Bool) +(declare-fun ocaml-migrate-parsetree.11 () Bool) +(declare-fun ocaml-migrate-parsetree.10 () Bool) +(declare-fun ocaml-migrate-parsetree.9 () Bool) +(declare-fun ocaml-migrate-parsetree.8 () Bool) +(declare-fun ocaml-migrate-parsetree.6 () Bool) +(declare-fun ocaml-migrate-parsetree.4 () Bool) +(declare-fun ocaml-migrate-parsetree.3 () Bool) +(declare-fun ppx%5ftools%5fversioned.12 () Bool) +(declare-fun ppx%5ftools%5fversioned.11 () Bool) +(declare-fun ppx%5ftools%5fversioned.10 () Bool) +(declare-fun ppx%5ftools%5fversioned.9 () Bool) +(declare-fun ppx%5ftools%5fversioned.8 () Bool) +(declare-fun ppx%5ftools%5fversioned.7 () Bool) +(declare-fun ppx%5ftools%5fversioned.6 () Bool) +(declare-fun ppx%5ftools%5fversioned.5 () Bool) +(declare-fun result.6 () Bool) +(declare-fun result.5 () Bool) +(declare-fun result.4 () Bool) +(declare-fun result.3 () Bool) +(declare-fun result.2 () Bool) +(declare-fun result.1 () Bool) +(declare-fun ocaml-config.1 () Bool) +(declare-fun ocaml-config.2 () Bool) +(declare-fun dune-configurator.23 () Bool) +(declare-fun dune-configurator.22 () Bool) +(declare-fun dune-configurator.21 () Bool) +(declare-fun dune-configurator.20 () Bool) +(declare-fun dune-configurator.18 () Bool) +(declare-fun dune-configurator.17 () Bool) +(declare-fun dune-configurator.16 () Bool) +(declare-fun dune-configurator.14 () Bool) +(declare-fun dune-configurator.13 () Bool) +(declare-fun dune-configurator.12 () Bool) +(declare-fun dune-configurator.11 () Bool) +(declare-fun dune-configurator.9 () Bool) +(declare-fun dune-configurator.8 () Bool) +(declare-fun dune-configurator.7 () Bool) +(declare-fun dune-configurator.6 () Bool) +(declare-fun dune-configurator.5 () Bool) +(declare-fun dune-configurator.3 () Bool) +(declare-fun dune-configurator.2 () Bool) +(declare-fun dune-configurator.10 () Bool) +(declare-fun dune-private-libs.7 () Bool) +(declare-fun ppx%5ftools.19 () Bool) +(declare-fun ppx%5ftools.18 () Bool) +(declare-fun ppx%5ftools.17 () Bool) +(declare-fun ppx%5ftools.16 () Bool) +(declare-fun ppx%5ftools.15 () Bool) +(declare-fun ppx%5ftools.14 () Bool) +(declare-fun ppx%5ftools.13 () Bool) +(declare-fun ppx%5ftools.12 () Bool) +(declare-fun ppx%5ftools.11 () Bool) +(declare-fun ppx%5ftools.10 () Bool) +(declare-fun ppx%5ftools.9 () Bool) +(declare-fun ppx%5ftools.8 () Bool) +(declare-fun ppx%5ftools.7 () Bool) +(declare-fun ppx%5ftools.5 () Bool) +(declare-fun ppx%5ftools.3 () Bool) +(declare-fun ppx%5ftools.2 () Bool) +(declare-fun ppx%5ftools.1 () Bool) +(declare-fun ppx%5ftools.4 () Bool) +(declare-fun why3-base.13 () Bool) +(declare-fun why3-base.12 () Bool) +(declare-fun why3-base.11 () Bool) +(declare-fun why3-base.10 () Bool) +(declare-fun why3-base.8 () Bool) +(declare-fun why3-base.7 () Bool) +(declare-fun why3-base.6 () Bool) +(declare-fun why3-base.5 () Bool) +(declare-fun why3-base.4 () Bool) +(declare-fun why3-base.3 () Bool) +(declare-fun why3-base.2 () Bool) +(declare-fun base.25 () Bool) +(declare-fun base.24 () Bool) +(declare-fun base.22 () Bool) +(declare-fun base.21 () Bool) +(declare-fun base.20 () Bool) +(declare-fun base.18 () Bool) +(declare-fun base.17 () Bool) +(declare-fun base.16 () Bool) +(declare-fun base.13 () Bool) +(declare-fun base.11 () Bool) +(declare-fun base.9 () Bool) +(declare-fun base.8 () Bool) +(declare-fun base.7 () Bool) +(declare-fun base.6 () Bool) +(declare-fun base.5 () Bool) +(declare-fun base.14 () Bool) +(declare-fun sexplib0.2 () Bool) +(declare-fun coq.1 () Bool) +(declare-fun cppo.4 () Bool) +(declare-fun cppo.3 () Bool) +(declare-fun cppo.2 () Bool) +(declare-fun cppo.1 () Bool) +(declare-fun ppx%5fcore.14 () Bool) +(declare-fun ppx%5fcore.13 () Bool) +(declare-fun ppx%5fcore.12 () Bool) +(declare-fun jbuilder.13 () Bool) +(declare-fun jbuilder.12 () Bool) +(declare-fun jbuilder.11 () Bool) +(declare-fun jbuilder.10 () Bool) +(declare-fun jbuilder.9 () Bool) +(declare-fun jbuilder.8 () Bool) +(declare-fun jbuilder.7 () Bool) +(declare-fun jbuilder.6 () Bool) +(declare-fun jbuilder.5 () Bool) +(declare-fun jbuilder.4 () Bool) +(declare-fun ocaml-compiler-libs.2 () Bool) +(declare-fun ppx%5fast.4 () Bool) +(declare-fun ppx%5fast.3 () Bool) +(declare-fun ppx%5fast.2 () Bool) +(declare-fun ppx%5ftraverse%5fbuiltins.2 () Bool) +(declare-fun stdio.3 () Bool) +(declare-fun stdio.2 () Bool) +(declare-fun menhirSdk.10 () Bool) +(declare-fun menhirSdk.9 () Bool) +(declare-fun menhirSdk.7 () Bool) +(declare-fun menhirSdk.6 () Bool) +(declare-fun menhirSdk.5 () Bool) +(declare-fun menhirSdk.4 () Bool) +(declare-fun menhirSdk.3 () Bool) +(declare-fun menhirSdk.2 () Bool) +(declare-fun menhirSdk.1 () Bool) +(declare-fun menhirSdk.8 () Bool) +(declare-fun conf-gtk2.1 () Bool) +(declare-fun conf-which.1 () Bool) +(declare-fun stdio.13 () Bool) +(declare-fun stdio.11 () Bool) +(declare-fun stdio.7 () Bool) +(declare-fun stdio.5 () Bool) +(declare-fun stdio.9 () Bool) +(declare-fun alt-ergo-lib.4 () Bool) +(declare-fun alt-ergo-lib.2 () Bool) +(declare-fun alt-ergo-lib.1 () Bool) +(declare-fun alt-ergo-lib.3 () Bool) +(declare-fun ocplib-simplex.2 () Bool) +(declare-fun seq.5 () Bool) +(declare-fun seq.4 () Bool) +(declare-fun seq.3 () Bool) +(declare-fun seq.2 () Bool) +(declare-fun seq.1 () Bool) +(declare-fun stdlib-shims.2 () Bool) +(declare-fun topkg.16 () Bool) +(declare-fun topkg.15 () Bool) +(declare-fun topkg.13 () Bool) +(declare-fun topkg.12 () Bool) +(declare-fun topkg.11 () Bool) +(declare-fun topkg.9 () Bool) +(declare-fun topkg.8 () Bool) +(declare-fun topkg.7 () Bool) +(declare-fun topkg.6 () Bool) +(declare-fun topkg.5 () Bool) +(declare-fun topkg.4 () Bool) +(declare-fun topkg.3 () Bool) +(declare-fun topkg.14 () Bool) +(declare-fun conf-gmp.3 () Bool) +(declare-fun conf-gmp.2 () Bool) +(declare-fun conf-gmp.1 () Bool) +(declare-fun conf-perl.1 () Bool) +(declare-fun ppx%5fderivers.2 () Bool) +(declare-fun ppx%5fderivers.1 () Bool) +(declare-fun jbuilder.3 () Bool) +(declare-fun jbuilder.2 () Bool) +(declare-fun menhirLib.10 () Bool) +(declare-fun configurator.7 () Bool) +(declare-fun configurator.5 () Bool) +(declare-fun configurator.2 () Bool) +(declare-fun configurator.3 () Bool) +(declare-fun ppx%5fbase.2 () Bool) +(declare-fun ppx%5fdriver.16 () Bool) +(declare-fun ppx%5fdriver.15 () Bool) +(declare-fun ppx%5fdriver.14 () Bool) +(declare-fun mmap.2 () Bool) +(declare-fun ocplib-endian.9 () Bool) +(declare-fun ocplib-endian.8 () Bool) +(declare-fun ocplib-endian.7 () Bool) +(declare-fun ocplib-endian.6 () Bool) +(declare-fun ocplib-endian.4 () Bool) +(declare-fun ocplib-endian.3 () Bool) +(declare-fun ocplib-endian.2 () Bool) +(declare-fun ocplib-endian.1 () Bool) +(declare-fun sqlite3.26 () Bool) +(declare-fun sqlite3.25 () Bool) +(declare-fun sqlite3.23 () Bool) +(declare-fun sqlite3.21 () Bool) +(declare-fun sqlite3.20 () Bool) +(declare-fun sqlite3.19 () Bool) +(declare-fun sqlite3.18 () Bool) +(declare-fun sqlite3.17 () Bool) +(declare-fun sqlite3.16 () Bool) +(declare-fun sqlite3.15 () Bool) +(declare-fun sqlite3.14 () Bool) +(declare-fun sqlite3.13 () Bool) +(declare-fun sqlite3.12 () Bool) +(declare-fun sqlite3.11 () Bool) +(declare-fun sqlite3.10 () Bool) +(declare-fun sqlite3.9 () Bool) +(declare-fun sqlite3.8 () Bool) +(declare-fun sqlite3.22 () Bool) +(declare-fun conf-sqlite3.1 () Bool) +(declare-fun ocaml-syntax-shims.1 () Bool) +(declare-fun conf-pkg-config.4 () Bool) +(declare-fun conf-pkg-config.3 () Bool) +(declare-fun conf-pkg-config.2 () Bool) +(declare-fun conf-pkg-config.1 () Bool) +(declare-fun alt-ergo.7 () Bool) +(declare-fun alt-ergo.6 () Bool) +(declare-fun alt-ergo.5 () Bool) +(declare-fun alt-ergo.4 () Bool) +(declare-fun alt-ergo.3 () Bool) +(declare-fun alt-ergo.2 () Bool) +(declare-fun alt-ergo.12 () Bool) +(declare-fun alt-ergo.11 () Bool) +(declare-fun alt-ergo.10 () Bool) +(declare-fun alt-ergo.9 () Bool) +(declare-fun alt-ergo.8 () Bool) +(declare-fun conf-autoconf.1 () Bool) +(declare-fun psmt2-frontend.1 () Bool) +(declare-fun sexplib0.8 () Bool) +(declare-fun sexplib0.6 () Bool) +(declare-fun sexplib0.4 () Bool) +(declare-fun sexplib.60 () Bool) +(declare-fun sexplib.58 () Bool) +(declare-fun sexplib.56 () Bool) +(declare-fun sexplib.55 () Bool) +(declare-fun sexplib.57 () Bool) +(declare-fun ppx%5foptcomp.12 () Bool) +(declare-fun menhirLib.9 () Bool) +(declare-fun menhirLib.8 () Bool) +(declare-fun menhirLib.7 () Bool) +(declare-fun menhirLib.6 () Bool) +(declare-fun menhirLib.4 () Bool) +(declare-fun menhirLib.3 () Bool) +(declare-fun menhirLib.2 () Bool) +(declare-fun menhirLib.1 () Bool) +(declare-fun menhirLib.5 () Bool) +(declare-fun ocplib-simplex.1 () Bool) +(declare-fun base-bytes.2 () Bool) +(declare-fun base-bytes.1 () Bool) +(declare-fun conf-ncurses.1 () Bool) +(declare-fun base-no-ppx.1 () Bool) +(declare-fun ocaml-secondary-compiler.2 () Bool) +(declare-fun ocaml-secondary-compiler.1 () Bool) +(declare-fun mmap.1 () Bool) +(declare-fun dune-private-libs.3 () Bool) +(declare-fun alt-ergo-parsers.4 () Bool) +(declare-fun optcomp.3 () Bool) +(declare-fun psmt2-frontend.4 () Bool) +(declare-fun psmt2-frontend.3 () Bool) +(declare-fun psmt2-frontend.2 () Bool) +(declare-fun dune-private-libs.14 () Bool) +(declare-fun dune-private-libs.13 () Bool) +(declare-fun dune-private-libs.12 () Bool) +(declare-fun dune-private-libs.11 () Bool) +(declare-fun dune-private-libs.10 () Bool) +(declare-fun dune-private-libs.8 () Bool) +(declare-fun dune-private-libs.6 () Bool) +(declare-fun dune-private-libs.5 () Bool) +(declare-fun dune-private-libs.4 () Bool) +(declare-fun dune-private-libs.2 () Bool) +(declare-fun dune-private-libs.9 () Bool) +(declare-fun base-ocamlbuild.1 () Bool) +(declare-fun cppo%5focamlbuild.3 () Bool) +(declare-fun cppo%5focamlbuild.2 () Bool) +(declare-fun cppo%5focamlbuild.1 () Bool) +(declare-fun extlib.14 () Bool) +(declare-fun conf-emacs.1 () Bool) +(declare-fun tuareg.6 () Bool) +(declare-fun cmdliner.14 () Bool) +(declare-fun ocp-indent.28 () Bool) +(declare-fun ocaml-base-compiler.36 () Bool) +(declare-fun octavius.6 () Bool) +(declare-fun octavius.5 () Bool) +(declare-fun octavius.4 () Bool) +(declare-fun octavius.2 () Bool) +(declare-fun octavius.1 () Bool) +(declare-fun octavius.3 () Bool) +(declare-fun conf-zlib.1 () Bool) +(declare-fun xenbigarray.1 () Bool) +(declare-fun csexp.7 () Bool) +(declare-fun csexp.8 () Bool) +(declare-fun opam-file-format.11 () Bool) +(declare-fun ocaml-options-vanilla.1 () Bool) +(declare-fun re.23 () Bool) +(declare-fun cudf.5 () Bool) +(declare-fun conf-python-2-7.2 () Bool) +(declare-fun z3.10 () Bool) +(declare-fun easy-format.7 () Bool) +(declare-fun alt-ergo-parsers.2 () Bool) +(declare-fun alt-ergo-parsers.1 () Bool) +(declare-fun alt-ergo-parsers.3 () Bool) +(declare-fun dot-merlin-reader.3 () Bool) +(declare-fun yojson.18 () Bool) +(declare-fun merlin.46 () Bool) +(declare-fun ppx%5fmetaquot.2 () Bool) +(declare-fun ppx%5ftype%5fconv.14 () Bool) +(declare-fun ppx%5ftype%5fconv.13 () Bool) +(declare-fun ppx%5fenumerate.10 () Bool) +(declare-fun biniou.9 () Bool) +(declare-fun user-setup.7 () Bool) +(declare-fun base-implicits.1 () Bool) +(declare-fun ppx%5fsexp%5fconv.14 () Bool) +(declare-fun base-bigarray.1 () Bool) +(declare-fun mccs.9 () Bool) +(declare-fun ppx%5fjs%5fstyle.2 () Bool) +(declare-fun ppx%5fcompare.11 () Bool) +(declare-fun ppx%5fhash.2 () Bool) +(declare-fun dose3.5 () Bool) +(declare-fun base-metaocaml-ocamlfind.1 () Bool) +(declare-fun conf-findutils.1 () Bool) +(assert %3dopam-invariant.1) +(assert (=> ocamlfind.24 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.24 (and false conf-m4.1))) +(assert (=> dune.51 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.51 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> num.1 (not (or num.2 num.3 num.4 num.5 num.6)))) +(assert (=> num.1 (and false base-num.1))) +(assert (=> menhir.3 + (not (or menhir.2 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> camlp5.4 + (not (or camlp5.2 + camlp5.3 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.4 false)) +(assert (=> why3.7 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.7 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.1 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> ocamlgraph.9 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.12)))) +(assert (=> ocamlgraph.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp4.30 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.30 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> lwt.24 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.24 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ocaml-config.2 (not ocaml-config.1))) +(assert (=> camlp5.6 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.6 false)) +(assert (=> menhir.12 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> dune-configurator.10 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.10 + (and dune-private-libs.7 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools.4 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.4 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3.25 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.25 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> base.14 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.14 + (and sexplib0.2 + ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> why3-base.4 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> cppo.10 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ppx%5fcore.12 (not (or ppx%5fcore.13 ppx%5fcore.14)))) +(assert (=> ppx%5fcore.12 + (and (or stdio.2 stdio.3) + ppx%5ftraverse%5fbuiltins.2 + (or ppx%5fast.2 ppx%5fast.3 ppx%5fast.4) + ocaml-compiler-libs.2 + false + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> menhirSdk.8 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.8 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.25 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.25 (and false false))) +(assert (=> lablgtk.14 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.15)))) +(assert (=> lablgtk.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> camlp4.10 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.10 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> stdio.9 (not (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.11 stdio.13)))) +(assert (=> stdio.9 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or base.16 base.17 base.18)))) +(assert (=> menhir.34 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.34 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> cppo.11 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-configurator.20 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.20 (and ocaml.60 (or dune.68 dune.69 dune.71 dune.72)))) +(assert (=> ocamlgraph.7 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> lwt.23 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.23 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> camlp4.27 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.27 (and false false))) +(assert (=> alt-ergo-lib.3 (not (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.4)))) +(assert (=> alt-ergo-lib.3 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + stdlib-shims.2 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> topkg.14 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.15 + topkg.16)))) +(assert (=> topkg.14 + (and (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocamlgraph.4 + (not (or ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3.11 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.11 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.4 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> zarith.9 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ocaml-migrate-parsetree.33 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32)))) +(assert (=> ocaml-migrate-parsetree.33 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3-base.2 + (not (or why3-base.1 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 menhir.3 menhir.4 menhir.6 menhir.8)))) +(assert (=> jbuilder.24 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.25)))) +(assert (=> jbuilder.24 ocaml.60)) +(assert (=> menhir.56 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55)))) +(assert (=> menhir.56 + (and ocaml.60 + menhirSdk.10 + menhirLib.10 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> configurator.3 (not (or configurator.2 configurator.5 configurator.7)))) +(assert (=> configurator.3 + (and (or stdio.2 stdio.3) + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + ppx%5fbase.2 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> ppx%5ftools%5fversioned.5 + (not (or ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.5 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60))) +(assert (=> lwt.43 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.43 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> sqlite3.22 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.22 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> ppx%5ftools.16 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.16 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools.9 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.9 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> camlp5.8 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.8 false)) +(assert (=> ocaml-migrate-parsetree.3 + (not (or ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.3 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.51 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50)))) +(assert (=> lwt.51 + (and ocaml-syntax-shims.1 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ocaml-migrate-parsetree.4 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.4 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp4.28 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.28 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> sqlite3.17 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.17 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> menhir.46 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.46 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> alt-ergo.8 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12 + alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7)))) +(assert (=> alt-ergo.8 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + psmt2-frontend.1 + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1 + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> sexplib.57 + (not (or sexplib.55 + sexplib.56 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.57 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.9 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> ppx%5fdriver.14 (not (or ppx%5fdriver.15 ppx%5fdriver.16)))) +(assert (=> ppx%5fdriver.14 + (and ppx%5foptcomp.12 + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + false + (or jbuilder.4 jbuilder.5 jbuilder.6 jbuilder.7)))) +(assert (=> ocaml-migrate-parsetree.28 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.28 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.5 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.5 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.5 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.5 + (and (or zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocplib-simplex.1 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> camlp4.22 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.22 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp5.15 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.15 false)) +(assert (=> ocamlfind.13 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.13 (and false num.1 conf-m4.1))) +(assert (=> jbuilder.19 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.19 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp4.20 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.20 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ocamlfind.21 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.21 (and false num.1 conf-m4.1))) +(assert (=> lwt.25 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.25 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune.26 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.26 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> cppo.14 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or base-bytes.1 base-bytes.2)))) +(assert (=> stdio.5 (not (or stdio.2 stdio.3 stdio.7 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.5 + (and sexplib.60 + ocaml.60 + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.11))) +(assert (=> dune.57 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.57 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> lwt.12 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.12 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> menhir.37 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.37 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.19 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.19 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or base-bytes.1 base-bytes.2)))) +(assert (=> ocamlfind-secondary.1 + (and ocamlfind.26 + (or ocaml-secondary-compiler.1 ocaml-secondary-compiler.2)))) +(assert (=> camlp4.24 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.24 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> base.8 + (not (or base.5 + base.6 + base.7 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.8 + (and (or sexplib.56 sexplib.57 sexplib.58) + false + (or jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.34 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.34 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or mmap.1 mmap.2) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> lwt.47 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.47 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ppx%5foptcomp.12 + (and (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp4.15 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.15 (and false false))) +(assert (=> sexplib0.6 (not (or sexplib0.2 sexplib0.4 sexplib0.8)))) +(assert (=> sexplib0.6 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.6 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.6 + (and dune-private-libs.3 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.9 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) +(assert (=> menhirLib.9 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools%5fversioned.11 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.11 + (and (or ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlfind.18 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.18 (and false num.1 conf-m4.1))) +(assert (=> menhirSdk.2 + (not (or menhirSdk.1 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.2 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.36 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.36 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or mmap.1 mmap.2) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> conf-gtk2.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> alt-ergo.12 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11)))) +(assert (=> alt-ergo.12 + (and ocaml.60 + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + alt-ergo-parsers.4 + alt-ergo-lib.4))) +(assert (=> camlp5.24 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23)))) +(assert (=> camlp5.24 (and ocaml.60 conf-perl.1))) +(assert (=> why3.19 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.19 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.13 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.3 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> dune.12 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.12 ocaml.60)) +(assert (=> ppx%5ftools.2 + (not (or ppx%5ftools.1 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.2 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ocamlfind.15 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.15 (and false num.1 conf-m4.1))) +(assert (=> sexplib0.8 (not (or sexplib0.2 sexplib0.4 sexplib0.6)))) +(assert (=> sexplib0.8 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirSdk.4 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.4 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.17 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.17 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.11 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> menhir.30 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.30 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> alt-ergo-lib.1 (not (or alt-ergo-lib.2 alt-ergo-lib.3 alt-ergo-lib.4)))) +(assert (=> alt-ergo-lib.1 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> stdio.3 (not (or stdio.2 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.3 + (and ocaml.60 + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.9))) +(assert (=> sqlite3.12 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> jbuilder.3 + (not (or jbuilder.2 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.3 ocaml.60)) +(assert (=> sexplib0.4 (not (or sexplib0.2 sexplib0.6 sexplib0.8)))) +(assert (=> sexplib0.4 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocplib-endian.2 + (not (or ocplib-endian.1 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.2 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> stdio.7 (not (or stdio.2 stdio.3 stdio.5 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.7 + (and ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.13 base.14)))) +(assert (=> psmt2-frontend.2 + (not (or psmt2-frontend.1 psmt2-frontend.3 psmt2-frontend.4)))) +(assert (=> psmt2-frontend.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1))) +(assert (=> jbuilder.15 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp4.31 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.31 (and false false))) +(assert (=> camlp4.8 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> menhir.49 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.49 + (and ocaml.60 + menhirSdk.3 + menhirLib.3 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-private-libs.9 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.9 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> mmap.2 (not mmap.1))) +(assert (=> mmap.2 + (and ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlbuild.7 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.7 ocaml.60)) +(assert (=> topkg.16 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15)))) +(assert (=> topkg.16 + (and (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> menhirSdk.9 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) +(assert (=> menhirSdk.9 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> conf-gmp.1 (not (or conf-gmp.2 conf-gmp.3)))) +(assert (=> ppx%5ftools.12 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.12 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ocaml-migrate-parsetree.32 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.32 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.44 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.44 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> menhirSdk.10 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55)))) +(assert (=> menhirSdk.10 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.3 + (not (or camlp4.2 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.3 (and false false))) +(assert (=> camlp4.16 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.16 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-configurator.18 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.18 + (and dune-private-libs.14 + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> sqlite3.11 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> ocamlbuild.2 + (not (or ocamlbuild.1 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.2 false)) +(assert (=> cppo%5focamlbuild.1 (not (or cppo%5focamlbuild.2 cppo%5focamlbuild.3)))) +(assert (=> cppo%5focamlbuild.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.16 cppo.17 cppo.18 cppo.19 cppo.20 cppo.21 cppo.22)))) +(assert (=> lwt.6 + (not (or lwt.4 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> jbuilder.9 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.15 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.15 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> why3.22 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.22 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> cppo.18 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.18 + (and ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> why3-base.12 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.13 + coq.1)))) +(assert (=> why3-base.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.3 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.3 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.1 + (not (or cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.1 false)) +(assert (=> ocplib-endian.3 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.3 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> lwt.16 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.16 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> ocamlgraph.8 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ocaml-migrate-parsetree.14 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.14 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocamlfind.23 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.23 (and false conf-m4.1))) +(assert (=> menhirLib.10 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55)))) +(assert (=> menhirLib.10 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.11 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> dune.20 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.20 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> seq.5 (not (or seq.1 seq.2 seq.3 seq.4)))) +(assert (=> seq.5 ocaml.60)) +(assert (=> extlib.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> dune.27 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.27 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> topkg.12 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.12 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> topkg.9 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.9 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> why3.3 + (not (or why3.1 + why3.2 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.3 + (and false + lablgtk.3 + conf-gtksourceview.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> lwt.38 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.38 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> menhir.17 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.17 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> ocaml-syntax-shims.1 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools.1 + (not (or ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> cppo.5 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> base.17 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.17 + (and sexplib0.4 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3-base.13 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + coq.1)))) +(assert (=> why3-base.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> seq.2 (not (or seq.1 seq.3 seq.4 seq.5)))) +(assert (=> seq.2 + (and false + (or dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlfind.4 + (not (or ocamlfind.3 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.4 (and false num.1 conf-m4.1))) +(assert (=> lwt.26 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.26 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> camlp4.17 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.17 (and false false))) +(assert (=> menhir.23 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.23 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> cppo.20 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.21 + cppo.22)))) +(assert (=> cppo.20 + (and ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1))) +(assert (=> why3.28 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.28 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> zarith.4 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> camlp5.5 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.5 false)) +(assert (=> ocamlfind.3 + (not (or ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.3 (and false num.1 conf-m4.1))) +(assert (=> base.9 + (not (or base.5 + base.6 + base.7 + base.8 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.9 + (and sexplib.58 + false + (or jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp5.11 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.11 false)) +(assert (=> zarith.2 + (not (or zarith.1 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> why3.2 + (not (or why3.1 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.2 + (and (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26) + ocamlgraph.4 + false + coq.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> lablgtk.3 + (not (or lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> ppx%5ftools%5fversioned.7 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.7 + (and (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.38 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.38 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> tuareg.6 (and ocaml.60 conf-emacs.1))) +(assert (=> ppx%5ftools.3 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.3 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3.27 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.27 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> jbuilder.20 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.20 ocaml.60)) +(assert (=> alt-ergo.7 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12 + alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6)))) +(assert (=> alt-ergo.7 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1 + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> why3-base.1 + (not (or why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> why3.5 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.5 + (and false + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> psmt2-frontend.4 + (not (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.3)))) +(assert (=> psmt2-frontend.4 + (and ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> menhir.32 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.32 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.19 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.19 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44)))) +(assert (=> lwt.7 + (not (or lwt.4 + lwt.6 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp5.10 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.10 false)) +(assert (=> menhir.25 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.25 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> base.18 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.18 + (and sexplib0.4 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.25 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> jbuilder.25 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44)))) +(assert (=> menhirSdk.1 + (not (or menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.1 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cmdliner.14 ocaml.60)) +(assert (=> conf-ncurses.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> ppx%5fderivers.2 (not ppx%5fderivers.1))) +(assert (=> ppx%5fderivers.2 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocplib-endian.1 + (not (or ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.1 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> sqlite3.19 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.19 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> ocp-indent.28 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + cmdliner.14 + (or base-bytes.1 base-bytes.2)))) +(assert (=> base.7 + (not (or base.5 + base.6 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.7 + (and (or sexplib.56 sexplib.57 sexplib.58) + false + (or jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.16 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.16 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> configurator.2 (not (or configurator.3 configurator.5 configurator.7)))) +(assert (=> configurator.2 + (and (or stdio.2 stdio.3) + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + ppx%5fbase.2 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> psmt2-frontend.1 + (not (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4)))) +(assert (=> psmt2-frontend.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1))) +(assert (=> ppx%5ftools%5fversioned.6 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.6 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60))) +(assert (=> zarith.7 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> dune.52 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.52 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> stdlib-shims.2 + (and (or ocaml.60 dune.71 dune.72) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.6 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.6 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.23 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.23 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + conf-sqlite3.1 + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> ocaml.60 + (and ocaml-base-compiler.36 + ocaml-base-compiler.36 + ocaml-base-compiler.36 + ocaml-base-compiler.36 + (or ocaml-config.1 ocaml-config.2)))) +(assert (=> octavius.3 + (not (or octavius.1 octavius.2 octavius.4 octavius.5 octavius.6)))) +(assert (=> octavius.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlzip.6 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.4 camlzip.5 camlzip.7)))) +(assert (=> camlzip.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-zlib.1))) +(assert (=> cppo.13 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> cppo.17 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.17 + (and ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> cppo%5focamlbuild.2 (not (or cppo%5focamlbuild.1 cppo%5focamlbuild.3)))) +(assert (=> cppo%5focamlbuild.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.21 cppo.22)))) +(assert (=> ocamlfind.12 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.12 (and false num.1 conf-m4.1))) +(assert (=> ocaml-migrate-parsetree.12 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.12 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocaml-migrate-parsetree.30 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.30 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.21 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.21 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> result.2 (not (or result.1 result.3 result.4 result.5 result.6)))) +(assert (=> result.2 ocaml.60)) +(assert (=> ocamlbuild.3 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.3 ocaml.60)) +(assert (=> dune.56 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.56 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> alt-ergo.6 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12 + alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5)))) +(assert (=> alt-ergo.6 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1 + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> camlp4.7 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> zarith.1 + (not (or zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ocamlfind.22 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.22 (and false num.1 conf-m4.1))) +(assert (=> xenbigarray.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-private-libs.4 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.4 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.16 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.16 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.10 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> dune.14 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.14 ocaml.60)) +(assert (=> why3-base.8 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> dune.34 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.34 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> dune-private-libs.8 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.8 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> csexp.8 (not csexp.7))) +(assert (=> csexp.8 + (and result.6 + ocaml.60 + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> base-ocamlbuild.1 false)) +(assert (=> camlp4.23 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.23 (and false ocaml.60))) +(assert (=> topkg.11 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.11 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> conf-gtksourceview.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> sexplib.60 + (not (or sexplib.55 + sexplib.56 + sexplib.57 + sexplib.58 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.60 + (and ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune-configurator.11 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.11 + (and dune-private-libs.8 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.21 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.21 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.68 dune.69 dune.71 dune.72) + (or csexp.7 csexp.8)))) +(assert (=> ppx%5fderivers.1 (not ppx%5fderivers.2))) +(assert (=> ppx%5fderivers.1 + (and ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.36 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.36 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> jbuilder.21 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.21 ocaml.60)) +(assert (=> menhir.51 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.51 + (and ocaml.60 + menhirSdk.5 + menhirLib.5 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools%5fversioned.12 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11)))) +(assert (=> ppx%5ftools%5fversioned.12 + (and (or ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> opam-file-format.11 ocaml.60)) +(assert (=> ocaml-options-vanilla.1 ocaml-base-compiler.36)) +(assert (=> sexplib0.2 + (not (or sexplib0.4 + sexplib0.6 + sexplib0.8 + sexplib.55 + sexplib.56 + sexplib.57 + sexplib.58 + sexplib.60)))) +(assert (=> sexplib0.2 + (and ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> re.23 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlzip.1 + (not (or camlzip.2 camlzip.3 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3-base.7 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> dune-configurator.12 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.12 + (and dune-private-libs.9 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.41 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.41 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune-private-libs.7 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.7 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.26 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25)))) +(assert (=> sqlite3.26 + (and ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + conf-sqlite3.1))) +(assert (=> why3.23 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.23 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> menhirLib.1 + (not (or menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.1 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-private-libs.14 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13)))) +(assert (=> dune-private-libs.14 + (and ocaml.60 + (or dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.4 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.4 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.54 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.55 + menhir.56)))) +(assert (=> menhir.54 + (and ocaml.60 + menhirSdk.8 + menhirLib.8 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> base.25 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24)))) +(assert (=> base.25 + (and sexplib0.8 + false + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.10 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.10 ocaml.60)) +(assert (=> lablgtk.6 + (not (or lablgtk.3 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp5.7 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.7 false)) +(assert (=> ocaml-migrate-parsetree.6 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.6 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.8 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> dune-configurator.3 + (not (or dune-configurator.2 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.3 + (and false + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> octavius.4 + (not (or octavius.1 octavius.2 octavius.3 octavius.5 octavius.6)))) +(assert (=> octavius.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> cppo.2 + (not (or cppo.1 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ocamlfind.7 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.7 (and false num.1 conf-m4.1))) +(assert (=> lablgtk.7 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> ocaml-migrate-parsetree.17 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.17 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> sqlite3.18 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.18 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> configurator.5 (not (or configurator.2 configurator.3 configurator.7)))) +(assert (=> configurator.5 + (and stdio.5 + ocaml.60 + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.11))) +(assert (=> stdio.11 (not (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.13)))) +(assert (=> stdio.11 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or base.20 base.21 base.22)))) +(assert (=> jbuilder.5 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ocamlfind.14 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.14 (and false num.1 conf-m4.1))) +(assert (=> cppo.3 + (not (or cppo.1 + cppo.2 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune.24 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.24 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> why3.13 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.13 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.6 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> menhir.26 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.26 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.68 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.68 + (and (or ocamlfind-secondary.1 ocaml.60) + ocamlfind-secondary.1 + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> sqlite3.8 + (not (or sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> dune-configurator.7 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.7 + (and dune-private-libs.4 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.42 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.42 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp5.9 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.9 false)) +(assert (=> ocamlfind.25 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.26)))) +(assert (=> ocamlfind.25 (and ocaml.60 conf-m4.1))) +(assert (=> menhirLib.2 + (not (or menhirLib.1 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.2 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.10 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.10 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.3 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> ocamlfind.5 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.5 (and false num.1 conf-m4.1))) +(assert (=> ocamlgraph.5 + (not (or ocamlgraph.4 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> camlzip.3 + (not (or camlzip.1 camlzip.2 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ppx%5ftools.7 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.7 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> cudf.5 + (and extlib.14 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> cppo.12 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-private-libs.6 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.6 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.2 + (not (or camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.2 false)) +(assert (=> conf-pkg-config.3 + (not (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.4)))) +(assert (=> z3.10 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-python-2-7.2 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> menhir.6 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> base.11 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.11 + (and sexplib.60 + false + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> sqlite3.10 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> conf-pkg-config.2 + (not (or conf-pkg-config.1 conf-pkg-config.3 conf-pkg-config.4)))) +(assert (=> why3.6 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + coq.1)))) +(assert (=> why3.6 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + false + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> easy-format.7 + (and ocaml.60 + (or dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.8 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp5.14 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.14 false)) +(assert (=> jbuilder.12 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> optcomp.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> dune.30 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.30 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> sqlite3.16 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.16 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> camlzip.4 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp5.21 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.21 ocaml.60)) +(assert (=> alt-ergo-lib.2 (not (or alt-ergo-lib.1 alt-ergo-lib.3 alt-ergo-lib.4)))) +(assert (=> alt-ergo-lib.2 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlfind.17 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.17 (and false num.1 conf-m4.1))) +(assert (=> psmt2-frontend.3 + (not (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.4)))) +(assert (=> psmt2-frontend.3 + (and ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> lwt.35 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.35 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or mmap.1 mmap.2) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> lwt.13 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.13 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> topkg.7 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.7 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> why3-base.6 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.53 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.53 + (and ocaml.60 + menhirSdk.7 + menhirLib.7 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo-parsers.3 + (not (or alt-ergo-parsers.1 alt-ergo-parsers.2 alt-ergo-parsers.4)))) +(assert (=> alt-ergo-parsers.3 + (and stdlib-shims.2 + (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.3))) +(assert (=> dune.35 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.35 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> camlp4.32 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.33)))) +(assert (=> camlp4.32 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ocamlfind.10 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.10 (and false num.1 conf-m4.1))) +(assert (=> camlp4.29 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.29 (and false false))) +(assert (=> menhir.28 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.28 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp5.12 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.12 false)) +(assert (=> ppx%5fast.2 (not (or ppx%5fast.3 ppx%5fast.4)))) +(assert (=> ppx%5fast.2 + (and (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml-compiler-libs.2 + false + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> merlin.46 + (and yojson.18 + result.6 + ocaml.60 + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + dot-merlin-reader.3 + (or csexp.7 csexp.8)))) +(assert (=> ocaml-compiler-libs.2 + (and ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhirLib.3 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.3 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.6 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> zarith.13 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.14)))) +(assert (=> zarith.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ocaml-migrate-parsetree.8 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.8 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.22 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.22 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> menhir.45 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.45 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.29 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.29 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> dune-configurator.16 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.16 + (and dune-private-libs.12 + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> ocplib-endian.9 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8)))) +(assert (=> ocplib-endian.9 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> ppx%5fenumerate.10 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocaml-secondary-compiler.1 (not ocaml-secondary-compiler.2))) +(assert (=> ocaml-secondary-compiler.1 ocaml.60)) +(assert (=> dune.48 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.48 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> dune.21 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.21 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> lablgtk.13 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> topkg.3 + (not (or topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.3 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp4.33 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32)))) +(assert (=> camlp4.33 (and false false))) +(assert (=> sqlite3.14 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> dune.41 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.41 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> why3.24 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.24 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> cppo.19 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.19 + (and ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> ppx%5fast.3 (not (or ppx%5fast.2 ppx%5fast.4)))) +(assert (=> ppx%5fast.3 + (and (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml-compiler-libs.2 + false + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> alt-ergo-parsers.1 + (not (or alt-ergo-parsers.2 alt-ergo-parsers.3 alt-ergo-parsers.4)))) +(assert (=> alt-ergo-parsers.1 + (and (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.1))) +(assert (=> ocaml-migrate-parsetree.16 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.16 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.11 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.13 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.13 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> conf-gmp.2 (not (or conf-gmp.1 conf-gmp.3)))) +(assert (=> camlp4.26 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.26 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> camlp5.22 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.22 ocaml.60)) +(assert (=> camlp5.23 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.24)))) +(assert (=> camlp5.23 ocaml.60)) +(assert (=> lwt.46 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.46 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> menhir.19 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.19 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> why3-base.10 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> ppx%5ftools%5fversioned.8 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.8 + (and (or ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.17 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.17 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> camlp4.13 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + ocaml.60 + conf-which.1))) +(assert (=> jbuilder.18 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.18 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ppx%5ftools.15 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.15 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ppx%5fcore.14 (not (or ppx%5fcore.12 ppx%5fcore.13)))) +(assert (=> ppx%5fcore.14 + (and stdio.3 + ppx%5ftraverse%5fbuiltins.2 + (or ppx%5fast.2 ppx%5fast.3 ppx%5fast.4) + ocaml-compiler-libs.2 + ocaml.60 + (or jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.8 base.9)))) +(assert (=> menhir.29 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.29 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp4.11 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.11 (and false false))) +(assert (=> ocamlfind.6 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.6 (and false num.1 conf-m4.1))) +(assert (=> ocaml-migrate-parsetree.18 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.18 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44)))) +(assert (=> sqlite3.9 + (not (or sqlite3.8 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> lwt.50 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.51)))) +(assert (=> lwt.50 + (and ocaml-syntax-shims.1 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune.25 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.25 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> lwt.21 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.21 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or cppo%5focamlbuild.1 cppo%5focamlbuild.2 cppo%5focamlbuild.3) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> why3.14 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.14 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.7 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> dune-configurator.9 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.9 + (and dune-private-libs.6 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.41 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.41 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune.36 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.36 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> menhir.48 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.48 + (and ocaml.60 + menhirSdk.2 + menhirLib.2 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.66 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.66 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> ppx%5fcore.13 (not (or ppx%5fcore.12 ppx%5fcore.14)))) +(assert (=> ppx%5fcore.13 + (and stdio.3 + ppx%5ftraverse%5fbuiltins.2 + ppx%5fast.4 + ocaml-compiler-libs.2 + ocaml.60 + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.9))) +(assert (=> lwt.30 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.30 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune-private-libs.12 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.12 + (and ocaml.60 (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> ppx%5ftraverse%5fbuiltins.2 + (and ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.20 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.20 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> alt-ergo-parsers.2 + (not (or alt-ergo-parsers.1 alt-ergo-parsers.3 alt-ergo-parsers.4)))) +(assert (=> alt-ergo-parsers.2 + (and (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.2))) +(assert (=> ocaml-secondary-compiler.2 (not ocaml-secondary-compiler.1))) +(assert (=> ocaml-secondary-compiler.2 ocaml.60)) +(assert (=> dune.54 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.54 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> ocaml-config.1 (not ocaml-config.2))) +(assert (=> ocaml-config.1 ocaml-base-compiler.36)) +(assert (=> zarith.14 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13)))) +(assert (=> zarith.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> dune-configurator.22 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.23)))) +(assert (=> dune-configurator.22 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.71 dune.72) + (or csexp.7 csexp.8)))) +(assert (=> ocamlfind.11 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.11 (and false num.1 conf-m4.1))) +(assert (=> cppo.8 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> lablgtk.9 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1))) +(assert (=> menhir.22 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.22 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.6 + (not (or dune.3 + dune.4 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.6 ocaml.60)) +(assert (=> yojson.18 + (and ocaml.60 + easy-format.7 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + biniou.9))) +(assert (=> camlzip.2 + (not (or camlzip.1 camlzip.3 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> base.5 + (not (or base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25 + sexplib.56 + sexplib.57 + sexplib.58 + sexplib.60)))) +(assert (=> base.5 (and false (or jbuilder.4 jbuilder.5 jbuilder.6 jbuilder.7)))) +(assert (=> user-setup.7 + (and re.23 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + cmdliner.14))) +(assert (=> alt-ergo.10 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.10 + (and ocaml.60 + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + alt-ergo-parsers.2 + alt-ergo-lib.2))) +(assert (=> lwt.22 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.22 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or cppo%5focamlbuild.1 cppo%5focamlbuild.2 cppo%5focamlbuild.3) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.4 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> menhir.18 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.18 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> cppo%5focamlbuild.3 (not (or cppo%5focamlbuild.1 cppo%5focamlbuild.2)))) +(assert (=> cppo%5focamlbuild.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.6 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> dune-configurator.17 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.17 + (and dune-private-libs.13 + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> why3.4 + (not (or why3.1 + why3.2 + why3.3 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.4 + (and false + lablgtk.3 + conf-gtksourceview.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> ocamlgraph.12 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9)))) +(assert (=> ocamlgraph.12 + (and stdlib-shims.2 + ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.4 + (not (or dune.3 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.4 ocaml.60)) +(assert (=> camlp4.19 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.19 (and false false))) +(assert (=> sexplib.58 + (not (or sexplib.55 + sexplib.56 + sexplib.57 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.58 + (and ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.2 + (not (or jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.2 ocaml.60)) +(assert (=> why3.8 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.8 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.2 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> sqlite3.13 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> ppx%5ftools.5 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.5 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> topkg.4 + (not (or topkg.3 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.4 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> jbuilder.13 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> base.16 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.16 + (and sexplib0.4 + ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.50 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.50 + (and ocaml.60 + menhirSdk.4 + menhirLib.4 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.16 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.16 false)) +(assert (=> dune.33 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.33 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> conf-sqlite3.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> camlp4.14 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.14 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> alt-ergo.2 + (not (or alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.2 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> dune-configurator.23 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22)))) +(assert (=> dune-configurator.23 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.71 dune.72) + (or csexp.7 csexp.8)))) +(assert (=> cppo.22 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21)))) +(assert (=> cppo.22 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + base-unix.1))) +(assert (=> why3-base.3 + (not (or why3-base.1 + why3-base.2 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 menhir.3 menhir.4 menhir.6)))) +(assert (=> dune-private-libs.5 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.5 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.17 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.17 ocaml.60)) +(assert (=> base.20 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.20 + (and sexplib0.6 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.23 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.23 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.40 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.40 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> ppx%5fdriver.15 (not (or ppx%5fdriver.14 ppx%5fdriver.16)))) +(assert (=> ppx%5fdriver.15 + (and ppx%5foptcomp.12 + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + (or ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + false + (or jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.4 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.4 ocaml.60)) +(assert (=> base.22 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.24 + base.25)))) +(assert (=> base.22 + (and sexplib0.6 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> num.6 (not (or num.1 num.2 num.3 num.4 num.5 base-num.1)))) +(assert (=> num.6 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> ocplib-endian.6 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.6 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33) + (or base-bytes.1 base-bytes.2)))) +(assert (=> result.5 (not (or result.1 result.2 result.3 result.4 result.6)))) +(assert (=> result.5 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.15 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> ocaml-migrate-parsetree.20 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.20 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.14 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.14 + (and dune-private-libs.11 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.18 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.18 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ppx%5ftools.14 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.14 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> conf-gmp.3 (not (or conf-gmp.1 conf-gmp.2)))) +(assert (=> octavius.1 + (not (or octavius.2 octavius.3 octavius.4 octavius.5 octavius.6)))) +(assert (=> octavius.1 + (and (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> base-num.1 false)) +(assert (=> dune.3 + (not (or dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.3 ocaml.60)) +(assert (=> dune.61 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.61 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> camlzip.5 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.4 camlzip.6 camlzip.7)))) +(assert (=> camlzip.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-zlib.1))) +(assert (=> dune-configurator.5 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.5 + (and dune-private-libs.2 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.64 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.64 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> menhirLib.8 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.8 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.9 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.9 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> ppx%5ftype%5fconv.13 (not ppx%5ftype%5fconv.14))) +(assert (=> ppx%5ftype%5fconv.13 + (and ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.16 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.16 ocaml.60)) +(assert (=> menhir.13 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> dune.19 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.19 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> ppx%5ftools.17 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.17 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5fast.4 (not (or ppx%5fast.2 ppx%5fast.3)))) +(assert (=> ppx%5fast.4 + (and (or ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml-compiler-libs.2 + ocaml.60 + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.27 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.27 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.39 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.39 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> lablgtk.8 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1))) +(assert (=> menhir.52 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.52 + (and ocaml.60 + menhirSdk.6 + menhirLib.6 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.18 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.18 ocaml.60)) +(assert (=> ppx%5ftools.11 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.11 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> menhirSdk.6 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.6 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.2 + (not (or dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.2 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44))) +(assert (=> base-implicits.1 (and false ocaml.60))) +(assert (=> dune.62 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.62 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> topkg.6 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.6 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.72 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.72 (and ocamlfind-secondary.1 ocaml.60 base-unix.1 base-threads.1))) +(assert (=> alt-ergo.3 + (not (or alt-ergo.2 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.3 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> ocaml-migrate-parsetree.31 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.31 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> base.21 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.22 + base.24 + base.25)))) +(assert (=> base.21 + (and sexplib0.6 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.4 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.4 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> octavius.5 + (not (or octavius.1 octavius.2 octavius.3 octavius.4 octavius.6)))) +(assert (=> octavius.5 + (and ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocaml-migrate-parsetree.11 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.11 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp5.3 + (not (or camlp5.2 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.3 false)) +(assert (=> base-no-ppx.1 false)) +(assert (=> %3dopam-invariant.1 ocaml-base-compiler.36)) +(assert (=> result.3 (not (or result.1 result.2 result.4 result.5 result.6)))) +(assert (=> result.3 ocaml.60)) +(assert (=> dune-private-libs.2 + (not (or dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.2 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.2 + (not (or menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> menhirLib.7 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.7 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> topkg.13 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.13 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.22 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.22 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + false + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dot-merlin-reader.3 + (and yojson.18 + result.6 + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or csexp.7 csexp.8)))) +(assert (=> lwt.32 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.32 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ppx%5ftools.10 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.10 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> mmap.1 (not mmap.2))) +(assert (=> mmap.1 + (and ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.23 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.23 ocaml.60)) +(assert (=> why3.1 + (not (or why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.1 + (and (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26) + ocamlgraph.4 + false + coq.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> dune.50 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.50 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> num.4 (not (or num.1 num.2 num.3 num.5 num.6 base-num.1)))) +(assert (=> num.4 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> menhir.33 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.33 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lablgtk.11 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> ppx%5ftype%5fconv.14 (not ppx%5ftype%5fconv.13))) +(assert (=> ppx%5ftype%5fconv.14 + (and ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fderivers.1 ppx%5fderivers.2) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ppx%5ftools.13 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.13 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ppx%5fmetaquot.2 + (and ppx%5ftraverse%5fbuiltins.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.59 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.59 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> seq.4 (not (or seq.1 seq.2 seq.3 seq.5)))) +(assert (=> seq.4 + (and ocaml.60 + (or dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> octavius.6 + (not (or octavius.1 octavius.2 octavius.3 octavius.4 octavius.5)))) +(assert (=> octavius.6 + (and ocaml.60 + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.11 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.12)))) +(assert (=> alt-ergo.11 + (and ocaml.60 + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + alt-ergo-parsers.3 + alt-ergo-lib.3))) +(assert (=> octavius.2 + (not (or octavius.1 octavius.3 octavius.4 octavius.5 octavius.6)))) +(assert (=> octavius.2 + (and (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.21 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.21 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + false + false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.12 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.12 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.5 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> ocplib-endian.4 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.4 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33) + (or base-bytes.1 base-bytes.2)))) +(assert (=> topkg.5 + (not (or topkg.3 + topkg.4 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.5 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> alt-ergo-parsers.4 + (not (or alt-ergo-parsers.1 alt-ergo-parsers.2 alt-ergo-parsers.3)))) +(assert (=> alt-ergo-parsers.4 + (and stdlib-shims.2 + (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.4))) +(assert (=> menhir.21 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.21 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> base.6 + (not (or base.5 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.6 + (and (or sexplib.56 sexplib.57 sexplib.58) + false + (or jbuilder.2 jbuilder.3 jbuilder.4 jbuilder.5 jbuilder.6 jbuilder.7)))) +(assert (=> ppx%5ftools.19 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18)))) +(assert (=> ppx%5ftools.19 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> jbuilder.10 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> menhir.39 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.39 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> stdio.13 (not (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11)))) +(assert (=> stdio.13 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or base.24 base.25)))) +(assert (=> camlzip.7 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.4 camlzip.5 camlzip.6)))) +(assert (=> camlzip.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-zlib.1))) +(assert (=> zarith.6 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> base-bytes.1 (not base-bytes.2))) +(assert (=> base-bytes.1 + (and (or ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> dune-configurator.8 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.8 + (and dune-private-libs.5 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.8 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ocamlbuild.4 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.4 ocaml.60)) +(assert (=> ocaml-migrate-parsetree.9 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.9 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocplib-simplex.2 (not ocplib-simplex.1))) +(assert (=> ocplib-simplex.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + conf-autoconf.1))) +(assert (=> ppx%5fsexp%5fconv.14 + (and (or sexplib.55 sexplib.56 sexplib.57 sexplib.58) + (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.4 + (not (or lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> menhir.43 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.43 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.10 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 camlp4.3)))) +(assert (=> ocaml-base-compiler.36 + (and ocaml.60 base-unix.1 base-threads.1 base-bigarray.1))) +(assert (=> mccs.9 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + cudf.5))) +(assert (=> base.24 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.25)))) +(assert (=> base.24 + (and sexplib0.8 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocplib-endian.7 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> ocaml-migrate-parsetree.10 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.10 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune-private-libs.11 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.11 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.25 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.26)))) +(assert (=> sqlite3.25 + (and ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + conf-sqlite3.1))) +(assert (=> ocaml-migrate-parsetree.27 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.27 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.44 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.44 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> why3-base.5 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> dune.7 + (not (or dune.3 + dune.4 + dune.6 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.7 ocaml.60)) +(assert (=> ppx%5fjs%5fstyle.2 + (and ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or octavius.1 octavius.2 octavius.3 octavius.4 octavius.5 octavius.6) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune-private-libs.10 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.10 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> zarith.3 + (not (or zarith.1 + zarith.2 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> num.5 (not (or num.1 num.2 num.3 num.4 num.6 base-num.1)))) +(assert (=> num.5 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> ocamlbuild.1 + (not (or ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8)))) +(assert (=> ocamlbuild.1 (and ocaml.60 base-ocamlbuild.1))) +(assert (=> seq.3 (not (or seq.1 seq.2 seq.4 seq.5)))) +(assert (=> seq.3 + (and false + (or dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.11 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> dune.43 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.43 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> configurator.7 + (not (or configurator.2 configurator.3 configurator.5 jbuilder.20)))) +(assert (=> configurator.7 + (and (or stdio.7 stdio.9 stdio.11) + ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.13 base.14 base.16 base.17 base.18 base.20 base.21 base.22)))) +(assert (=> alt-ergo-lib.4 (not (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.3)))) +(assert (=> alt-ergo-lib.4 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + stdlib-shims.2 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> conf-pkg-config.1 + (not (or conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4)))) +(assert (=> camlp5.20 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.20 ocaml.60)) +(assert (=> camlp4.5 + (not (or camlp4.2 + camlp4.3 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> sqlite3.20 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.20 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> camlp5.17 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.17 ocaml.60)) +(assert (=> cppo.16 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.16 + (and false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> stdio.2 (not (or stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.2 + (and false + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> menhir.31 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.31 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.18 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.18 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> topkg.15 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.16)))) +(assert (=> topkg.15 + (and (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> conf-autoconf.1 conf-which.1)) +(assert (=> camlp4.2 + (not (or camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.2 false)) +(assert (=> base.13 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.13 + (and sexplib0.2 + false + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> zarith.5 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ppx%5ftools%5fversioned.9 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.9 + (and (or ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5fhash.2 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fsexp%5fconv.14 + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + ppx%5fcompare.11 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> ppx%5ftools.8 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.8 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> conf-pkg-config.4 + (not (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3)))) +(assert (=> ocamlfind.26 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25)))) +(assert (=> ocamlfind.26 (and ocaml.60 conf-m4.1))) +(assert (=> ocamlbuild.6 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.6 ocaml.60)) +(assert (=> ocamlbuild.5 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.5 ocaml.60)) +(assert (=> why3.15 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.15 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.8 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> menhir.20 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.20 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ppx%5fdriver.16 (not (or ppx%5fdriver.14 ppx%5fdriver.15)))) +(assert (=> ppx%5fdriver.16 + (and ppx%5foptcomp.12 + (or ppx%5fcore.13 ppx%5fcore.14) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + (or ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> biniou.9 + (and ocaml.60 + easy-format.7 + (or dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.18 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.18 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.12 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> lablgtk.15 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14)))) +(assert (=> lablgtk.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> jbuilder.22 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.22 ocaml.60)) +(assert (=> why3.26 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.26 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.24 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.24 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> why3-base.11 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> lablgtk.12 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> menhir.14 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> menhirSdk.5 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.5 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.24 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.24 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.13 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.13 + (and dune-private-libs.10 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.31 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.31 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> conf-zlib.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> dune.71 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.71 (and ocamlfind-secondary.1 ocaml.60 base-unix.1 base-threads.1))) +(assert (=> dune.65 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.65 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> dune.42 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.42 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> ppx%5fcompare.11 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> menhirSdk.7 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.7 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.6 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> dune-private-libs.3 + (not (or dune-private-libs.2 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.3 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.16 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.16 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> sqlite3.21 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.21 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base-bytes.2 (not base-bytes.1))) +(assert (=> base-bytes.2 + (and (or ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> zarith.12 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.13 + zarith.14)))) +(assert (=> zarith.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> menhir.4 + (not (or menhir.2 + menhir.3 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> zarith.8 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> topkg.8 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.8 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocplib-simplex.1 (not ocplib-simplex.2))) +(assert (=> ocplib-simplex.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + conf-autoconf.1))) +(assert (=> ppx%5fbase.2 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fsexp%5fconv.14 + ppx%5fjs%5fstyle.2 + ppx%5fhash.2 + ppx%5fenumerate.10 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + ppx%5fcompare.11 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.47 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.47 + (and ocaml.60 + menhirSdk.1 + menhirLib.1 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dose3.5 + (and extlib.14 + re.23 + (or ocamlgraph.7 ocamlgraph.8 ocamlgraph.9 ocamlgraph.12) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + cudf.5 + (or cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> csexp.7 (not csexp.8))) +(assert (=> csexp.7 + (and result.6 + ocaml.60 + (or dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.21 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.22)))) +(assert (=> cppo.21 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + base-unix.1))) +(assert (=> ocamlgraph.6 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> base-metaocaml-ocamlfind.1 (and false ocaml.60))) +(assert (=> result.1 (not (or result.2 result.3 result.4 result.5 result.6)))) +(assert (=> result.1 ocaml.60)) +(assert (=> menhir.15 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> menhir.38 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.38 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> sexplib.55 + (not (or sexplib.56 + sexplib.57 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.55 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11) + base.5))) +(assert (=> ocplib-endian.8 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.9)))) +(assert (=> ocplib-endian.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> lwt.29 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.29 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> coq.1 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + conf-findutils.1 + (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> seq.1 (not (or seq.2 seq.3 seq.4 seq.5)))) +(assert (=> seq.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> result.6 (not (or result.1 result.2 result.3 result.4 result.5)))) +(assert (=> result.6 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlbuild.8 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.8 ocaml.60)) +(assert (=> dune.69 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.69 + (and (or ocamlfind-secondary.1 ocaml.60) + ocamlfind-secondary.1 + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> why3.20 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.20 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> lablgtk.10 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> ocaml-migrate-parsetree.26 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.26 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.40 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.40 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> jbuilder.7 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> dune-private-libs.13 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.14)))) +(assert (=> dune-private-libs.13 + (and ocaml.60 + (or dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.15 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or base-bytes.1 base-bytes.2)))) +(assert (=> lwt.45 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.45 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> result.4 (not (or result.1 result.2 result.3 result.5 result.6)))) +(assert (=> result.4 + (and ocaml.60 + (or jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ppx%5ftools.18 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.18 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.44 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.44 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> camlp4.21 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.21 (and false false))) +(assert (=> menhir.55 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) +(assert (=> menhir.55 + (and ocaml.60 + menhirSdk.9 + menhirLib.9 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.19 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.19 false)) +(assert (=> cppo.7 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> menhir.40 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.40 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> sexplib.56 + (not (or sexplib.55 + sexplib.57 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.56 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11)))) +(assert (=> dune.9 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.9 ocaml.60)) +(assert (=> lwt.49 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.50 + lwt.51)))) +(assert (=> lwt.49 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> num.3 (not (or num.1 num.2 num.4 num.5 num.6 base-num.1)))) +(assert (=> num.3 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> camlp5.13 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.13 false)) +(assert (=> lwt.14 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.14 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> ppx%5ftools%5fversioned.10 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.10 + (and (or ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.9 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.9 (and ocaml.60 alt-ergo-parsers.1 alt-ergo-lib.1))) +(assert (=> jbuilder.14 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> num.2 (not (or num.1 num.3 num.4 num.5 num.6 base-num.1)))) +(assert (=> num.2 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> jbuilder.17 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.17 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)) +(assert (>= 100000000000000 (+ (ite (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + 0 + 1) + (ite (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + 0 + 1) + (ite (or result.1 result.2 result.3 result.4 result.5 result.6) 0 1) + (ite dose3.5 0 1) + (ite (or base-bytes.1 base-bytes.2) 0 1) + (ite conf-zlib.1 0 1) + (ite (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + 0 + 1) + (ite biniou.9 0 1) + (ite base-unix.1 0 1) + (ite (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + 0 + 1) + (ite (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + 0 + 1) + (ite conf-autoconf.1 0 1) + (ite conf-emacs.1 0 1) + (ite (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.3 alt-ergo-lib.4) 0 1) + (ite mccs.9 0 1) + (ite ocaml-base-compiler.36 0 1) + (ite (or ocplib-simplex.1 ocplib-simplex.2) 0 1) + (ite (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + 0 + 1) + (ite (or alt-ergo-parsers.1 + alt-ergo-parsers.2 + alt-ergo-parsers.3 + alt-ergo-parsers.4) + 0 + 1) + (ite dot-merlin-reader.3 0 1) + (ite %3dopam-invariant.1 0 1) + (ite (or conf-gmp.1 conf-gmp.2 conf-gmp.3) 0 1) + (ite (or num.1 num.2 num.3 num.4 num.5 num.6) 0 1) + (ite (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + 0 + 1) + (ite (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + 0 + 1) + (ite user-setup.7 0 1) + (ite yojson.18 0 1) + (ite (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + 0 + 1) + (ite (or ocaml-config.1 ocaml-config.2) 0 1) + (ite (or ocaml-secondary-compiler.1 ocaml-secondary-compiler.2) 0 1) + (ite conf-which.1 0 1) + (ite base-bigarray.1 0 1) + (ite merlin.46 0 1) + (ite easy-format.7 0 1) + (ite z3.10 0 1) + (ite cudf.5 0 1) + (ite re.23 0 1) + (ite opam-file-format.11 0 1) + (ite (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + 0 + 1) + (ite (or csexp.7 csexp.8) 0 1) + (ite ocaml.60 0 1) + (ite stdlib-shims.2 0 1) + (ite ocp-indent.28 0 1) + (ite cmdliner.14 0 1) + (ite (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + 0 + 1) + (ite tuareg.6 0 1) + (ite conf-python-2-7.2 0 1) + (ite extlib.14 0 1) + (ite (or seq.1 seq.2 seq.3 seq.4 seq.5) 0 1) + (ite (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10) + 0 + 1) + (ite conf-perl.1 0 1) + (ite (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10) + 0 + 1) + (ite base-threads.1 0 1) + (ite (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12) + 0 + 1) + (ite conf-gtk2.1 0 1) + (ite conf-m4.1 0 1) + (ite ocamlfind-secondary.1 0 1) + (ite (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + 0 + 1))) +) +(assert (>= 100000000000000 (+ (ite why3.20 8 0) + (ite why3.26 2 0) + (ite why3.18 10 0) + (ite why3.15 13 0) + (ite why3.12 16 0) + (ite why3.1 26 0) + (ite why3.8 19 0) + (ite why3.4 23 0) + (ite why3.14 14 0) + (ite why3.24 4 0) + (ite why3.6 21 0) + (ite why3.10 18 0) + (ite why3.13 15 0) + (ite why3.23 5 0) + (ite why3.16 12 0) + (ite why3.21 7 0) + (ite why3.5 22 0) + (ite why3.27 1 0) + (ite why3.2 25 0) + (ite why3.3 24 0) + (ite why3.22 6 0) + (ite why3.17 11 0) + (ite why3.19 9 0) + (ite why3.11 17 0) + (ite why3.25 3 0) + (ite why3.7 20 0))) + ) + +(assert (>= 100000000000000 (+ (ite jbuilder.17 8 0) + (ite num.2 4 0) + (ite jbuilder.14 11 0) + (ite alt-ergo.9 3 0) + (ite ppx%5ftools%5fversioned.10 2 0) + (ite lwt.14 29 0) + (ite camlp5.13 18 0) + (ite num.3 3 0) + (ite lwt.49 2 0) + (ite dune.9 43 0) + (ite sexplib.56 7 0) + (ite menhir.40 16 0) + (ite cppo.7 14 0) + (ite camlp5.19 12 0) + (ite menhir.55 1 0) + (ite camlp4.21 12 0) + (ite lwt.44 6 0) + (ite ppx%5ftools.18 1 0) + (ite result.4 2 0) + (ite lwt.45 5 0) + (ite cppo.15 7 0) + (ite dune-private-libs.13 5 0) + (ite jbuilder.7 18 0) + (ite lwt.40 9 0) + (ite ocaml-migrate-parsetree.26 8 0) + (ite lablgtk.10 5 0) + (ite why3.20 8 0) + (ite dune.69 0 2) + (ite seq.1 4 0) + (ite coq.1 34 0) + (ite lwt.29 17 0) + (ite ocplib-endian.8 1 0) + (ite sexplib.55 8 0) + (ite menhir.38 18 0) + (ite menhir.15 40 0) + (ite result.1 5 0) + (ite ocamlgraph.6 4 0) + (ite cppo.21 1 0) + (ite csexp.7 1 0) + (ite menhir.47 9 0) + (ite ppx%5fbase.2 5 0) + (ite ocplib-simplex.1 1 0) + (ite topkg.8 7 0) + (ite zarith.8 4 0) + (ite menhir.4 47 0) + (ite zarith.12 2 0) + (ite sqlite3.21 4 0) + (ite menhir.16 39 0) + (ite dune-private-libs.3 15 0) + (ite camlp4.6 26 0) + (ite menhirSdk.7 3 0) + (ite ppx%5fcompare.11 6 0) + (ite dune.42 19 0) + (ite dune.65 5 0) + (ite dune.71 1 0) + (ite dune.31 27 0) + (ite dune-configurator.13 8 0) + (ite ocaml-migrate-parsetree.24 9 0) + (ite menhirSdk.5 5 0) + (ite menhir.14 41 0) + (ite lablgtk.12 3 0) + (ite why3-base.11 2 0) + (ite menhir.24 31 0) + (ite why3.26 2 0) + (ite jbuilder.22 3 0) + (ite why3.18 10 0) + (ite ppx%5fdriver.16 6 0) + (ite menhir.20 35 0) + (ite why3.15 13 0) + (ite ocamlbuild.5 3 0) + (ite ocamlbuild.6 2 0) + (ite ppx%5ftools.8 11 0) + (ite ppx%5fhash.2 6 0) + (ite ppx%5ftools%5fversioned.9 3 0) + (ite zarith.5 7 0) + (ite base.13 9 0) + (ite camlp4.2 29 0) + (ite topkg.15 1 0) + (ite lwt.18 26 0) + (ite menhir.31 24 0) + (ite stdio.2 6 0) + (ite cppo.16 6 0) + (ite camlp5.17 14 0) + (ite sqlite3.20 5 0) + (ite camlp4.5 27 0) + (ite camlp5.20 11 0) + (ite conf-pkg-config.1 3 0) + (ite dune.43 18 0) + (ite jbuilder.11 14 0) + (ite seq.3 2 0) + (ite ocamlbuild.1 7 0) + (ite num.5 1 0) + (ite zarith.3 9 0) + (ite dune-private-libs.10 8 0) + (ite ppx%5fjs%5fstyle.2 5 0) + (ite dune.7 44 0) + (ite why3-base.5 7 0) + (ite dune.44 17 0) + (ite ocaml-migrate-parsetree.27 7 0) + (ite sqlite3.25 1 0) + (ite dune-private-libs.11 7 0) + (ite ocaml-migrate-parsetree.10 23 0) + (ite ocplib-endian.7 2 0) + (ite base.24 1 0) + (ite ocaml-base-compiler.36 0 13) + (ite lwt.10 33 0) + (ite menhir.43 13 0) + (ite lwt.4 38 0) + (ite ppx%5fsexp%5fconv.14 9 0) + (ite ocaml-migrate-parsetree.9 24 0) + (ite ocamlbuild.4 4 0) + (ite jbuilder.8 17 0) + (ite dune-configurator.8 13 0) + (ite base-bytes.1 1 0) + (ite zarith.6 6 0) + (ite menhir.39 17 0) + (ite jbuilder.10 15 0) + (ite base.6 14 0) + (ite menhir.21 34 0) + (ite topkg.5 10 0) + (ite ocplib-endian.4 4 0) + (ite why3.12 16 0) + (ite ocaml-migrate-parsetree.21 12 0) + (ite octavius.2 4 0) + (ite alt-ergo.11 1 0) + (ite seq.4 1 0) + (ite dune.59 9 0) + (ite ppx%5fmetaquot.2 2 0) + (ite ppx%5ftools.13 6 0) + (ite ppx%5ftype%5fconv.14 2 0) + (ite lablgtk.11 4 0) + (ite menhir.33 22 0) + (ite num.4 2 0) + (ite dune.50 15 0) + (ite why3.1 26 0) + (ite jbuilder.23 2 0) + (ite mmap.1 1 0) + (ite ppx%5ftools.10 9 0) + (ite lwt.32 15 0) + (ite ocaml-migrate-parsetree.22 11 0) + (ite topkg.13 3 0) + (ite menhirLib.7 3 0) + (ite menhir.2 49 0) + (ite dune-private-libs.2 16 0) + (ite result.3 3 0) + (ite camlp5.3 28 0) + (ite ocaml-migrate-parsetree.11 22 0) + (ite octavius.5 1 0) + (ite alt-ergo.4 8 0) + (ite base.21 3 0) + (ite ocaml-migrate-parsetree.31 4 0) + (ite alt-ergo.3 9 0) + (ite topkg.6 9 0) + (ite dune.62 7 0) + (ite dune-configurator.2 18 0) + (ite menhirSdk.6 4 0) + (ite ppx%5ftools.11 8 0) + (ite camlp5.18 13 0) + (ite menhir.52 4 0) + (ite lablgtk.8 7 0) + (ite lwt.39 10 0) + (ite menhir.27 28 0) + (ite ppx%5fast.4 2 0) + (ite ppx%5ftools.17 2 0) + (ite dune.19 37 0) + (ite menhir.13 42 0) + (ite dune.16 39 0) + (ite ppx%5ftype%5fconv.13 3 0) + (ite camlp4.9 23 0) + (ite menhirLib.8 2 0) + (ite dune.64 6 0) + (ite dune-configurator.5 16 0) + (ite camlzip.5 2 0) + (ite dune.61 8 0) + (ite dune.3 47 0) + (ite octavius.1 5 0) + (ite ppx%5ftools.14 5 0) + (ite camlp4.18 15 0) + (ite dune-configurator.14 7 0) + (ite ocaml-migrate-parsetree.20 13 0) + (ite sqlite3.15 10 0) + (ite result.5 1 0) + (ite ocplib-endian.6 3 0) + (ite base.22 2 0) + (ite jbuilder.4 21 0) + (ite ppx%5fdriver.15 7 0) + (ite dune.40 21 0) + (ite ocaml-migrate-parsetree.23 10 0) + (ite base.20 4 0) + (ite dune.17 38 0) + (ite dune-private-libs.5 13 0) + (ite why3-base.3 9 0) + (ite alt-ergo.2 10 0) + (ite camlp4.14 19 0) + (ite dune.33 26 0) + (ite camlp5.16 15 0) + (ite menhir.50 6 0) + (ite base.16 7 0) + (ite jbuilder.13 12 0) + (ite topkg.4 11 0) + (ite ppx%5ftools.5 13 0) + (ite sqlite3.13 12 0) + (ite why3.8 19 0) + (ite jbuilder.2 23 0) + (ite sexplib.58 5 0) + (ite camlp4.19 14 0) + (ite dune.4 46 0) + (ite why3.4 23 0) + (ite dune-configurator.17 5 0) + (ite jbuilder.6 19 0) + (ite menhir.18 37 0) + (ite cppo.4 17 0) + (ite lwt.22 22 0) + (ite alt-ergo.10 2 0) + (ite base.5 15 0) + (ite camlzip.2 5 0) + (ite dune.6 45 0) + (ite menhir.22 33 0) + (ite lablgtk.9 6 0) + (ite cppo.8 13 0) + (ite ocamlfind.11 12 0) + (ite dune-configurator.22 1 0) + (ite ocaml-config.1 0 1) + (ite dune.54 12 0) + (ite alt-ergo-parsers.2 2 0) + (ite lwt.20 24 0) + (ite ppx%5ftraverse%5fbuiltins.2 2 0) + (ite dune-private-libs.12 6 0) + (ite lwt.30 16 0) + (ite ppx%5fcore.13 3 0) + (ite dune.66 4 0) + (ite menhir.48 8 0) + (ite dune.36 23 0) + (ite lwt.41 8 0) + (ite dune-configurator.9 12 0) + (ite why3.14 14 0) + (ite lwt.21 23 0) + (ite dune.25 32 0) + (ite lwt.50 1 0) + (ite sqlite3.9 16 0) + (ite ocaml-migrate-parsetree.18 15 0) + (ite ocamlfind.6 15 0) + (ite camlp4.11 21 0) + (ite menhir.29 26 0) + (ite ppx%5fcore.14 2 0) + (ite ppx%5ftools.15 4 0) + (ite jbuilder.18 7 0) + (ite camlp4.13 20 0) + (ite lwt.17 27 0) + (ite ppx%5ftools%5fversioned.8 4 0) + (ite why3-base.10 3 0) + (ite menhir.19 36 0) + (ite lwt.46 4 0) + (ite camlp5.23 8 0) + (ite camlp5.22 9 0) + (ite camlp4.26 7 0) + (ite conf-gmp.2 1 0) + (ite ocaml-migrate-parsetree.13 20 0) + (ite menhir.11 44 0) + (ite ocaml-migrate-parsetree.16 17 0) + (ite alt-ergo-parsers.1 3 0) + (ite ppx%5fast.3 3 0) + (ite cppo.19 3 0) + (ite why3.24 4 0) + (ite dune.41 20 0) + (ite sqlite3.14 11 0) + (ite topkg.3 12 0) + (ite lablgtk.13 2 0) + (ite dune.21 35 0) + (ite dune.48 16 0) + (ite ocaml-secondary-compiler.1 1 0) + (ite ppx%5fenumerate.10 6 0) + (ite dune-configurator.16 6 0) + (ite dune.29 29 0) + (ite menhir.45 11 0) + (ite dune.22 34 0) + (ite ocaml-migrate-parsetree.8 25 0) + (ite zarith.13 1 0) + (ite cppo.6 15 0) + (ite menhirLib.3 7 0) + (ite ocaml-compiler-libs.2 5 0) + (ite ppx%5fast.2 4 0) + (ite camlp5.12 19 0) + (ite menhir.28 27 0) + (ite camlp4.29 4 0) + (ite ocamlfind.10 13 0) + (ite camlp4.32 1 0) + (ite dune.35 24 0) + (ite alt-ergo-parsers.3 1 0) + (ite menhir.53 3 0) + (ite why3-base.6 6 0) + (ite topkg.7 8 0) + (ite lwt.13 30 0) + (ite lwt.35 13 0) + (ite psmt2-frontend.3 1 0) + (ite ocamlfind.17 7 0) + (ite alt-ergo-lib.2 2 0) + (ite camlp5.21 10 0) + (ite camlzip.4 3 0) + (ite sqlite3.16 9 0) + (ite dune.30 28 0) + (ite jbuilder.12 13 0) + (ite camlp5.14 17 0) + (ite lwt.8 35 0) + (ite why3.6 21 0) + (ite conf-pkg-config.2 2 0) + (ite sqlite3.10 15 0) + (ite base.11 10 0) + (ite menhir.6 46 0) + (ite conf-pkg-config.3 1 0) + (ite camlp5.2 29 0) + (ite dune-private-libs.6 12 0) + (ite cppo.12 10 0) + (ite ppx%5ftools.7 12 0) + (ite camlzip.3 4 0) + (ite ocamlgraph.5 5 0) + (ite ocamlfind.5 16 0) + (ite why3.10 18 0) + (ite menhirLib.2 8 0) + (ite ocamlfind.25 1 0) + (ite camlp5.9 22 0) + (ite menhir.42 14 0) + (ite dune-configurator.7 14 0) + (ite sqlite3.8 17 0) + (ite dune.68 3 0) + (ite menhir.26 29 0) + (ite why3.13 15 0) + (ite dune.24 33 0) + (ite cppo.3 18 0) + (ite ocamlfind.14 9 0) + (ite jbuilder.5 20 0) + (ite stdio.11 1 0) + (ite configurator.5 1 0) + (ite sqlite3.18 7 0) + (ite ocaml-migrate-parsetree.17 16 0) + (ite lablgtk.7 8 0) + (ite ocamlfind.7 14 0) + (ite cppo.2 19 0) + (ite octavius.4 2 0) + (ite dune-configurator.3 17 0) + (ite menhir.8 45 0) + (ite ocaml-migrate-parsetree.6 26 0) + (ite camlp5.7 24 0) + (ite lablgtk.6 9 0) + (ite dune.10 42 0) + (ite menhir.54 2 0) + (ite menhirLib.4 6 0) + (ite dune-private-libs.14 4 0) + (ite menhirLib.1 9 0) + (ite why3.23 5 0) + (ite dune-private-libs.7 11 0) + (ite menhir.41 15 0) + (ite dune-configurator.12 9 0) + (ite why3-base.7 5 0) + (ite camlzip.1 6 0) + (ite sexplib0.2 3 0) + (ite menhir.51 5 0) + (ite jbuilder.21 4 0) + (ite menhir.36 20 0) + (ite ppx%5fderivers.1 1 0) + (ite dune-configurator.21 0 2) + (ite dune-configurator.11 10 0) + (ite sexplib.60 4 0) + (ite topkg.11 5 0) + (ite camlp4.23 10 0) + (ite dune-private-libs.8 10 0) + (ite dune.34 25 0) + (ite why3-base.8 4 0) + (ite dune.14 40 0) + (ite why3.16 12 0) + (ite dune-private-libs.4 14 0) + (ite ocamlfind.22 4 0) + (ite zarith.1 11 0) + (ite camlp4.7 25 0) + (ite alt-ergo.6 6 0) + (ite dune.56 11 0) + (ite ocamlbuild.3 5 0) + (ite result.2 4 0) + (ite why3.21 7 0) + (ite ocaml-migrate-parsetree.30 5 0) + (ite ocaml-migrate-parsetree.12 21 0) + (ite ocamlfind.12 11 0) + (ite cppo%5focamlbuild.2 1 0) + (ite cppo.17 5 0) + (ite cppo.13 9 0) + (ite camlzip.6 1 0) + (ite octavius.3 3 0) + (ite ocaml.60 0 12) + (ite sqlite3.23 2 0) + (ite menhirLib.6 4 0) + (ite dune.52 13 0) + (ite zarith.7 5 0) + (ite ppx%5ftools%5fversioned.6 6 0) + (ite psmt2-frontend.1 3 0) + (ite configurator.2 3 0) + (ite jbuilder.16 9 0) + (ite base.7 13 0) + (ite sqlite3.19 6 0) + (ite ocplib-endian.1 7 0) + (ite menhirSdk.1 9 0) + (ite base.18 5 0) + (ite menhir.25 30 0) + (ite camlp5.10 21 0) + (ite lwt.7 36 0) + (ite ocaml-migrate-parsetree.19 14 0) + (ite menhir.32 23 0) + (ite why3.5 22 0) + (ite why3-base.1 11 0) + (ite alt-ergo.7 5 0) + (ite jbuilder.20 5 0) + (ite why3.27 1 0) + (ite ppx%5ftools.3 15 0) + (ite dune.38 22 0) + (ite ppx%5ftools%5fversioned.7 5 0) + (ite lablgtk.3 10 0) + (ite why3.2 25 0) + (ite zarith.2 10 0) + (ite camlp5.11 20 0) + (ite base.9 11 0) + (ite ocamlfind.3 18 0) + (ite camlp5.5 26 0) + (ite zarith.4 8 0) + (ite cppo.20 2 0) + (ite menhir.23 32 0) + (ite camlp4.17 16 0) + (ite lwt.26 18 0) + (ite ocamlfind.4 17 0) + (ite seq.2 3 0) + (ite base.17 6 0) + (ite cppo.5 16 0) + (ite ppx%5ftools.1 17 0) + (ite menhir.17 38 0) + (ite lwt.38 11 0) + (ite why3.3 24 0) + (ite topkg.9 6 0) + (ite topkg.12 4 0) + (ite dune.27 30 0) + (ite dune.20 36 0) + (ite lwt.11 32 0) + (ite ocamlfind.23 3 0) + (ite ocaml-migrate-parsetree.14 19 0) + (ite ocamlgraph.8 2 0) + (ite lwt.16 28 0) + (ite ocplib-endian.3 5 0) + (ite cppo.1 20 0) + (ite menhirSdk.3 7 0) + (ite why3-base.12 1 0) + (ite cppo.18 4 0) + (ite why3.22 6 0) + (ite ocaml-migrate-parsetree.15 18 0) + (ite jbuilder.9 16 0) + (ite lwt.6 37 0) + (ite cppo%5focamlbuild.1 2 0) + (ite ocamlbuild.2 6 0) + (ite sqlite3.11 14 0) + (ite dune-configurator.18 4 0) + (ite camlp4.16 17 0) + (ite camlp4.3 28 0) + (ite menhir.44 12 0) + (ite ocaml-migrate-parsetree.32 3 0) + (ite ppx%5ftools.12 7 0) + (ite conf-gmp.1 2 0) + (ite menhirSdk.9 1 0) + (ite ocamlbuild.7 1 0) + (ite dune-private-libs.9 9 0) + (ite menhir.49 7 0) + (ite camlp4.8 24 0) + (ite camlp4.31 2 0) + (ite jbuilder.15 10 0) + (ite psmt2-frontend.2 2 0) + (ite stdio.7 3 0) + (ite ocplib-endian.2 6 0) + (ite sexplib0.4 2 0) + (ite jbuilder.3 22 0) + (ite sqlite3.12 13 0) + (ite stdio.3 5 0) + (ite alt-ergo-lib.1 3 0) + (ite menhir.30 25 0) + (ite why3.17 11 0) + (ite menhirSdk.4 6 0) + (ite ocamlfind.15 8 0) + (ite ppx%5ftools.2 16 0) + (ite dune.12 41 0) + (ite why3.19 9 0) + (ite camlp5.24 7 0) + (ite lwt.36 12 0) + (ite menhirSdk.2 8 0) + (ite ocamlfind.18 6 0) + (ite ppx%5ftools%5fversioned.11 1 0) + (ite menhirLib.9 1 0) + (ite dune-configurator.6 15 0) + (ite sexplib0.6 1 0) + (ite camlp4.15 18 0) + (ite ppx%5foptcomp.12 6 0) + (ite lwt.47 3 0) + (ite lwt.34 14 0) + (ite base.8 12 0) + (ite camlp4.24 9 0) + (ite lwt.19 25 0) + (ite menhir.37 19 0) + (ite lwt.12 31 0) + (ite dune.57 10 0) + (ite stdio.5 4 0) + (ite cppo.14 8 0) + (ite dune.26 31 0) + (ite lwt.25 19 0) + (ite ocamlfind.21 5 0) + (ite camlp4.20 13 0) + (ite jbuilder.19 6 0) + (ite ocamlfind.13 10 0) + (ite camlp5.15 16 0) + (ite camlp4.22 11 0) + (ite alt-ergo.5 7 0) + (ite menhirLib.5 5 0) + (ite ocaml-migrate-parsetree.28 6 0) + (ite ppx%5fdriver.14 8 0) + (ite lwt.9 34 0) + (ite sexplib.57 6 0) + (ite alt-ergo.8 4 0) + (ite menhir.46 10 0) + (ite sqlite3.17 8 0) + (ite camlp4.28 5 0) + (ite ocaml-migrate-parsetree.4 27 0) + (ite ocaml-migrate-parsetree.3 28 0) + (ite camlp5.8 23 0) + (ite ppx%5ftools.9 10 0) + (ite ppx%5ftools.16 3 0) + (ite sqlite3.22 3 0) + (ite lwt.43 7 0) + (ite ppx%5ftools%5fversioned.5 7 0) + (ite configurator.3 2 0) + (ite jbuilder.24 1 0) + (ite why3-base.2 10 0) + (ite ocaml-migrate-parsetree.33 2 0) + (ite zarith.9 3 0) + (ite why3.11 17 0) + (ite ocamlgraph.4 6 0) + (ite topkg.14 2 0) + (ite alt-ergo-lib.3 1 0) + (ite camlp4.27 6 0) + (ite lwt.23 21 0) + (ite ocamlgraph.7 3 0) + (ite dune-configurator.20 3 0) + (ite cppo.11 11 0) + (ite menhir.34 21 0) + (ite stdio.9 2 0) + (ite camlp4.10 22 0) + (ite lablgtk.14 1 0) + (ite camlp4.25 8 0) + (ite menhirSdk.8 2 0) + (ite ppx%5fcore.12 4 0) + (ite cppo.10 12 0) + (ite why3-base.4 8 0) + (ite base.14 8 0) + (ite why3.25 3 0) + (ite ppx%5ftools.4 14 0) + (ite dune-configurator.10 11 0) + (ite menhir.12 43 0) + (ite camlp5.6 25 0) + (ite lwt.24 20 0) + (ite camlp4.30 3 0) + (ite ocamlgraph.9 1 0) + (ite why3.7 20 0) + (ite camlp5.4 27 0) + (ite menhir.3 48 0) + (ite num.1 5 0) + (ite dune.51 14 0) + (ite ocamlfind.24 2 0))) + ) + +(assert (>= 100000000000000 (+ (ite camlp4.21 1 0) + (ite conf-emacs.1 0 1) + (ite conf-sqlite3.1 1 0) + (ite camlp4.19 1 0) + (ite camlp4.11 1 0) + (ite camlp4.33 1 0) + (ite camlp4.29 1 0) + (ite camlp4.23 1 0) + (ite conf-ncurses.1 1 0) + (ite camlp4.17 1 0) + (ite camlp4.3 1 0) + (ite camlp4.31 1 0) + (ite camlp4.15 1 0) + (ite camlp4.27 1 0) + (ite camlp4.25 1 0))) + ) + +(assert (>= 100000000000000 (+ (ite jbuilder.17 1 0) + (ite num.2 1 0) + (ite jbuilder.14 1 0) + (ite alt-ergo.9 1 0) + (ite ppx%5ftools%5fversioned.10 1 0) + (ite lwt.14 1 0) + (ite camlp5.13 1 0) + (ite num.3 1 0) + (ite lwt.49 1 0) + (ite dune.9 1 0) + (ite sexplib.56 1 0) + (ite menhir.40 1 0) + (ite cppo.7 1 0) + (ite camlp5.19 1 0) + (ite menhir.55 1 0) + (ite camlp4.21 1 0) + (ite lwt.44 1 0) + (ite ppx%5ftools.18 1 0) + (ite result.4 1 0) + (ite lwt.45 1 0) + (ite cppo.15 1 0) + (ite dune-private-libs.13 1 0) + (ite jbuilder.7 1 0) + (ite lwt.40 1 0) + (ite ocaml-migrate-parsetree.26 1 0) + (ite lablgtk.10 1 0) + (ite why3.20 1 0) + (ite dune.69 0 1) + (ite ocamlbuild.8 0 1) + (ite result.6 0 1) + (ite seq.1 1 0) + (ite coq.1 1 0) + (ite lwt.29 1 0) + (ite ocplib-endian.8 1 0) + (ite sexplib.55 1 0) + (ite menhir.38 1 0) + (ite menhir.15 1 0) + (ite result.1 1 0) + (ite base-metaocaml-ocamlfind.1 1 0) + (ite ocamlgraph.6 1 0) + (ite cppo.21 1 0) + (ite csexp.7 1 0) + (ite dose3.5 0 1) + (ite menhir.47 1 0) + (ite ppx%5fbase.2 1 0) + (ite ocplib-simplex.1 1 0) + (ite topkg.8 1 0) + (ite zarith.8 1 0) + (ite menhir.4 1 0) + (ite zarith.12 1 0) + (ite base-bytes.2 0 1) + (ite sqlite3.21 1 0) + (ite menhir.16 1 0) + (ite dune-private-libs.3 1 0) + (ite camlp4.6 1 0) + (ite menhirSdk.7 1 0) + (ite ppx%5fcompare.11 1 0) + (ite dune.42 1 0) + (ite dune.65 1 0) + (ite dune.71 1 0) + (ite conf-zlib.1 0 1) + (ite dune.31 1 0) + (ite dune-configurator.13 1 0) + (ite ocaml-migrate-parsetree.24 1 0) + (ite menhirSdk.5 1 0) + (ite menhir.14 1 0) + (ite lablgtk.12 1 0) + (ite why3-base.11 1 0) + (ite menhir.24 1 0) + (ite why3.26 1 0) + (ite jbuilder.22 1 0) + (ite lablgtk.15 0 1) + (ite why3.18 1 0) + (ite biniou.9 0 1) + (ite base-unix.1 0 1) + (ite ppx%5fdriver.16 1 0) + (ite menhir.20 1 0) + (ite why3.15 1 0) + (ite ocamlbuild.5 1 0) + (ite ocamlbuild.6 1 0) + (ite ocamlfind.26 0 1) + (ite conf-pkg-config.4 0 1) + (ite ppx%5ftools.8 1 0) + (ite ppx%5fhash.2 1 0) + (ite ppx%5ftools%5fversioned.9 1 0) + (ite zarith.5 1 0) + (ite base.13 1 0) + (ite camlp4.2 1 0) + (ite conf-autoconf.1 0 1) + (ite topkg.15 1 0) + (ite lwt.18 1 0) + (ite menhir.31 1 0) + (ite stdio.2 1 0) + (ite cppo.16 1 0) + (ite camlp5.17 1 0) + (ite conf-emacs.1 0 1) + (ite sqlite3.20 1 0) + (ite camlp4.5 1 0) + (ite camlp5.20 1 0) + (ite conf-pkg-config.1 1 0) + (ite alt-ergo-lib.4 0 1) + (ite configurator.7 1 0) + (ite dune.43 1 0) + (ite jbuilder.11 1 0) + (ite seq.3 1 0) + (ite ocamlbuild.1 1 0) + (ite num.5 1 0) + (ite zarith.3 1 0) + (ite dune-private-libs.10 1 0) + (ite ppx%5fjs%5fstyle.2 1 0) + (ite dune.7 1 0) + (ite why3-base.5 1 0) + (ite dune.44 1 0) + (ite ocaml-migrate-parsetree.27 1 0) + (ite sqlite3.25 1 0) + (ite dune-private-libs.11 1 0) + (ite ocaml-migrate-parsetree.10 1 0) + (ite ocplib-endian.7 1 0) + (ite base.24 1 0) + (ite mccs.9 0 1) + (ite ocaml-base-compiler.36 0 1) + (ite lwt.10 1 0) + (ite menhir.43 1 0) + (ite lwt.4 1 0) + (ite ppx%5fsexp%5fconv.14 1 0) + (ite ocplib-simplex.2 0 1) + (ite ocaml-migrate-parsetree.9 1 0) + (ite ocamlbuild.4 1 0) + (ite jbuilder.8 1 0) + (ite dune-configurator.8 1 0) + (ite base-bytes.1 1 0) + (ite zarith.6 1 0) + (ite camlzip.7 0 1) + (ite stdio.13 1 0) + (ite menhir.39 1 0) + (ite jbuilder.10 1 0) + (ite ppx%5ftools.19 1 0) + (ite base.6 1 0) + (ite menhir.21 1 0) + (ite alt-ergo-parsers.4 0 1) + (ite topkg.5 1 0) + (ite ocplib-endian.4 1 0) + (ite why3.12 1 0) + (ite ocaml-migrate-parsetree.21 1 0) + (ite octavius.2 1 0) + (ite alt-ergo.11 1 0) + (ite octavius.6 1 0) + (ite seq.4 1 0) + (ite dune.59 1 0) + (ite ppx%5fmetaquot.2 1 0) + (ite ppx%5ftools.13 1 0) + (ite ppx%5ftype%5fconv.14 1 0) + (ite lablgtk.11 1 0) + (ite menhir.33 1 0) + (ite num.4 1 0) + (ite dune.50 1 0) + (ite why3.1 1 0) + (ite jbuilder.23 1 0) + (ite mmap.1 1 0) + (ite ppx%5ftools.10 1 0) + (ite lwt.32 1 0) + (ite dot-merlin-reader.3 0 1) + (ite ocaml-migrate-parsetree.22 1 0) + (ite topkg.13 1 0) + (ite menhirLib.7 1 0) + (ite menhir.2 1 0) + (ite dune-private-libs.2 1 0) + (ite result.3 1 0) + (ite %3dopam-invariant.1 0 1) + (ite base-no-ppx.1 1 0) + (ite camlp5.3 1 0) + (ite ocaml-migrate-parsetree.11 1 0) + (ite octavius.5 1 0) + (ite alt-ergo.4 1 0) + (ite base.21 1 0) + (ite ocaml-migrate-parsetree.31 1 0) + (ite alt-ergo.3 1 0) + (ite dune.72 1 0) + (ite topkg.6 1 0) + (ite dune.62 1 0) + (ite base-implicits.1 1 0) + (ite conf-findutils.1 1 0) + (ite dune-configurator.2 1 0) + (ite menhirSdk.6 1 0) + (ite ppx%5ftools.11 1 0) + (ite camlp5.18 1 0) + (ite menhir.52 1 0) + (ite lablgtk.8 1 0) + (ite lwt.39 1 0) + (ite menhir.27 1 0) + (ite ppx%5fast.4 1 0) + (ite ppx%5ftools.17 1 0) + (ite dune.19 1 0) + (ite menhir.13 1 0) + (ite dune.16 1 0) + (ite ppx%5ftype%5fconv.13 1 0) + (ite camlp4.9 1 0) + (ite menhirLib.8 1 0) + (ite dune.64 1 0) + (ite dune-configurator.5 1 0) + (ite camlzip.5 1 0) + (ite dune.61 1 0) + (ite dune.3 1 0) + (ite base-num.1 1 0) + (ite octavius.1 1 0) + (ite conf-gmp.3 0 1) + (ite ppx%5ftools.14 1 0) + (ite camlp4.18 1 0) + (ite dune-configurator.14 1 0) + (ite ocaml-migrate-parsetree.20 1 0) + (ite sqlite3.15 1 0) + (ite result.5 1 0) + (ite ocplib-endian.6 1 0) + (ite num.6 0 1) + (ite base.22 1 0) + (ite jbuilder.4 1 0) + (ite ppx%5fdriver.15 1 0) + (ite dune.40 1 0) + (ite ocaml-migrate-parsetree.23 1 0) + (ite base.20 1 0) + (ite dune.17 1 0) + (ite dune-private-libs.5 1 0) + (ite why3-base.3 1 0) + (ite cppo.22 0 1) + (ite dune-configurator.23 1 0) + (ite alt-ergo.2 1 0) + (ite camlp4.14 1 0) + (ite conf-sqlite3.1 1 0) + (ite dune.33 1 0) + (ite camlp5.16 1 0) + (ite menhir.50 1 0) + (ite base.16 1 0) + (ite jbuilder.13 1 0) + (ite topkg.4 1 0) + (ite ppx%5ftools.5 1 0) + (ite sqlite3.13 1 0) + (ite why3.8 1 0) + (ite jbuilder.2 1 0) + (ite sexplib.58 1 0) + (ite camlp4.19 1 0) + (ite dune.4 1 0) + (ite ocamlgraph.12 0 1) + (ite why3.4 1 0) + (ite dune-configurator.17 1 0) + (ite jbuilder.6 1 0) + (ite cppo%5focamlbuild.3 1 0) + (ite menhir.18 1 0) + (ite cppo.4 1 0) + (ite lwt.22 1 0) + (ite alt-ergo.10 1 0) + (ite user-setup.7 0 1) + (ite base.5 1 0) + (ite camlzip.2 1 0) + (ite yojson.18 0 1) + (ite dune.6 1 0) + (ite menhir.22 1 0) + (ite lablgtk.9 1 0) + (ite cppo.8 1 0) + (ite ocamlfind.11 1 0) + (ite dune-configurator.22 1 0) + (ite zarith.14 0 1) + (ite ocaml-config.1 0 1) + (ite dune.54 1 0) + (ite ocaml-secondary-compiler.2 0 1) + (ite alt-ergo-parsers.2 1 0) + (ite lwt.20 1 0) + (ite ppx%5ftraverse%5fbuiltins.2 1 0) + (ite dune-private-libs.12 1 0) + (ite lwt.30 1 0) + (ite ppx%5fcore.13 1 0) + (ite dune.66 1 0) + (ite menhir.48 1 0) + (ite dune.36 1 0) + (ite lwt.41 1 0) + (ite dune-configurator.9 1 0) + (ite why3.14 1 0) + (ite lwt.21 1 0) + (ite dune.25 1 0) + (ite lwt.50 1 0) + (ite sqlite3.9 1 0) + (ite ocaml-migrate-parsetree.18 1 0) + (ite ocamlfind.6 1 0) + (ite camlp4.11 1 0) + (ite menhir.29 1 0) + (ite ppx%5fcore.14 1 0) + (ite ppx%5ftools.15 1 0) + (ite conf-which.1 0 1) + (ite jbuilder.18 1 0) + (ite camlp4.13 1 0) + (ite lwt.17 1 0) + (ite ppx%5ftools%5fversioned.8 1 0) + (ite why3-base.10 1 0) + (ite menhir.19 1 0) + (ite lwt.46 1 0) + (ite camlp5.23 1 0) + (ite camlp5.22 1 0) + (ite camlp4.26 1 0) + (ite conf-gmp.2 1 0) + (ite ocaml-migrate-parsetree.13 1 0) + (ite menhir.11 1 0) + (ite ocaml-migrate-parsetree.16 1 0) + (ite alt-ergo-parsers.1 1 0) + (ite ppx%5fast.3 1 0) + (ite cppo.19 1 0) + (ite why3.24 1 0) + (ite dune.41 1 0) + (ite sqlite3.14 1 0) + (ite camlp4.33 1 0) + (ite topkg.3 1 0) + (ite lablgtk.13 1 0) + (ite base-bigarray.1 0 1) + (ite dune.21 1 0) + (ite dune.48 1 0) + (ite ocaml-secondary-compiler.1 1 0) + (ite ppx%5fenumerate.10 1 0) + (ite ocplib-endian.9 1 0) + (ite dune-configurator.16 1 0) + (ite dune.29 1 0) + (ite menhir.45 1 0) + (ite dune.22 1 0) + (ite ocaml-migrate-parsetree.8 1 0) + (ite zarith.13 1 0) + (ite cppo.6 1 0) + (ite menhirLib.3 1 0) + (ite ocaml-compiler-libs.2 1 0) + (ite merlin.46 0 1) + (ite ppx%5fast.2 1 0) + (ite camlp5.12 1 0) + (ite menhir.28 1 0) + (ite camlp4.29 1 0) + (ite ocamlfind.10 1 0) + (ite camlp4.32 1 0) + (ite dune.35 1 0) + (ite alt-ergo-parsers.3 1 0) + (ite menhir.53 1 0) + (ite why3-base.6 1 0) + (ite topkg.7 1 0) + (ite lwt.13 1 0) + (ite lwt.35 1 0) + (ite psmt2-frontend.3 1 0) + (ite ocamlfind.17 1 0) + (ite alt-ergo-lib.2 1 0) + (ite camlp5.21 1 0) + (ite camlzip.4 1 0) + (ite sqlite3.16 1 0) + (ite dune.30 1 0) + (ite optcomp.3 1 0) + (ite jbuilder.12 1 0) + (ite camlp5.14 1 0) + (ite lwt.8 1 0) + (ite easy-format.7 0 1) + (ite why3.6 1 0) + (ite conf-pkg-config.2 1 0) + (ite sqlite3.10 1 0) + (ite base.11 1 0) + (ite menhir.6 1 0) + (ite z3.10 0 1) + (ite conf-pkg-config.3 1 0) + (ite camlp5.2 1 0) + (ite dune-private-libs.6 1 0) + (ite cppo.12 1 0) + (ite cudf.5 0 1) + (ite ppx%5ftools.7 1 0) + (ite camlzip.3 1 0) + (ite ocamlgraph.5 1 0) + (ite ocamlfind.5 1 0) + (ite why3.10 1 0) + (ite menhirLib.2 1 0) + (ite ocamlfind.25 1 0) + (ite camlp5.9 1 0) + (ite menhir.42 1 0) + (ite dune-configurator.7 1 0) + (ite sqlite3.8 1 0) + (ite dune.68 1 0) + (ite menhir.26 1 0) + (ite why3.13 1 0) + (ite dune.24 1 0) + (ite cppo.3 1 0) + (ite ocamlfind.14 1 0) + (ite jbuilder.5 1 0) + (ite stdio.11 1 0) + (ite configurator.5 1 0) + (ite sqlite3.18 1 0) + (ite ocaml-migrate-parsetree.17 1 0) + (ite lablgtk.7 1 0) + (ite ocamlfind.7 1 0) + (ite cppo.2 1 0) + (ite octavius.4 1 0) + (ite dune-configurator.3 1 0) + (ite menhir.8 1 0) + (ite ocaml-migrate-parsetree.6 1 0) + (ite camlp5.7 1 0) + (ite lablgtk.6 1 0) + (ite dune.10 1 0) + (ite base.25 1 0) + (ite menhir.54 1 0) + (ite menhirLib.4 1 0) + (ite dune-private-libs.14 1 0) + (ite menhirLib.1 1 0) + (ite why3.23 1 0) + (ite sqlite3.26 1 0) + (ite dune-private-libs.7 1 0) + (ite menhir.41 1 0) + (ite dune-configurator.12 1 0) + (ite why3-base.7 1 0) + (ite camlzip.1 1 0) + (ite re.23 0 1) + (ite sexplib0.2 1 0) + (ite ocaml-options-vanilla.1 1 0) + (ite opam-file-format.11 0 1) + (ite ppx%5ftools%5fversioned.12 1 0) + (ite menhir.51 1 0) + (ite jbuilder.21 1 0) + (ite menhir.36 1 0) + (ite ppx%5fderivers.1 1 0) + (ite dune-configurator.21 0 1) + (ite dune-configurator.11 1 0) + (ite sexplib.60 1 0) + (ite conf-gtksourceview.1 1 0) + (ite topkg.11 1 0) + (ite camlp4.23 1 0) + (ite base-ocamlbuild.1 1 0) + (ite csexp.8 0 1) + (ite dune-private-libs.8 1 0) + (ite dune.34 1 0) + (ite why3-base.8 1 0) + (ite dune.14 1 0) + (ite why3.16 1 0) + (ite dune-private-libs.4 1 0) + (ite xenbigarray.1 1 0) + (ite ocamlfind.22 1 0) + (ite zarith.1 1 0) + (ite camlp4.7 1 0) + (ite alt-ergo.6 1 0) + (ite dune.56 1 0) + (ite ocamlbuild.3 1 0) + (ite result.2 1 0) + (ite why3.21 1 0) + (ite ocaml-migrate-parsetree.30 1 0) + (ite ocaml-migrate-parsetree.12 1 0) + (ite ocamlfind.12 1 0) + (ite cppo%5focamlbuild.2 1 0) + (ite cppo.17 1 0) + (ite cppo.13 1 0) + (ite camlzip.6 1 0) + (ite octavius.3 1 0) + (ite ocaml.60 0 1) + (ite sqlite3.23 1 0) + (ite menhirLib.6 1 0) + (ite stdlib-shims.2 0 1) + (ite dune.52 1 0) + (ite zarith.7 1 0) + (ite ppx%5ftools%5fversioned.6 1 0) + (ite psmt2-frontend.1 1 0) + (ite configurator.2 1 0) + (ite jbuilder.16 1 0) + (ite base.7 1 0) + (ite ocp-indent.28 0 1) + (ite sqlite3.19 1 0) + (ite ocplib-endian.1 1 0) + (ite ppx%5fderivers.2 1 0) + (ite conf-ncurses.1 1 0) + (ite cmdliner.14 0 1) + (ite menhirSdk.1 1 0) + (ite jbuilder.25 1 0) + (ite base.18 1 0) + (ite menhir.25 1 0) + (ite camlp5.10 1 0) + (ite lwt.7 1 0) + (ite ocaml-migrate-parsetree.19 1 0) + (ite menhir.32 1 0) + (ite psmt2-frontend.4 0 1) + (ite why3.5 1 0) + (ite why3-base.1 1 0) + (ite alt-ergo.7 1 0) + (ite jbuilder.20 1 0) + (ite why3.27 1 0) + (ite ppx%5ftools.3 1 0) + (ite tuareg.6 0 1) + (ite dune.38 1 0) + (ite ppx%5ftools%5fversioned.7 1 0) + (ite lablgtk.3 1 0) + (ite why3.2 1 0) + (ite zarith.2 1 0) + (ite camlp5.11 1 0) + (ite base.9 1 0) + (ite ocamlfind.3 1 0) + (ite camlp5.5 1 0) + (ite zarith.4 1 0) + (ite why3.28 1 0) + (ite cppo.20 1 0) + (ite menhir.23 1 0) + (ite conf-python-2-7.2 0 1) + (ite camlp4.17 1 0) + (ite lwt.26 1 0) + (ite ocamlfind.4 1 0) + (ite seq.2 1 0) + (ite why3-base.13 1 0) + (ite base.17 1 0) + (ite cppo.5 1 0) + (ite ppx%5ftools.1 1 0) + (ite ocaml-syntax-shims.1 1 0) + (ite menhir.17 1 0) + (ite lwt.38 1 0) + (ite why3.3 1 0) + (ite topkg.9 1 0) + (ite topkg.12 1 0) + (ite dune.27 1 0) + (ite extlib.14 0 1) + (ite seq.5 0 1) + (ite dune.20 1 0) + (ite lwt.11 1 0) + (ite menhirLib.10 0 1) + (ite ocamlfind.23 1 0) + (ite ocaml-migrate-parsetree.14 1 0) + (ite ocamlgraph.8 1 0) + (ite lwt.16 1 0) + (ite ocplib-endian.3 1 0) + (ite cppo.1 1 0) + (ite menhirSdk.3 1 0) + (ite why3-base.12 1 0) + (ite cppo.18 1 0) + (ite why3.22 1 0) + (ite ocaml-migrate-parsetree.15 1 0) + (ite jbuilder.9 1 0) + (ite lwt.6 1 0) + (ite cppo%5focamlbuild.1 1 0) + (ite ocamlbuild.2 1 0) + (ite sqlite3.11 1 0) + (ite dune-configurator.18 1 0) + (ite camlp4.16 1 0) + (ite camlp4.3 1 0) + (ite conf-perl.1 0 1) + (ite menhirSdk.10 0 1) + (ite menhir.44 1 0) + (ite ocaml-migrate-parsetree.32 1 0) + (ite ppx%5ftools.12 1 0) + (ite base-threads.1 0 1) + (ite conf-gmp.1 1 0) + (ite menhirSdk.9 1 0) + (ite topkg.16 1 0) + (ite ocamlbuild.7 1 0) + (ite mmap.2 1 0) + (ite dune-private-libs.9 1 0) + (ite menhir.49 1 0) + (ite camlp4.8 1 0) + (ite camlp4.31 1 0) + (ite jbuilder.15 1 0) + (ite psmt2-frontend.2 1 0) + (ite stdio.7 1 0) + (ite ocplib-endian.2 1 0) + (ite sexplib0.4 1 0) + (ite jbuilder.3 1 0) + (ite sqlite3.12 1 0) + (ite stdio.3 1 0) + (ite alt-ergo-lib.1 1 0) + (ite menhir.30 1 0) + (ite why3.17 1 0) + (ite menhirSdk.4 1 0) + (ite sexplib0.8 1 0) + (ite ocamlfind.15 1 0) + (ite ppx%5ftools.2 1 0) + (ite dune.12 1 0) + (ite why3.19 1 0) + (ite camlp5.24 1 0) + (ite alt-ergo.12 0 1) + (ite conf-gtk2.1 0 1) + (ite lwt.36 1 0) + (ite menhirSdk.2 1 0) + (ite ocamlfind.18 1 0) + (ite ppx%5ftools%5fversioned.11 1 0) + (ite menhirLib.9 1 0) + (ite dune-configurator.6 1 0) + (ite sexplib0.6 1 0) + (ite camlp4.15 1 0) + (ite conf-m4.1 0 1) + (ite ppx%5foptcomp.12 1 0) + (ite lwt.47 1 0) + (ite lwt.34 1 0) + (ite base.8 1 0) + (ite camlp4.24 1 0) + (ite ocamlfind-secondary.1 0 1) + (ite lwt.19 1 0) + (ite menhir.37 1 0) + (ite lwt.12 1 0) + (ite dune.57 1 0) + (ite stdio.5 1 0) + (ite cppo.14 1 0) + (ite dune.26 1 0) + (ite lwt.25 1 0) + (ite ocamlfind.21 1 0) + (ite camlp4.20 1 0) + (ite jbuilder.19 1 0) + (ite ocamlfind.13 1 0) + (ite camlp5.15 1 0) + (ite camlp4.22 1 0) + (ite alt-ergo.5 1 0) + (ite menhirLib.5 1 0) + (ite ocaml-migrate-parsetree.28 1 0) + (ite ppx%5fdriver.14 1 0) + (ite lwt.9 1 0) + (ite sexplib.57 1 0) + (ite alt-ergo.8 1 0) + (ite menhir.46 1 0) + (ite sqlite3.17 1 0) + (ite camlp4.28 1 0) + (ite ocaml-migrate-parsetree.4 1 0) + (ite lwt.51 1 0) + (ite ocaml-migrate-parsetree.3 1 0) + (ite camlp5.8 1 0) + (ite ppx%5ftools.9 1 0) + (ite ppx%5ftools.16 1 0) + (ite sqlite3.22 1 0) + (ite lwt.43 1 0) + (ite ppx%5ftools%5fversioned.5 1 0) + (ite configurator.3 1 0) + (ite menhir.56 0 1) + (ite jbuilder.24 1 0) + (ite why3-base.2 1 0) + (ite ocaml-migrate-parsetree.33 1 0) + (ite zarith.9 1 0) + (ite why3.11 1 0) + (ite ocamlgraph.4 1 0) + (ite topkg.14 1 0) + (ite alt-ergo-lib.3 1 0) + (ite camlp4.27 1 0) + (ite lwt.23 1 0) + (ite ocamlgraph.7 1 0) + (ite dune-configurator.20 1 0) + (ite cppo.11 1 0) + (ite menhir.34 1 0) + (ite stdio.9 1 0) + (ite camlp4.10 1 0) + (ite lablgtk.14 1 0) + (ite camlp4.25 1 0) + (ite menhirSdk.8 1 0) + (ite ppx%5fcore.12 1 0) + (ite cppo.10 1 0) + (ite why3-base.4 1 0) + (ite base.14 1 0) + (ite why3.25 1 0) + (ite ppx%5ftools.4 1 0) + (ite dune-configurator.10 1 0) + (ite menhir.12 1 0) + (ite camlp5.6 1 0) + (ite ocaml-config.2 1 0) + (ite lwt.24 1 0) + (ite camlp4.30 1 0) + (ite ocamlgraph.9 1 0) + (ite why3.7 1 0) + (ite camlp5.4 1 0) + (ite menhir.3 1 0) + (ite num.1 1 0) + (ite dune.51 1 0) + (ite ocamlfind.24 1 0))) + ) +(check-sat) diff --git a/examples/optim-examples/opam-optim/original-one-optim-less-asserts.smt2 b/examples/optim-examples/opam-optim/original-one-optim-less-asserts.smt2 new file mode 100644 index 000000000..cad1d6a01 --- /dev/null +++ b/examples/optim-examples/opam-optim/original-one-optim-less-asserts.smt2 @@ -0,0 +1,2026 @@ +(declare-fun %3dopam-invariant.1 () Bool) +(declare-fun ocamlfind.26 () Bool) +(declare-fun ocamlfind.25 () Bool) +(declare-fun ocamlfind.23 () Bool) +(declare-fun ocamlfind.22 () Bool) +(declare-fun ocamlfind.21 () Bool) +(declare-fun ocamlfind.18 () Bool) +(declare-fun ocamlfind.17 () Bool) +(declare-fun ocamlfind.15 () Bool) +(declare-fun ocamlfind.14 () Bool) +(declare-fun ocamlfind.13 () Bool) +(declare-fun ocamlfind.12 () Bool) +(declare-fun ocamlfind.11 () Bool) +(declare-fun ocamlfind.10 () Bool) +(declare-fun ocamlfind.7 () Bool) +(declare-fun ocamlfind.6 () Bool) +(declare-fun ocamlfind.5 () Bool) +(declare-fun ocamlfind.4 () Bool) +(declare-fun ocamlfind.3 () Bool) +(declare-fun ocamlfind.24 () Bool) +(declare-fun conf-m4.1 () Bool) +(declare-fun jbuilder.25 () Bool) +(declare-fun dune.72 () Bool) +(declare-fun dune.71 () Bool) +(declare-fun dune.69 () Bool) +(declare-fun dune.68 () Bool) +(declare-fun dune.66 () Bool) +(declare-fun dune.65 () Bool) +(declare-fun dune.64 () Bool) +(declare-fun dune.62 () Bool) +(declare-fun dune.61 () Bool) +(declare-fun dune.59 () Bool) +(declare-fun dune.57 () Bool) +(declare-fun dune.56 () Bool) +(declare-fun dune.54 () Bool) +(declare-fun dune.52 () Bool) +(declare-fun dune.50 () Bool) +(declare-fun dune.48 () Bool) +(declare-fun dune.44 () Bool) +(declare-fun dune.43 () Bool) +(declare-fun dune.42 () Bool) +(declare-fun dune.41 () Bool) +(declare-fun dune.40 () Bool) +(declare-fun dune.38 () Bool) +(declare-fun dune.36 () Bool) +(declare-fun dune.35 () Bool) +(declare-fun dune.34 () Bool) +(declare-fun dune.33 () Bool) +(declare-fun dune.31 () Bool) +(declare-fun dune.30 () Bool) +(declare-fun dune.29 () Bool) +(declare-fun dune.27 () Bool) +(declare-fun dune.26 () Bool) +(declare-fun dune.25 () Bool) +(declare-fun dune.24 () Bool) +(declare-fun dune.22 () Bool) +(declare-fun dune.21 () Bool) +(declare-fun dune.20 () Bool) +(declare-fun dune.19 () Bool) +(declare-fun dune.17 () Bool) +(declare-fun dune.16 () Bool) +(declare-fun dune.14 () Bool) +(declare-fun dune.12 () Bool) +(declare-fun dune.10 () Bool) +(declare-fun dune.9 () Bool) +(declare-fun dune.7 () Bool) +(declare-fun dune.6 () Bool) +(declare-fun dune.4 () Bool) +(declare-fun dune.3 () Bool) +(declare-fun dune.51 () Bool) +(declare-fun base-threads.1 () Bool) +(declare-fun base-unix.1 () Bool) +(declare-fun ocaml.60 () Bool) +(declare-fun ocamlfind-secondary.1 () Bool) +(declare-fun num.6 () Bool) +(declare-fun num.5 () Bool) +(declare-fun num.4 () Bool) +(declare-fun num.3 () Bool) +(declare-fun num.2 () Bool) +(declare-fun num.1 () Bool) +(declare-fun base-num.1 () Bool) +(declare-fun menhir.56 () Bool) +(declare-fun menhir.55 () Bool) +(declare-fun menhir.54 () Bool) +(declare-fun menhir.53 () Bool) +(declare-fun menhir.52 () Bool) +(declare-fun menhir.51 () Bool) +(declare-fun menhir.50 () Bool) +(declare-fun menhir.49 () Bool) +(declare-fun menhir.48 () Bool) +(declare-fun menhir.47 () Bool) +(declare-fun menhir.46 () Bool) +(declare-fun menhir.45 () Bool) +(declare-fun menhir.44 () Bool) +(declare-fun menhir.43 () Bool) +(declare-fun menhir.42 () Bool) +(declare-fun menhir.41 () Bool) +(declare-fun menhir.40 () Bool) +(declare-fun menhir.39 () Bool) +(declare-fun menhir.38 () Bool) +(declare-fun menhir.37 () Bool) +(declare-fun menhir.36 () Bool) +(declare-fun menhir.34 () Bool) +(declare-fun menhir.33 () Bool) +(declare-fun menhir.32 () Bool) +(declare-fun menhir.31 () Bool) +(declare-fun menhir.30 () Bool) +(declare-fun menhir.29 () Bool) +(declare-fun menhir.28 () Bool) +(declare-fun menhir.27 () Bool) +(declare-fun menhir.26 () Bool) +(declare-fun menhir.25 () Bool) +(declare-fun menhir.24 () Bool) +(declare-fun menhir.23 () Bool) +(declare-fun menhir.22 () Bool) +(declare-fun menhir.21 () Bool) +(declare-fun menhir.20 () Bool) +(declare-fun menhir.19 () Bool) +(declare-fun menhir.18 () Bool) +(declare-fun menhir.17 () Bool) +(declare-fun menhir.16 () Bool) +(declare-fun menhir.15 () Bool) +(declare-fun menhir.14 () Bool) +(declare-fun menhir.13 () Bool) +(declare-fun menhir.12 () Bool) +(declare-fun menhir.11 () Bool) +(declare-fun menhir.8 () Bool) +(declare-fun menhir.6 () Bool) +(declare-fun menhir.4 () Bool) +(declare-fun menhir.2 () Bool) +(declare-fun menhir.3 () Bool) +(declare-fun camlp5.24 () Bool) +(declare-fun camlp5.23 () Bool) +(declare-fun camlp5.22 () Bool) +(declare-fun camlp5.21 () Bool) +(declare-fun camlp5.20 () Bool) +(declare-fun camlp5.19 () Bool) +(declare-fun camlp5.18 () Bool) +(declare-fun camlp5.17 () Bool) +(declare-fun camlp5.16 () Bool) +(declare-fun camlp5.15 () Bool) +(declare-fun camlp5.14 () Bool) +(declare-fun camlp5.13 () Bool) +(declare-fun camlp5.12 () Bool) +(declare-fun camlp5.11 () Bool) +(declare-fun camlp5.10 () Bool) +(declare-fun camlp5.9 () Bool) +(declare-fun camlp5.8 () Bool) +(declare-fun camlp5.7 () Bool) +(declare-fun camlp5.6 () Bool) +(declare-fun camlp5.5 () Bool) +(declare-fun camlp5.3 () Bool) +(declare-fun camlp5.2 () Bool) +(declare-fun camlp5.4 () Bool) +(declare-fun why3.28 () Bool) +(declare-fun why3.27 () Bool) +(declare-fun why3.26 () Bool) +(declare-fun why3.25 () Bool) +(declare-fun why3.24 () Bool) +(declare-fun why3.23 () Bool) +(declare-fun why3.22 () Bool) +(declare-fun why3.21 () Bool) +(declare-fun why3.20 () Bool) +(declare-fun why3.19 () Bool) +(declare-fun why3.18 () Bool) +(declare-fun why3.17 () Bool) +(declare-fun why3.16 () Bool) +(declare-fun why3.15 () Bool) +(declare-fun why3.14 () Bool) +(declare-fun why3.13 () Bool) +(declare-fun why3.12 () Bool) +(declare-fun why3.11 () Bool) +(declare-fun why3.10 () Bool) +(declare-fun why3.8 () Bool) +(declare-fun why3.6 () Bool) +(declare-fun why3.5 () Bool) +(declare-fun why3.4 () Bool) +(declare-fun why3.3 () Bool) +(declare-fun why3.2 () Bool) +(declare-fun why3.1 () Bool) +(declare-fun why3.7 () Bool) +(declare-fun camlzip.7 () Bool) +(declare-fun camlzip.6 () Bool) +(declare-fun camlzip.5 () Bool) +(declare-fun camlzip.4 () Bool) +(declare-fun camlzip.3 () Bool) +(declare-fun camlzip.2 () Bool) +(declare-fun camlzip.1 () Bool) +(declare-fun conf-gtksourceview.1 () Bool) +(declare-fun lablgtk.15 () Bool) +(declare-fun lablgtk.14 () Bool) +(declare-fun lablgtk.13 () Bool) +(declare-fun lablgtk.12 () Bool) +(declare-fun lablgtk.11 () Bool) +(declare-fun lablgtk.10 () Bool) +(declare-fun lablgtk.9 () Bool) +(declare-fun lablgtk.8 () Bool) +(declare-fun lablgtk.7 () Bool) +(declare-fun lablgtk.6 () Bool) +(declare-fun lablgtk.3 () Bool) +(declare-fun ocamlgraph.12 () Bool) +(declare-fun ocamlgraph.9 () Bool) +(declare-fun ocamlgraph.8 () Bool) +(declare-fun ocamlgraph.7 () Bool) +(declare-fun ocamlgraph.6 () Bool) +(declare-fun ocamlgraph.5 () Bool) +(declare-fun ocamlgraph.4 () Bool) +(declare-fun why3-base.1 () Bool) +(declare-fun zarith.14 () Bool) +(declare-fun zarith.13 () Bool) +(declare-fun zarith.12 () Bool) +(declare-fun zarith.9 () Bool) +(declare-fun zarith.8 () Bool) +(declare-fun zarith.7 () Bool) +(declare-fun zarith.6 () Bool) +(declare-fun zarith.5 () Bool) +(declare-fun zarith.4 () Bool) +(declare-fun zarith.3 () Bool) +(declare-fun zarith.2 () Bool) +(declare-fun zarith.1 () Bool) +(declare-fun camlp4.33 () Bool) +(declare-fun camlp4.32 () Bool) +(declare-fun camlp4.31 () Bool) +(declare-fun camlp4.29 () Bool) +(declare-fun camlp4.28 () Bool) +(declare-fun camlp4.27 () Bool) +(declare-fun camlp4.26 () Bool) +(declare-fun camlp4.25 () Bool) +(declare-fun camlp4.24 () Bool) +(declare-fun camlp4.23 () Bool) +(declare-fun camlp4.22 () Bool) +(declare-fun camlp4.21 () Bool) +(declare-fun camlp4.20 () Bool) +(declare-fun camlp4.19 () Bool) +(declare-fun camlp4.18 () Bool) +(declare-fun camlp4.17 () Bool) +(declare-fun camlp4.16 () Bool) +(declare-fun camlp4.15 () Bool) +(declare-fun camlp4.14 () Bool) +(declare-fun camlp4.13 () Bool) +(declare-fun camlp4.11 () Bool) +(declare-fun camlp4.10 () Bool) +(declare-fun camlp4.9 () Bool) +(declare-fun camlp4.8 () Bool) +(declare-fun camlp4.7 () Bool) +(declare-fun camlp4.6 () Bool) +(declare-fun camlp4.5 () Bool) +(declare-fun camlp4.3 () Bool) +(declare-fun camlp4.2 () Bool) +(declare-fun camlp4.30 () Bool) +(declare-fun ocamlbuild.8 () Bool) +(declare-fun ocamlbuild.7 () Bool) +(declare-fun ocamlbuild.6 () Bool) +(declare-fun ocamlbuild.5 () Bool) +(declare-fun ocamlbuild.4 () Bool) +(declare-fun ocamlbuild.3 () Bool) +(declare-fun ocamlbuild.2 () Bool) +(declare-fun ocamlbuild.1 () Bool) +(declare-fun lwt.51 () Bool) +(declare-fun lwt.50 () Bool) +(declare-fun lwt.49 () Bool) +(declare-fun lwt.47 () Bool) +(declare-fun lwt.46 () Bool) +(declare-fun lwt.45 () Bool) +(declare-fun lwt.44 () Bool) +(declare-fun lwt.43 () Bool) +(declare-fun lwt.41 () Bool) +(declare-fun lwt.40 () Bool) +(declare-fun lwt.39 () Bool) +(declare-fun lwt.38 () Bool) +(declare-fun lwt.36 () Bool) +(declare-fun lwt.35 () Bool) +(declare-fun lwt.34 () Bool) +(declare-fun lwt.32 () Bool) +(declare-fun lwt.30 () Bool) +(declare-fun lwt.29 () Bool) +(declare-fun lwt.26 () Bool) +(declare-fun lwt.25 () Bool) +(declare-fun lwt.23 () Bool) +(declare-fun lwt.22 () Bool) +(declare-fun lwt.21 () Bool) +(declare-fun lwt.20 () Bool) +(declare-fun lwt.19 () Bool) +(declare-fun lwt.18 () Bool) +(declare-fun lwt.17 () Bool) +(declare-fun lwt.16 () Bool) +(declare-fun lwt.14 () Bool) +(declare-fun lwt.13 () Bool) +(declare-fun lwt.12 () Bool) +(declare-fun lwt.11 () Bool) +(declare-fun lwt.10 () Bool) +(declare-fun lwt.9 () Bool) +(declare-fun lwt.8 () Bool) +(declare-fun lwt.7 () Bool) +(declare-fun lwt.6 () Bool) +(declare-fun lwt.4 () Bool) +(declare-fun lwt.24 () Bool) +(declare-fun cppo.22 () Bool) +(declare-fun cppo.21 () Bool) +(declare-fun cppo.20 () Bool) +(declare-fun cppo.19 () Bool) +(declare-fun cppo.18 () Bool) +(declare-fun cppo.17 () Bool) +(declare-fun cppo.16 () Bool) +(declare-fun cppo.15 () Bool) +(declare-fun cppo.14 () Bool) +(declare-fun cppo.13 () Bool) +(declare-fun cppo.12 () Bool) +(declare-fun cppo.11 () Bool) +(declare-fun cppo.10 () Bool) +(declare-fun cppo.8 () Bool) +(declare-fun cppo.7 () Bool) +(declare-fun cppo.6 () Bool) +(declare-fun cppo.5 () Bool) +(declare-fun jbuilder.24 () Bool) +(declare-fun jbuilder.23 () Bool) +(declare-fun jbuilder.22 () Bool) +(declare-fun jbuilder.21 () Bool) +(declare-fun jbuilder.20 () Bool) +(declare-fun jbuilder.19 () Bool) +(declare-fun jbuilder.18 () Bool) +(declare-fun jbuilder.17 () Bool) +(declare-fun jbuilder.16 () Bool) +(declare-fun jbuilder.15 () Bool) +(declare-fun jbuilder.14 () Bool) +(declare-fun ocaml-migrate-parsetree.33 () Bool) +(declare-fun ocaml-migrate-parsetree.32 () Bool) +(declare-fun ocaml-migrate-parsetree.31 () Bool) +(declare-fun ocaml-migrate-parsetree.30 () Bool) +(declare-fun ocaml-migrate-parsetree.28 () Bool) +(declare-fun ocaml-migrate-parsetree.27 () Bool) +(declare-fun ocaml-migrate-parsetree.26 () Bool) +(declare-fun ocaml-migrate-parsetree.24 () Bool) +(declare-fun ocaml-migrate-parsetree.23 () Bool) +(declare-fun ocaml-migrate-parsetree.22 () Bool) +(declare-fun ocaml-migrate-parsetree.21 () Bool) +(declare-fun ocaml-migrate-parsetree.20 () Bool) +(declare-fun ocaml-migrate-parsetree.19 () Bool) +(declare-fun ocaml-migrate-parsetree.18 () Bool) +(declare-fun ocaml-migrate-parsetree.17 () Bool) +(declare-fun ocaml-migrate-parsetree.16 () Bool) +(declare-fun ocaml-migrate-parsetree.15 () Bool) +(declare-fun ocaml-migrate-parsetree.14 () Bool) +(declare-fun ocaml-migrate-parsetree.13 () Bool) +(declare-fun ocaml-migrate-parsetree.12 () Bool) +(declare-fun ocaml-migrate-parsetree.11 () Bool) +(declare-fun ocaml-migrate-parsetree.10 () Bool) +(declare-fun ocaml-migrate-parsetree.9 () Bool) +(declare-fun ocaml-migrate-parsetree.8 () Bool) +(declare-fun ocaml-migrate-parsetree.6 () Bool) +(declare-fun ocaml-migrate-parsetree.4 () Bool) +(declare-fun ocaml-migrate-parsetree.3 () Bool) +(declare-fun ppx%5ftools%5fversioned.12 () Bool) +(declare-fun ppx%5ftools%5fversioned.11 () Bool) +(declare-fun ppx%5ftools%5fversioned.10 () Bool) +(declare-fun ppx%5ftools%5fversioned.9 () Bool) +(declare-fun ppx%5ftools%5fversioned.8 () Bool) +(declare-fun ppx%5ftools%5fversioned.7 () Bool) +(declare-fun ppx%5ftools%5fversioned.6 () Bool) +(declare-fun ppx%5ftools%5fversioned.5 () Bool) +(declare-fun result.6 () Bool) +(declare-fun result.5 () Bool) +(declare-fun result.4 () Bool) +(declare-fun result.3 () Bool) +(declare-fun result.2 () Bool) +(declare-fun result.1 () Bool) +(declare-fun ocaml-config.1 () Bool) +(declare-fun ocaml-config.2 () Bool) +(declare-fun dune-configurator.23 () Bool) +(declare-fun dune-configurator.22 () Bool) +(declare-fun dune-configurator.21 () Bool) +(declare-fun dune-configurator.20 () Bool) +(declare-fun dune-configurator.18 () Bool) +(declare-fun dune-configurator.17 () Bool) +(declare-fun dune-configurator.16 () Bool) +(declare-fun dune-configurator.14 () Bool) +(declare-fun dune-configurator.13 () Bool) +(declare-fun dune-configurator.12 () Bool) +(declare-fun dune-configurator.11 () Bool) +(declare-fun dune-configurator.9 () Bool) +(declare-fun dune-configurator.8 () Bool) +(declare-fun dune-configurator.7 () Bool) +(declare-fun dune-configurator.6 () Bool) +(declare-fun dune-configurator.5 () Bool) +(declare-fun dune-configurator.3 () Bool) +(declare-fun dune-configurator.2 () Bool) +(declare-fun dune-configurator.10 () Bool) +(declare-fun dune-private-libs.7 () Bool) +(declare-fun ppx%5ftools.19 () Bool) +(declare-fun ppx%5ftools.18 () Bool) +(declare-fun ppx%5ftools.17 () Bool) +(declare-fun ppx%5ftools.16 () Bool) +(declare-fun ppx%5ftools.15 () Bool) +(declare-fun ppx%5ftools.14 () Bool) +(declare-fun ppx%5ftools.13 () Bool) +(declare-fun ppx%5ftools.12 () Bool) +(declare-fun ppx%5ftools.11 () Bool) +(declare-fun ppx%5ftools.10 () Bool) +(declare-fun ppx%5ftools.9 () Bool) +(declare-fun ppx%5ftools.8 () Bool) +(declare-fun ppx%5ftools.7 () Bool) +(declare-fun ppx%5ftools.5 () Bool) +(declare-fun ppx%5ftools.3 () Bool) +(declare-fun ppx%5ftools.2 () Bool) +(declare-fun ppx%5ftools.1 () Bool) +(declare-fun ppx%5ftools.4 () Bool) +(declare-fun why3-base.13 () Bool) +(declare-fun why3-base.12 () Bool) +(declare-fun why3-base.11 () Bool) +(declare-fun why3-base.10 () Bool) +(declare-fun why3-base.8 () Bool) +(declare-fun why3-base.7 () Bool) +(declare-fun why3-base.6 () Bool) +(declare-fun why3-base.5 () Bool) +(declare-fun why3-base.4 () Bool) +(declare-fun why3-base.3 () Bool) +(declare-fun why3-base.2 () Bool) +(declare-fun base.25 () Bool) +(declare-fun base.24 () Bool) +(declare-fun base.22 () Bool) +(declare-fun base.21 () Bool) +(declare-fun base.20 () Bool) +(declare-fun base.18 () Bool) +(declare-fun base.17 () Bool) +(declare-fun base.16 () Bool) +(declare-fun base.13 () Bool) +(declare-fun base.11 () Bool) +(declare-fun base.9 () Bool) +(declare-fun base.8 () Bool) +(declare-fun base.7 () Bool) +(declare-fun base.6 () Bool) +(declare-fun base.5 () Bool) +(declare-fun base.14 () Bool) +(declare-fun sexplib0.2 () Bool) +(declare-fun coq.1 () Bool) +(declare-fun cppo.4 () Bool) +(declare-fun cppo.3 () Bool) +(declare-fun cppo.2 () Bool) +(declare-fun cppo.1 () Bool) +(declare-fun ppx%5fcore.14 () Bool) +(declare-fun ppx%5fcore.13 () Bool) +(declare-fun ppx%5fcore.12 () Bool) +(declare-fun jbuilder.13 () Bool) +(declare-fun jbuilder.12 () Bool) +(declare-fun jbuilder.11 () Bool) +(declare-fun jbuilder.10 () Bool) +(declare-fun jbuilder.9 () Bool) +(declare-fun jbuilder.8 () Bool) +(declare-fun jbuilder.7 () Bool) +(declare-fun jbuilder.6 () Bool) +(declare-fun jbuilder.5 () Bool) +(declare-fun jbuilder.4 () Bool) +(declare-fun ocaml-compiler-libs.2 () Bool) +(declare-fun ppx%5fast.4 () Bool) +(declare-fun ppx%5fast.3 () Bool) +(declare-fun ppx%5fast.2 () Bool) +(declare-fun ppx%5ftraverse%5fbuiltins.2 () Bool) +(declare-fun stdio.3 () Bool) +(declare-fun stdio.2 () Bool) +(declare-fun menhirSdk.10 () Bool) +(declare-fun menhirSdk.9 () Bool) +(declare-fun menhirSdk.7 () Bool) +(declare-fun menhirSdk.6 () Bool) +(declare-fun menhirSdk.5 () Bool) +(declare-fun menhirSdk.4 () Bool) +(declare-fun menhirSdk.3 () Bool) +(declare-fun menhirSdk.2 () Bool) +(declare-fun menhirSdk.1 () Bool) +(declare-fun menhirSdk.8 () Bool) +(declare-fun conf-gtk2.1 () Bool) +(declare-fun conf-which.1 () Bool) +(declare-fun stdio.13 () Bool) +(declare-fun stdio.11 () Bool) +(declare-fun stdio.7 () Bool) +(declare-fun stdio.5 () Bool) +(declare-fun stdio.9 () Bool) +(declare-fun alt-ergo-lib.4 () Bool) +(declare-fun alt-ergo-lib.2 () Bool) +(declare-fun alt-ergo-lib.1 () Bool) +(declare-fun alt-ergo-lib.3 () Bool) +(declare-fun ocplib-simplex.2 () Bool) +(declare-fun seq.5 () Bool) +(declare-fun seq.4 () Bool) +(declare-fun seq.3 () Bool) +(declare-fun seq.2 () Bool) +(declare-fun seq.1 () Bool) +(declare-fun stdlib-shims.2 () Bool) +(declare-fun topkg.16 () Bool) +(declare-fun topkg.15 () Bool) +(declare-fun topkg.13 () Bool) +(declare-fun topkg.12 () Bool) +(declare-fun topkg.11 () Bool) +(declare-fun topkg.9 () Bool) +(declare-fun topkg.8 () Bool) +(declare-fun topkg.7 () Bool) +(declare-fun topkg.6 () Bool) +(declare-fun topkg.5 () Bool) +(declare-fun topkg.4 () Bool) +(declare-fun topkg.3 () Bool) +(declare-fun topkg.14 () Bool) +(declare-fun conf-gmp.3 () Bool) +(declare-fun conf-gmp.2 () Bool) +(declare-fun conf-gmp.1 () Bool) +(declare-fun conf-perl.1 () Bool) +(declare-fun ppx%5fderivers.2 () Bool) +(declare-fun ppx%5fderivers.1 () Bool) +(declare-fun jbuilder.3 () Bool) +(declare-fun jbuilder.2 () Bool) +(declare-fun menhirLib.10 () Bool) +(declare-fun configurator.7 () Bool) +(declare-fun configurator.5 () Bool) +(declare-fun configurator.2 () Bool) +(declare-fun configurator.3 () Bool) +(declare-fun ppx%5fbase.2 () Bool) +(declare-fun ppx%5fdriver.16 () Bool) +(declare-fun ppx%5fdriver.15 () Bool) +(declare-fun ppx%5fdriver.14 () Bool) +(declare-fun mmap.2 () Bool) +(declare-fun ocplib-endian.9 () Bool) +(declare-fun ocplib-endian.8 () Bool) +(declare-fun ocplib-endian.7 () Bool) +(declare-fun ocplib-endian.6 () Bool) +(declare-fun ocplib-endian.4 () Bool) +(declare-fun ocplib-endian.3 () Bool) +(declare-fun ocplib-endian.2 () Bool) +(declare-fun ocplib-endian.1 () Bool) +(declare-fun sqlite3.26 () Bool) +(declare-fun sqlite3.25 () Bool) +(declare-fun sqlite3.23 () Bool) +(declare-fun sqlite3.21 () Bool) +(declare-fun sqlite3.20 () Bool) +(declare-fun sqlite3.19 () Bool) +(declare-fun sqlite3.18 () Bool) +(declare-fun sqlite3.17 () Bool) +(declare-fun sqlite3.16 () Bool) +(declare-fun sqlite3.15 () Bool) +(declare-fun sqlite3.14 () Bool) +(declare-fun sqlite3.13 () Bool) +(declare-fun sqlite3.12 () Bool) +(declare-fun sqlite3.11 () Bool) +(declare-fun sqlite3.10 () Bool) +(declare-fun sqlite3.9 () Bool) +(declare-fun sqlite3.8 () Bool) +(declare-fun sqlite3.22 () Bool) +(declare-fun conf-sqlite3.1 () Bool) +(declare-fun ocaml-syntax-shims.1 () Bool) +(declare-fun conf-pkg-config.4 () Bool) +(declare-fun conf-pkg-config.3 () Bool) +(declare-fun conf-pkg-config.2 () Bool) +(declare-fun conf-pkg-config.1 () Bool) +(declare-fun alt-ergo.7 () Bool) +(declare-fun alt-ergo.6 () Bool) +(declare-fun alt-ergo.5 () Bool) +(declare-fun alt-ergo.4 () Bool) +(declare-fun alt-ergo.3 () Bool) +(declare-fun alt-ergo.2 () Bool) +(declare-fun alt-ergo.12 () Bool) +(declare-fun alt-ergo.11 () Bool) +(declare-fun alt-ergo.10 () Bool) +(declare-fun alt-ergo.9 () Bool) +(declare-fun alt-ergo.8 () Bool) +(declare-fun conf-autoconf.1 () Bool) +(declare-fun psmt2-frontend.1 () Bool) +(declare-fun sexplib0.8 () Bool) +(declare-fun sexplib0.6 () Bool) +(declare-fun sexplib0.4 () Bool) +(declare-fun sexplib.60 () Bool) +(declare-fun sexplib.58 () Bool) +(declare-fun sexplib.56 () Bool) +(declare-fun sexplib.55 () Bool) +(declare-fun sexplib.57 () Bool) +(declare-fun ppx%5foptcomp.12 () Bool) +(declare-fun menhirLib.9 () Bool) +(declare-fun menhirLib.8 () Bool) +(declare-fun menhirLib.7 () Bool) +(declare-fun menhirLib.6 () Bool) +(declare-fun menhirLib.4 () Bool) +(declare-fun menhirLib.3 () Bool) +(declare-fun menhirLib.2 () Bool) +(declare-fun menhirLib.1 () Bool) +(declare-fun menhirLib.5 () Bool) +(declare-fun ocplib-simplex.1 () Bool) +(declare-fun base-bytes.2 () Bool) +(declare-fun base-bytes.1 () Bool) +(declare-fun conf-ncurses.1 () Bool) +(declare-fun base-no-ppx.1 () Bool) +(declare-fun ocaml-secondary-compiler.2 () Bool) +(declare-fun ocaml-secondary-compiler.1 () Bool) +(declare-fun mmap.1 () Bool) +(declare-fun dune-private-libs.3 () Bool) +(declare-fun alt-ergo-parsers.4 () Bool) +(declare-fun optcomp.3 () Bool) +(declare-fun psmt2-frontend.4 () Bool) +(declare-fun psmt2-frontend.3 () Bool) +(declare-fun psmt2-frontend.2 () Bool) +(declare-fun dune-private-libs.14 () Bool) +(declare-fun dune-private-libs.13 () Bool) +(declare-fun dune-private-libs.12 () Bool) +(declare-fun dune-private-libs.11 () Bool) +(declare-fun dune-private-libs.10 () Bool) +(declare-fun dune-private-libs.8 () Bool) +(declare-fun dune-private-libs.6 () Bool) +(declare-fun dune-private-libs.5 () Bool) +(declare-fun dune-private-libs.4 () Bool) +(declare-fun dune-private-libs.2 () Bool) +(declare-fun dune-private-libs.9 () Bool) +(declare-fun base-ocamlbuild.1 () Bool) +(declare-fun cppo%5focamlbuild.3 () Bool) +(declare-fun cppo%5focamlbuild.2 () Bool) +(declare-fun cppo%5focamlbuild.1 () Bool) +(declare-fun extlib.14 () Bool) +(declare-fun conf-emacs.1 () Bool) +(declare-fun tuareg.6 () Bool) +(declare-fun cmdliner.14 () Bool) +(declare-fun ocp-indent.28 () Bool) +(declare-fun ocaml-base-compiler.36 () Bool) +(declare-fun octavius.6 () Bool) +(declare-fun octavius.5 () Bool) +(declare-fun octavius.4 () Bool) +(declare-fun octavius.2 () Bool) +(declare-fun octavius.1 () Bool) +(declare-fun octavius.3 () Bool) +(declare-fun conf-zlib.1 () Bool) +(declare-fun xenbigarray.1 () Bool) +(declare-fun csexp.7 () Bool) +(declare-fun csexp.8 () Bool) +(declare-fun opam-file-format.11 () Bool) +(declare-fun ocaml-options-vanilla.1 () Bool) +(declare-fun re.23 () Bool) +(declare-fun cudf.5 () Bool) +(declare-fun conf-python-2-7.2 () Bool) +(declare-fun z3.10 () Bool) +(declare-fun easy-format.7 () Bool) +(declare-fun alt-ergo-parsers.2 () Bool) +(declare-fun alt-ergo-parsers.1 () Bool) +(declare-fun alt-ergo-parsers.3 () Bool) +(declare-fun dot-merlin-reader.3 () Bool) +(declare-fun yojson.18 () Bool) +(declare-fun merlin.46 () Bool) +(declare-fun ppx%5fmetaquot.2 () Bool) +(declare-fun ppx%5ftype%5fconv.14 () Bool) +(declare-fun ppx%5ftype%5fconv.13 () Bool) +(declare-fun ppx%5fenumerate.10 () Bool) +(declare-fun biniou.9 () Bool) +(declare-fun user-setup.7 () Bool) +(declare-fun base-implicits.1 () Bool) +(declare-fun ppx%5fsexp%5fconv.14 () Bool) +(declare-fun base-bigarray.1 () Bool) +(declare-fun mccs.9 () Bool) +(declare-fun ppx%5fjs%5fstyle.2 () Bool) +(declare-fun ppx%5fcompare.11 () Bool) +(declare-fun ppx%5fhash.2 () Bool) +(declare-fun dose3.5 () Bool) +(declare-fun base-metaocaml-ocamlfind.1 () Bool) +(declare-fun conf-findutils.1 () Bool) + + + + + + + +(assert (=> lwt.45 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> result.4 (not (or result.1 result.2 result.3 result.5 result.6)))) + +(assert (=> result.4 + (and ocaml.60 + (or jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(assert (=> ppx%5ftools.18 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.19)))) + +(assert (=> ppx%5ftools.18 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> lwt.44 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) + +(assert (=> lwt.44 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> camlp4.21 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) + +(assert (=> camlp4.21 (and false false))) + +(assert (=> menhir.55 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) + +(assert (=> menhir.55 + (and ocaml.60 + menhirSdk.9 + menhirLib.9 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> camlp5.19 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) + +(assert (=> camlp5.19 false)) + +(assert (=> cppo.7 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> cppo.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) + +(assert (=> menhir.40 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) + +(assert (=> menhir.40 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) + +(assert (=> sexplib.56 + (not (or sexplib.55 + sexplib.57 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) + +(assert (=> sexplib.56 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11)))) + +(assert (=> dune.9 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) + +(assert (=> dune.9 ocaml.60)) + +(assert (=> lwt.49 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.50 + lwt.51)))) + +(assert (=> lwt.49 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> num.3 (not (or num.1 num.2 num.4 num.5 num.6 base-num.1)))) + +(assert (=> num.3 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) + +(assert (=> camlp5.13 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) + +(assert (=> camlp5.13 false)) + +(assert (=> lwt.14 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) + +(assert (=> lwt.14 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) + +(assert (=> ppx%5ftools%5fversioned.10 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) + +(assert (=> ppx%5ftools%5fversioned.10 + (and (or ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> alt-ergo.9 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) + +(assert (=> alt-ergo.9 (and ocaml.60 alt-ergo-parsers.1 alt-ergo-lib.1))) + +(assert (=> jbuilder.14 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(assert (=> jbuilder.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) + +(assert (=> num.2 (not (or num.1 num.3 num.4 num.5 num.6 base-num.1)))) + +(assert (=> num.2 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) + +(assert (=> jbuilder.17 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(minimize (+ (ite (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + 0 + 1) + (ite (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + 0 + 1) + (ite (or result.1 result.2 result.3 result.4 result.5 result.6) 0 1) + (ite dose3.5 0 1) + (ite (or base-bytes.1 base-bytes.2) 0 1) + (ite conf-zlib.1 0 1) + (ite (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + 0 + 1) + (ite biniou.9 0 1) + (ite base-unix.1 0 1) + (ite (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + 0 + 1) + (ite (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + 0 + 1) + (ite conf-autoconf.1 0 1) + (ite conf-emacs.1 0 1) + (ite (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.3 alt-ergo-lib.4) 0 1) + (ite mccs.9 0 1) + (ite ocaml-base-compiler.36 0 1) + (ite (or ocplib-simplex.1 ocplib-simplex.2) 0 1) + (ite (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + 0 + 1) + (ite (or alt-ergo-parsers.1 + alt-ergo-parsers.2 + alt-ergo-parsers.3 + alt-ergo-parsers.4) + 0 + 1) + (ite dot-merlin-reader.3 0 1) + (ite %3dopam-invariant.1 0 1) + (ite (or conf-gmp.1 conf-gmp.2 conf-gmp.3) 0 1) + (ite (or num.1 num.2 num.3 num.4 num.5 num.6) 0 1) + (ite (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + 0 + 1) + (ite (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + 0 + 1) + (ite user-setup.7 0 1) + (ite yojson.18 0 1) + (ite (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + 0 + 1) + (ite (or ocaml-config.1 ocaml-config.2) 0 1) + (ite (or ocaml-secondary-compiler.1 ocaml-secondary-compiler.2) 0 1) + (ite conf-which.1 0 1) + (ite base-bigarray.1 0 1) + (ite merlin.46 0 1) + (ite easy-format.7 0 1) + (ite z3.10 0 1) + (ite cudf.5 0 1) + (ite re.23 0 1) + (ite opam-file-format.11 0 1) + (ite (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + 0 + 1) + (ite (or csexp.7 csexp.8) 0 1) + (ite ocaml.60 0 1) + (ite stdlib-shims.2 0 1) + (ite ocp-indent.28 0 1) + (ite cmdliner.14 0 1) + (ite (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + 0 + 1) + (ite tuareg.6 0 1) + (ite conf-python-2-7.2 0 1) + (ite extlib.14 0 1) + (ite (or seq.1 seq.2 seq.3 seq.4 seq.5) 0 1) + (ite (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10) + 0 + 1) + (ite conf-perl.1 0 1) + (ite (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10) + 0 + 1) + (ite base-threads.1 0 1) + (ite (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12) + 0 + 1) + (ite conf-gtk2.1 0 1) + (ite conf-m4.1 0 1) + (ite ocamlfind-secondary.1 0 1) + (ite (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + 0 + 1))) + +(get-model) +(check-sat) diff --git a/examples/optim-examples/opam-optim/original-one-optim.smt2 b/examples/optim-examples/opam-optim/original-one-optim.smt2 new file mode 100644 index 000000000..f10b68882 --- /dev/null +++ b/examples/optim-examples/opam-optim/original-one-optim.smt2 @@ -0,0 +1,2026 @@ +(declare-fun %3dopam-invariant.1 () Bool) +(declare-fun ocamlfind.26 () Bool) +(declare-fun ocamlfind.25 () Bool) +(declare-fun ocamlfind.23 () Bool) +(declare-fun ocamlfind.22 () Bool) +(declare-fun ocamlfind.21 () Bool) +(declare-fun ocamlfind.18 () Bool) +(declare-fun ocamlfind.17 () Bool) +(declare-fun ocamlfind.15 () Bool) +(declare-fun ocamlfind.14 () Bool) +(declare-fun ocamlfind.13 () Bool) +(declare-fun ocamlfind.12 () Bool) +(declare-fun ocamlfind.11 () Bool) +(declare-fun ocamlfind.10 () Bool) +(declare-fun ocamlfind.7 () Bool) +(declare-fun ocamlfind.6 () Bool) +(declare-fun ocamlfind.5 () Bool) +(declare-fun ocamlfind.4 () Bool) +(declare-fun ocamlfind.3 () Bool) +(declare-fun ocamlfind.24 () Bool) +(declare-fun conf-m4.1 () Bool) +(declare-fun jbuilder.25 () Bool) +(declare-fun dune.72 () Bool) +(declare-fun dune.71 () Bool) +(declare-fun dune.69 () Bool) +(declare-fun dune.68 () Bool) +(declare-fun dune.66 () Bool) +(declare-fun dune.65 () Bool) +(declare-fun dune.64 () Bool) +(declare-fun dune.62 () Bool) +(declare-fun dune.61 () Bool) +(declare-fun dune.59 () Bool) +(declare-fun dune.57 () Bool) +(declare-fun dune.56 () Bool) +(declare-fun dune.54 () Bool) +(declare-fun dune.52 () Bool) +(declare-fun dune.50 () Bool) +(declare-fun dune.48 () Bool) +(declare-fun dune.44 () Bool) +(declare-fun dune.43 () Bool) +(declare-fun dune.42 () Bool) +(declare-fun dune.41 () Bool) +(declare-fun dune.40 () Bool) +(declare-fun dune.38 () Bool) +(declare-fun dune.36 () Bool) +(declare-fun dune.35 () Bool) +(declare-fun dune.34 () Bool) +(declare-fun dune.33 () Bool) +(declare-fun dune.31 () Bool) +(declare-fun dune.30 () Bool) +(declare-fun dune.29 () Bool) +(declare-fun dune.27 () Bool) +(declare-fun dune.26 () Bool) +(declare-fun dune.25 () Bool) +(declare-fun dune.24 () Bool) +(declare-fun dune.22 () Bool) +(declare-fun dune.21 () Bool) +(declare-fun dune.20 () Bool) +(declare-fun dune.19 () Bool) +(declare-fun dune.17 () Bool) +(declare-fun dune.16 () Bool) +(declare-fun dune.14 () Bool) +(declare-fun dune.12 () Bool) +(declare-fun dune.10 () Bool) +(declare-fun dune.9 () Bool) +(declare-fun dune.7 () Bool) +(declare-fun dune.6 () Bool) +(declare-fun dune.4 () Bool) +(declare-fun dune.3 () Bool) +(declare-fun dune.51 () Bool) +(declare-fun base-threads.1 () Bool) +(declare-fun base-unix.1 () Bool) +(declare-fun ocaml.60 () Bool) +(declare-fun ocamlfind-secondary.1 () Bool) +(declare-fun num.6 () Bool) +(declare-fun num.5 () Bool) +(declare-fun num.4 () Bool) +(declare-fun num.3 () Bool) +(declare-fun num.2 () Bool) +(declare-fun num.1 () Bool) +(declare-fun base-num.1 () Bool) +(declare-fun menhir.56 () Bool) +(declare-fun menhir.55 () Bool) +(declare-fun menhir.54 () Bool) +(declare-fun menhir.53 () Bool) +(declare-fun menhir.52 () Bool) +(declare-fun menhir.51 () Bool) +(declare-fun menhir.50 () Bool) +(declare-fun menhir.49 () Bool) +(declare-fun menhir.48 () Bool) +(declare-fun menhir.47 () Bool) +(declare-fun menhir.46 () Bool) +(declare-fun menhir.45 () Bool) +(declare-fun menhir.44 () Bool) +(declare-fun menhir.43 () Bool) +(declare-fun menhir.42 () Bool) +(declare-fun menhir.41 () Bool) +(declare-fun menhir.40 () Bool) +(declare-fun menhir.39 () Bool) +(declare-fun menhir.38 () Bool) +(declare-fun menhir.37 () Bool) +(declare-fun menhir.36 () Bool) +(declare-fun menhir.34 () Bool) +(declare-fun menhir.33 () Bool) +(declare-fun menhir.32 () Bool) +(declare-fun menhir.31 () Bool) +(declare-fun menhir.30 () Bool) +(declare-fun menhir.29 () Bool) +(declare-fun menhir.28 () Bool) +(declare-fun menhir.27 () Bool) +(declare-fun menhir.26 () Bool) +(declare-fun menhir.25 () Bool) +(declare-fun menhir.24 () Bool) +(declare-fun menhir.23 () Bool) +(declare-fun menhir.22 () Bool) +(declare-fun menhir.21 () Bool) +(declare-fun menhir.20 () Bool) +(declare-fun menhir.19 () Bool) +(declare-fun menhir.18 () Bool) +(declare-fun menhir.17 () Bool) +(declare-fun menhir.16 () Bool) +(declare-fun menhir.15 () Bool) +(declare-fun menhir.14 () Bool) +(declare-fun menhir.13 () Bool) +(declare-fun menhir.12 () Bool) +(declare-fun menhir.11 () Bool) +(declare-fun menhir.8 () Bool) +(declare-fun menhir.6 () Bool) +(declare-fun menhir.4 () Bool) +(declare-fun menhir.2 () Bool) +(declare-fun menhir.3 () Bool) +(declare-fun camlp5.24 () Bool) +(declare-fun camlp5.23 () Bool) +(declare-fun camlp5.22 () Bool) +(declare-fun camlp5.21 () Bool) +(declare-fun camlp5.20 () Bool) +(declare-fun camlp5.19 () Bool) +(declare-fun camlp5.18 () Bool) +(declare-fun camlp5.17 () Bool) +(declare-fun camlp5.16 () Bool) +(declare-fun camlp5.15 () Bool) +(declare-fun camlp5.14 () Bool) +(declare-fun camlp5.13 () Bool) +(declare-fun camlp5.12 () Bool) +(declare-fun camlp5.11 () Bool) +(declare-fun camlp5.10 () Bool) +(declare-fun camlp5.9 () Bool) +(declare-fun camlp5.8 () Bool) +(declare-fun camlp5.7 () Bool) +(declare-fun camlp5.6 () Bool) +(declare-fun camlp5.5 () Bool) +(declare-fun camlp5.3 () Bool) +(declare-fun camlp5.2 () Bool) +(declare-fun camlp5.4 () Bool) +(declare-fun why3.28 () Bool) +(declare-fun why3.27 () Bool) +(declare-fun why3.26 () Bool) +(declare-fun why3.25 () Bool) +(declare-fun why3.24 () Bool) +(declare-fun why3.23 () Bool) +(declare-fun why3.22 () Bool) +(declare-fun why3.21 () Bool) +(declare-fun why3.20 () Bool) +(declare-fun why3.19 () Bool) +(declare-fun why3.18 () Bool) +(declare-fun why3.17 () Bool) +(declare-fun why3.16 () Bool) +(declare-fun why3.15 () Bool) +(declare-fun why3.14 () Bool) +(declare-fun why3.13 () Bool) +(declare-fun why3.12 () Bool) +(declare-fun why3.11 () Bool) +(declare-fun why3.10 () Bool) +(declare-fun why3.8 () Bool) +(declare-fun why3.6 () Bool) +(declare-fun why3.5 () Bool) +(declare-fun why3.4 () Bool) +(declare-fun why3.3 () Bool) +(declare-fun why3.2 () Bool) +(declare-fun why3.1 () Bool) +(declare-fun why3.7 () Bool) +(declare-fun camlzip.7 () Bool) +(declare-fun camlzip.6 () Bool) +(declare-fun camlzip.5 () Bool) +(declare-fun camlzip.4 () Bool) +(declare-fun camlzip.3 () Bool) +(declare-fun camlzip.2 () Bool) +(declare-fun camlzip.1 () Bool) +(declare-fun conf-gtksourceview.1 () Bool) +(declare-fun lablgtk.15 () Bool) +(declare-fun lablgtk.14 () Bool) +(declare-fun lablgtk.13 () Bool) +(declare-fun lablgtk.12 () Bool) +(declare-fun lablgtk.11 () Bool) +(declare-fun lablgtk.10 () Bool) +(declare-fun lablgtk.9 () Bool) +(declare-fun lablgtk.8 () Bool) +(declare-fun lablgtk.7 () Bool) +(declare-fun lablgtk.6 () Bool) +(declare-fun lablgtk.3 () Bool) +(declare-fun ocamlgraph.12 () Bool) +(declare-fun ocamlgraph.9 () Bool) +(declare-fun ocamlgraph.8 () Bool) +(declare-fun ocamlgraph.7 () Bool) +(declare-fun ocamlgraph.6 () Bool) +(declare-fun ocamlgraph.5 () Bool) +(declare-fun ocamlgraph.4 () Bool) +(declare-fun why3-base.1 () Bool) +(declare-fun zarith.14 () Bool) +(declare-fun zarith.13 () Bool) +(declare-fun zarith.12 () Bool) +(declare-fun zarith.9 () Bool) +(declare-fun zarith.8 () Bool) +(declare-fun zarith.7 () Bool) +(declare-fun zarith.6 () Bool) +(declare-fun zarith.5 () Bool) +(declare-fun zarith.4 () Bool) +(declare-fun zarith.3 () Bool) +(declare-fun zarith.2 () Bool) +(declare-fun zarith.1 () Bool) +(declare-fun camlp4.33 () Bool) +(declare-fun camlp4.32 () Bool) +(declare-fun camlp4.31 () Bool) +(declare-fun camlp4.29 () Bool) +(declare-fun camlp4.28 () Bool) +(declare-fun camlp4.27 () Bool) +(declare-fun camlp4.26 () Bool) +(declare-fun camlp4.25 () Bool) +(declare-fun camlp4.24 () Bool) +(declare-fun camlp4.23 () Bool) +(declare-fun camlp4.22 () Bool) +(declare-fun camlp4.21 () Bool) +(declare-fun camlp4.20 () Bool) +(declare-fun camlp4.19 () Bool) +(declare-fun camlp4.18 () Bool) +(declare-fun camlp4.17 () Bool) +(declare-fun camlp4.16 () Bool) +(declare-fun camlp4.15 () Bool) +(declare-fun camlp4.14 () Bool) +(declare-fun camlp4.13 () Bool) +(declare-fun camlp4.11 () Bool) +(declare-fun camlp4.10 () Bool) +(declare-fun camlp4.9 () Bool) +(declare-fun camlp4.8 () Bool) +(declare-fun camlp4.7 () Bool) +(declare-fun camlp4.6 () Bool) +(declare-fun camlp4.5 () Bool) +(declare-fun camlp4.3 () Bool) +(declare-fun camlp4.2 () Bool) +(declare-fun camlp4.30 () Bool) +(declare-fun ocamlbuild.8 () Bool) +(declare-fun ocamlbuild.7 () Bool) +(declare-fun ocamlbuild.6 () Bool) +(declare-fun ocamlbuild.5 () Bool) +(declare-fun ocamlbuild.4 () Bool) +(declare-fun ocamlbuild.3 () Bool) +(declare-fun ocamlbuild.2 () Bool) +(declare-fun ocamlbuild.1 () Bool) +(declare-fun lwt.51 () Bool) +(declare-fun lwt.50 () Bool) +(declare-fun lwt.49 () Bool) +(declare-fun lwt.47 () Bool) +(declare-fun lwt.46 () Bool) +(declare-fun lwt.45 () Bool) +(declare-fun lwt.44 () Bool) +(declare-fun lwt.43 () Bool) +(declare-fun lwt.41 () Bool) +(declare-fun lwt.40 () Bool) +(declare-fun lwt.39 () Bool) +(declare-fun lwt.38 () Bool) +(declare-fun lwt.36 () Bool) +(declare-fun lwt.35 () Bool) +(declare-fun lwt.34 () Bool) +(declare-fun lwt.32 () Bool) +(declare-fun lwt.30 () Bool) +(declare-fun lwt.29 () Bool) +(declare-fun lwt.26 () Bool) +(declare-fun lwt.25 () Bool) +(declare-fun lwt.23 () Bool) +(declare-fun lwt.22 () Bool) +(declare-fun lwt.21 () Bool) +(declare-fun lwt.20 () Bool) +(declare-fun lwt.19 () Bool) +(declare-fun lwt.18 () Bool) +(declare-fun lwt.17 () Bool) +(declare-fun lwt.16 () Bool) +(declare-fun lwt.14 () Bool) +(declare-fun lwt.13 () Bool) +(declare-fun lwt.12 () Bool) +(declare-fun lwt.11 () Bool) +(declare-fun lwt.10 () Bool) +(declare-fun lwt.9 () Bool) +(declare-fun lwt.8 () Bool) +(declare-fun lwt.7 () Bool) +(declare-fun lwt.6 () Bool) +(declare-fun lwt.4 () Bool) +(declare-fun lwt.24 () Bool) +(declare-fun cppo.22 () Bool) +(declare-fun cppo.21 () Bool) +(declare-fun cppo.20 () Bool) +(declare-fun cppo.19 () Bool) +(declare-fun cppo.18 () Bool) +(declare-fun cppo.17 () Bool) +(declare-fun cppo.16 () Bool) +(declare-fun cppo.15 () Bool) +(declare-fun cppo.14 () Bool) +(declare-fun cppo.13 () Bool) +(declare-fun cppo.12 () Bool) +(declare-fun cppo.11 () Bool) +(declare-fun cppo.10 () Bool) +(declare-fun cppo.8 () Bool) +(declare-fun cppo.7 () Bool) +(declare-fun cppo.6 () Bool) +(declare-fun cppo.5 () Bool) +(declare-fun jbuilder.24 () Bool) +(declare-fun jbuilder.23 () Bool) +(declare-fun jbuilder.22 () Bool) +(declare-fun jbuilder.21 () Bool) +(declare-fun jbuilder.20 () Bool) +(declare-fun jbuilder.19 () Bool) +(declare-fun jbuilder.18 () Bool) +(declare-fun jbuilder.17 () Bool) +(declare-fun jbuilder.16 () Bool) +(declare-fun jbuilder.15 () Bool) +(declare-fun jbuilder.14 () Bool) +(declare-fun ocaml-migrate-parsetree.33 () Bool) +(declare-fun ocaml-migrate-parsetree.32 () Bool) +(declare-fun ocaml-migrate-parsetree.31 () Bool) +(declare-fun ocaml-migrate-parsetree.30 () Bool) +(declare-fun ocaml-migrate-parsetree.28 () Bool) +(declare-fun ocaml-migrate-parsetree.27 () Bool) +(declare-fun ocaml-migrate-parsetree.26 () Bool) +(declare-fun ocaml-migrate-parsetree.24 () Bool) +(declare-fun ocaml-migrate-parsetree.23 () Bool) +(declare-fun ocaml-migrate-parsetree.22 () Bool) +(declare-fun ocaml-migrate-parsetree.21 () Bool) +(declare-fun ocaml-migrate-parsetree.20 () Bool) +(declare-fun ocaml-migrate-parsetree.19 () Bool) +(declare-fun ocaml-migrate-parsetree.18 () Bool) +(declare-fun ocaml-migrate-parsetree.17 () Bool) +(declare-fun ocaml-migrate-parsetree.16 () Bool) +(declare-fun ocaml-migrate-parsetree.15 () Bool) +(declare-fun ocaml-migrate-parsetree.14 () Bool) +(declare-fun ocaml-migrate-parsetree.13 () Bool) +(declare-fun ocaml-migrate-parsetree.12 () Bool) +(declare-fun ocaml-migrate-parsetree.11 () Bool) +(declare-fun ocaml-migrate-parsetree.10 () Bool) +(declare-fun ocaml-migrate-parsetree.9 () Bool) +(declare-fun ocaml-migrate-parsetree.8 () Bool) +(declare-fun ocaml-migrate-parsetree.6 () Bool) +(declare-fun ocaml-migrate-parsetree.4 () Bool) +(declare-fun ocaml-migrate-parsetree.3 () Bool) +(declare-fun ppx%5ftools%5fversioned.12 () Bool) +(declare-fun ppx%5ftools%5fversioned.11 () Bool) +(declare-fun ppx%5ftools%5fversioned.10 () Bool) +(declare-fun ppx%5ftools%5fversioned.9 () Bool) +(declare-fun ppx%5ftools%5fversioned.8 () Bool) +(declare-fun ppx%5ftools%5fversioned.7 () Bool) +(declare-fun ppx%5ftools%5fversioned.6 () Bool) +(declare-fun ppx%5ftools%5fversioned.5 () Bool) +(declare-fun result.6 () Bool) +(declare-fun result.5 () Bool) +(declare-fun result.4 () Bool) +(declare-fun result.3 () Bool) +(declare-fun result.2 () Bool) +(declare-fun result.1 () Bool) +(declare-fun ocaml-config.1 () Bool) +(declare-fun ocaml-config.2 () Bool) +(declare-fun dune-configurator.23 () Bool) +(declare-fun dune-configurator.22 () Bool) +(declare-fun dune-configurator.21 () Bool) +(declare-fun dune-configurator.20 () Bool) +(declare-fun dune-configurator.18 () Bool) +(declare-fun dune-configurator.17 () Bool) +(declare-fun dune-configurator.16 () Bool) +(declare-fun dune-configurator.14 () Bool) +(declare-fun dune-configurator.13 () Bool) +(declare-fun dune-configurator.12 () Bool) +(declare-fun dune-configurator.11 () Bool) +(declare-fun dune-configurator.9 () Bool) +(declare-fun dune-configurator.8 () Bool) +(declare-fun dune-configurator.7 () Bool) +(declare-fun dune-configurator.6 () Bool) +(declare-fun dune-configurator.5 () Bool) +(declare-fun dune-configurator.3 () Bool) +(declare-fun dune-configurator.2 () Bool) +(declare-fun dune-configurator.10 () Bool) +(declare-fun dune-private-libs.7 () Bool) +(declare-fun ppx%5ftools.19 () Bool) +(declare-fun ppx%5ftools.18 () Bool) +(declare-fun ppx%5ftools.17 () Bool) +(declare-fun ppx%5ftools.16 () Bool) +(declare-fun ppx%5ftools.15 () Bool) +(declare-fun ppx%5ftools.14 () Bool) +(declare-fun ppx%5ftools.13 () Bool) +(declare-fun ppx%5ftools.12 () Bool) +(declare-fun ppx%5ftools.11 () Bool) +(declare-fun ppx%5ftools.10 () Bool) +(declare-fun ppx%5ftools.9 () Bool) +(declare-fun ppx%5ftools.8 () Bool) +(declare-fun ppx%5ftools.7 () Bool) +(declare-fun ppx%5ftools.5 () Bool) +(declare-fun ppx%5ftools.3 () Bool) +(declare-fun ppx%5ftools.2 () Bool) +(declare-fun ppx%5ftools.1 () Bool) +(declare-fun ppx%5ftools.4 () Bool) +(declare-fun why3-base.13 () Bool) +(declare-fun why3-base.12 () Bool) +(declare-fun why3-base.11 () Bool) +(declare-fun why3-base.10 () Bool) +(declare-fun why3-base.8 () Bool) +(declare-fun why3-base.7 () Bool) +(declare-fun why3-base.6 () Bool) +(declare-fun why3-base.5 () Bool) +(declare-fun why3-base.4 () Bool) +(declare-fun why3-base.3 () Bool) +(declare-fun why3-base.2 () Bool) +(declare-fun base.25 () Bool) +(declare-fun base.24 () Bool) +(declare-fun base.22 () Bool) +(declare-fun base.21 () Bool) +(declare-fun base.20 () Bool) +(declare-fun base.18 () Bool) +(declare-fun base.17 () Bool) +(declare-fun base.16 () Bool) +(declare-fun base.13 () Bool) +(declare-fun base.11 () Bool) +(declare-fun base.9 () Bool) +(declare-fun base.8 () Bool) +(declare-fun base.7 () Bool) +(declare-fun base.6 () Bool) +(declare-fun base.5 () Bool) +(declare-fun base.14 () Bool) +(declare-fun sexplib0.2 () Bool) +(declare-fun coq.1 () Bool) +(declare-fun cppo.4 () Bool) +(declare-fun cppo.3 () Bool) +(declare-fun cppo.2 () Bool) +(declare-fun cppo.1 () Bool) +(declare-fun ppx%5fcore.14 () Bool) +(declare-fun ppx%5fcore.13 () Bool) +(declare-fun ppx%5fcore.12 () Bool) +(declare-fun jbuilder.13 () Bool) +(declare-fun jbuilder.12 () Bool) +(declare-fun jbuilder.11 () Bool) +(declare-fun jbuilder.10 () Bool) +(declare-fun jbuilder.9 () Bool) +(declare-fun jbuilder.8 () Bool) +(declare-fun jbuilder.7 () Bool) +(declare-fun jbuilder.6 () Bool) +(declare-fun jbuilder.5 () Bool) +(declare-fun jbuilder.4 () Bool) +(declare-fun ocaml-compiler-libs.2 () Bool) +(declare-fun ppx%5fast.4 () Bool) +(declare-fun ppx%5fast.3 () Bool) +(declare-fun ppx%5fast.2 () Bool) +(declare-fun ppx%5ftraverse%5fbuiltins.2 () Bool) +(declare-fun stdio.3 () Bool) +(declare-fun stdio.2 () Bool) +(declare-fun menhirSdk.10 () Bool) +(declare-fun menhirSdk.9 () Bool) +(declare-fun menhirSdk.7 () Bool) +(declare-fun menhirSdk.6 () Bool) +(declare-fun menhirSdk.5 () Bool) +(declare-fun menhirSdk.4 () Bool) +(declare-fun menhirSdk.3 () Bool) +(declare-fun menhirSdk.2 () Bool) +(declare-fun menhirSdk.1 () Bool) +(declare-fun menhirSdk.8 () Bool) +(declare-fun conf-gtk2.1 () Bool) +(declare-fun conf-which.1 () Bool) +(declare-fun stdio.13 () Bool) +(declare-fun stdio.11 () Bool) +(declare-fun stdio.7 () Bool) +(declare-fun stdio.5 () Bool) +(declare-fun stdio.9 () Bool) +(declare-fun alt-ergo-lib.4 () Bool) +(declare-fun alt-ergo-lib.2 () Bool) +(declare-fun alt-ergo-lib.1 () Bool) +(declare-fun alt-ergo-lib.3 () Bool) +(declare-fun ocplib-simplex.2 () Bool) +(declare-fun seq.5 () Bool) +(declare-fun seq.4 () Bool) +(declare-fun seq.3 () Bool) +(declare-fun seq.2 () Bool) +(declare-fun seq.1 () Bool) +(declare-fun stdlib-shims.2 () Bool) +(declare-fun topkg.16 () Bool) +(declare-fun topkg.15 () Bool) +(declare-fun topkg.13 () Bool) +(declare-fun topkg.12 () Bool) +(declare-fun topkg.11 () Bool) +(declare-fun topkg.9 () Bool) +(declare-fun topkg.8 () Bool) +(declare-fun topkg.7 () Bool) +(declare-fun topkg.6 () Bool) +(declare-fun topkg.5 () Bool) +(declare-fun topkg.4 () Bool) +(declare-fun topkg.3 () Bool) +(declare-fun topkg.14 () Bool) +(declare-fun conf-gmp.3 () Bool) +(declare-fun conf-gmp.2 () Bool) +(declare-fun conf-gmp.1 () Bool) +(declare-fun conf-perl.1 () Bool) +(declare-fun ppx%5fderivers.2 () Bool) +(declare-fun ppx%5fderivers.1 () Bool) +(declare-fun jbuilder.3 () Bool) +(declare-fun jbuilder.2 () Bool) +(declare-fun menhirLib.10 () Bool) +(declare-fun configurator.7 () Bool) +(declare-fun configurator.5 () Bool) +(declare-fun configurator.2 () Bool) +(declare-fun configurator.3 () Bool) +(declare-fun ppx%5fbase.2 () Bool) +(declare-fun ppx%5fdriver.16 () Bool) +(declare-fun ppx%5fdriver.15 () Bool) +(declare-fun ppx%5fdriver.14 () Bool) +(declare-fun mmap.2 () Bool) +(declare-fun ocplib-endian.9 () Bool) +(declare-fun ocplib-endian.8 () Bool) +(declare-fun ocplib-endian.7 () Bool) +(declare-fun ocplib-endian.6 () Bool) +(declare-fun ocplib-endian.4 () Bool) +(declare-fun ocplib-endian.3 () Bool) +(declare-fun ocplib-endian.2 () Bool) +(declare-fun ocplib-endian.1 () Bool) +(declare-fun sqlite3.26 () Bool) +(declare-fun sqlite3.25 () Bool) +(declare-fun sqlite3.23 () Bool) +(declare-fun sqlite3.21 () Bool) +(declare-fun sqlite3.20 () Bool) +(declare-fun sqlite3.19 () Bool) +(declare-fun sqlite3.18 () Bool) +(declare-fun sqlite3.17 () Bool) +(declare-fun sqlite3.16 () Bool) +(declare-fun sqlite3.15 () Bool) +(declare-fun sqlite3.14 () Bool) +(declare-fun sqlite3.13 () Bool) +(declare-fun sqlite3.12 () Bool) +(declare-fun sqlite3.11 () Bool) +(declare-fun sqlite3.10 () Bool) +(declare-fun sqlite3.9 () Bool) +(declare-fun sqlite3.8 () Bool) +(declare-fun sqlite3.22 () Bool) +(declare-fun conf-sqlite3.1 () Bool) +(declare-fun ocaml-syntax-shims.1 () Bool) +(declare-fun conf-pkg-config.4 () Bool) +(declare-fun conf-pkg-config.3 () Bool) +(declare-fun conf-pkg-config.2 () Bool) +(declare-fun conf-pkg-config.1 () Bool) +(declare-fun alt-ergo.7 () Bool) +(declare-fun alt-ergo.6 () Bool) +(declare-fun alt-ergo.5 () Bool) +(declare-fun alt-ergo.4 () Bool) +(declare-fun alt-ergo.3 () Bool) +(declare-fun alt-ergo.2 () Bool) +(declare-fun alt-ergo.12 () Bool) +(declare-fun alt-ergo.11 () Bool) +(declare-fun alt-ergo.10 () Bool) +(declare-fun alt-ergo.9 () Bool) +(declare-fun alt-ergo.8 () Bool) +(declare-fun conf-autoconf.1 () Bool) +(declare-fun psmt2-frontend.1 () Bool) +(declare-fun sexplib0.8 () Bool) +(declare-fun sexplib0.6 () Bool) +(declare-fun sexplib0.4 () Bool) +(declare-fun sexplib.60 () Bool) +(declare-fun sexplib.58 () Bool) +(declare-fun sexplib.56 () Bool) +(declare-fun sexplib.55 () Bool) +(declare-fun sexplib.57 () Bool) +(declare-fun ppx%5foptcomp.12 () Bool) +(declare-fun menhirLib.9 () Bool) +(declare-fun menhirLib.8 () Bool) +(declare-fun menhirLib.7 () Bool) +(declare-fun menhirLib.6 () Bool) +(declare-fun menhirLib.4 () Bool) +(declare-fun menhirLib.3 () Bool) +(declare-fun menhirLib.2 () Bool) +(declare-fun menhirLib.1 () Bool) +(declare-fun menhirLib.5 () Bool) +(declare-fun ocplib-simplex.1 () Bool) +(declare-fun base-bytes.2 () Bool) +(declare-fun base-bytes.1 () Bool) +(declare-fun conf-ncurses.1 () Bool) +(declare-fun base-no-ppx.1 () Bool) +(declare-fun ocaml-secondary-compiler.2 () Bool) +(declare-fun ocaml-secondary-compiler.1 () Bool) +(declare-fun mmap.1 () Bool) +(declare-fun dune-private-libs.3 () Bool) +(declare-fun alt-ergo-parsers.4 () Bool) +(declare-fun optcomp.3 () Bool) +(declare-fun psmt2-frontend.4 () Bool) +(declare-fun psmt2-frontend.3 () Bool) +(declare-fun psmt2-frontend.2 () Bool) +(declare-fun dune-private-libs.14 () Bool) +(declare-fun dune-private-libs.13 () Bool) +(declare-fun dune-private-libs.12 () Bool) +(declare-fun dune-private-libs.11 () Bool) +(declare-fun dune-private-libs.10 () Bool) +(declare-fun dune-private-libs.8 () Bool) +(declare-fun dune-private-libs.6 () Bool) +(declare-fun dune-private-libs.5 () Bool) +(declare-fun dune-private-libs.4 () Bool) +(declare-fun dune-private-libs.2 () Bool) +(declare-fun dune-private-libs.9 () Bool) +(declare-fun base-ocamlbuild.1 () Bool) +(declare-fun cppo%5focamlbuild.3 () Bool) +(declare-fun cppo%5focamlbuild.2 () Bool) +(declare-fun cppo%5focamlbuild.1 () Bool) +(declare-fun extlib.14 () Bool) +(declare-fun conf-emacs.1 () Bool) +(declare-fun tuareg.6 () Bool) +(declare-fun cmdliner.14 () Bool) +(declare-fun ocp-indent.28 () Bool) +(declare-fun ocaml-base-compiler.36 () Bool) +(declare-fun octavius.6 () Bool) +(declare-fun octavius.5 () Bool) +(declare-fun octavius.4 () Bool) +(declare-fun octavius.2 () Bool) +(declare-fun octavius.1 () Bool) +(declare-fun octavius.3 () Bool) +(declare-fun conf-zlib.1 () Bool) +(declare-fun xenbigarray.1 () Bool) +(declare-fun csexp.7 () Bool) +(declare-fun csexp.8 () Bool) +(declare-fun opam-file-format.11 () Bool) +(declare-fun ocaml-options-vanilla.1 () Bool) +(declare-fun re.23 () Bool) +(declare-fun cudf.5 () Bool) +(declare-fun conf-python-2-7.2 () Bool) +(declare-fun z3.10 () Bool) +(declare-fun easy-format.7 () Bool) +(declare-fun alt-ergo-parsers.2 () Bool) +(declare-fun alt-ergo-parsers.1 () Bool) +(declare-fun alt-ergo-parsers.3 () Bool) +(declare-fun dot-merlin-reader.3 () Bool) +(declare-fun yojson.18 () Bool) +(declare-fun merlin.46 () Bool) +(declare-fun ppx%5fmetaquot.2 () Bool) +(declare-fun ppx%5ftype%5fconv.14 () Bool) +(declare-fun ppx%5ftype%5fconv.13 () Bool) +(declare-fun ppx%5fenumerate.10 () Bool) +(declare-fun biniou.9 () Bool) +(declare-fun user-setup.7 () Bool) +(declare-fun base-implicits.1 () Bool) +(declare-fun ppx%5fsexp%5fconv.14 () Bool) +(declare-fun base-bigarray.1 () Bool) +(declare-fun mccs.9 () Bool) +(declare-fun ppx%5fjs%5fstyle.2 () Bool) +(declare-fun ppx%5fcompare.11 () Bool) +(declare-fun ppx%5fhash.2 () Bool) +(declare-fun dose3.5 () Bool) +(declare-fun base-metaocaml-ocamlfind.1 () Bool) +(declare-fun conf-findutils.1 () Bool) + + + + + + + +(assert (=> lwt.45 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> result.4 (not (or result.1 result.2 result.3 result.5 result.6)))) + +(assert (=> result.4 + (and ocaml.60 + (or jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(assert (=> ppx%5ftools.18 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.19)))) + +(assert (=> ppx%5ftools.18 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> lwt.44 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) + +(assert (=> lwt.44 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> camlp4.21 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) + +(assert (=> camlp4.21 (and false false))) + +(assert (=> menhir.55 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) + +(assert (=> menhir.55 + (and ocaml.60 + menhirSdk.9 + menhirLib.9 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> camlp5.19 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) + +(assert (=> camlp5.19 false)) + +(assert (=> cppo.7 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> cppo.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) + +(assert (=> menhir.40 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) + +(assert (=> menhir.40 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) + +(assert (=> sexplib.56 + (not (or sexplib.55 + sexplib.57 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) + +(assert (=> sexplib.56 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11)))) + +(assert (=> dune.9 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) + +(assert (=> dune.9 ocaml.60)) + +(assert (=> lwt.49 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.50 + lwt.51)))) + +(assert (=> lwt.49 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> num.3 (not (or num.1 num.2 num.4 num.5 num.6 base-num.1)))) + +(assert (=> num.3 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) + +(assert (=> camlp5.13 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) + +(assert (=> camlp5.13 false)) + +(assert (=> lwt.14 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) + +(assert (=> lwt.14 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) + +(assert (=> ppx%5ftools%5fversioned.10 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) + +(assert (=> ppx%5ftools%5fversioned.10 + (and (or ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> alt-ergo.9 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) + +(assert (=> alt-ergo.9 (and ocaml.60 alt-ergo-parsers.1 alt-ergo-lib.1))) + +(assert (=> jbuilder.14 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(assert (=> jbuilder.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) + +(assert (=> num.2 (not (or num.1 num.3 num.4 num.5 num.6 base-num.1)))) + +(assert (=> num.2 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) + +(assert (=> jbuilder.17 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(minimize (+ (ite (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + 0 + 1) + (ite (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + 0 + 1) + (ite (or result.1 result.2 result.3 result.4 result.5 result.6) 0 1) + (ite dose3.5 0 1) + (ite (or base-bytes.1 base-bytes.2) 0 1) + (ite conf-zlib.1 0 1) + (ite (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + 0 + 1) + (ite biniou.9 0 1) + (ite base-unix.1 0 1) + (ite (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + 0 + 1) + (ite (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + 0 + 1) + (ite conf-autoconf.1 0 1) + (ite conf-emacs.1 0 1) + (ite (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.3 alt-ergo-lib.4) 0 1) + (ite mccs.9 0 1) + (ite ocaml-base-compiler.36 0 1) + (ite (or ocplib-simplex.1 ocplib-simplex.2) 0 1) + (ite (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + 0 + 1) + (ite (or alt-ergo-parsers.1 + alt-ergo-parsers.2 + alt-ergo-parsers.3 + alt-ergo-parsers.4) + 0 + 1) + (ite dot-merlin-reader.3 0 1) + (ite %3dopam-invariant.1 0 1) + (ite (or conf-gmp.1 conf-gmp.2 conf-gmp.3) 0 1) + (ite (or num.1 num.2 num.3 num.4 num.5 num.6) 0 1) + (ite (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + 0 + 1) + (ite (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + 0 + 1) + (ite user-setup.7 0 1) + (ite yojson.18 0 1) + (ite (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + 0 + 1) + (ite (or ocaml-config.1 ocaml-config.2) 0 1) + (ite (or ocaml-secondary-compiler.1 ocaml-secondary-compiler.2) 0 1) + (ite conf-which.1 0 1) + (ite base-bigarray.1 0 1) + (ite merlin.46 0 1) + (ite easy-format.7 0 1) + (ite z3.10 0 1) + (ite cudf.5 0 1) + (ite re.23 0 1) + (ite opam-file-format.11 0 1) + (ite (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + 0 + 1) + (ite (or csexp.7 csexp.8) 0 1) + (ite ocaml.60 0 1) + (ite stdlib-shims.2 0 1) + (ite ocp-indent.28 0 1) + (ite cmdliner.14 0 1) + (ite (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + 0 + 1) + (ite tuareg.6 0 1) + (ite conf-python-2-7.2 0 1) + (ite extlib.14 0 1) + (ite (or seq.1 seq.2 seq.3 seq.4 seq.5) 0 1) + (ite (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10) + 0 + 1) + (ite conf-perl.1 0 1) + (ite (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10) + 0 + 1) + (ite base-threads.1 0 1) + (ite (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12) + 0 + 1) + (ite conf-gtk2.1 0 1) + (ite conf-m4.1 0 1) + (ite ocamlfind-secondary.1 0 1) + (ite (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + 0 + 1))) + + +(check-sat) diff --git a/examples/optim-examples/opam-optim/original.smt2 b/examples/optim-examples/opam-optim/original.smt2 new file mode 100644 index 000000000..9073421ed --- /dev/null +++ b/examples/optim-examples/opam-optim/original.smt2 @@ -0,0 +1,35271 @@ +(declare-fun %3dopam-invariant.1 () Bool) +(declare-fun ocamlfind.26 () Bool) +(declare-fun ocamlfind.25 () Bool) +(declare-fun ocamlfind.23 () Bool) +(declare-fun ocamlfind.22 () Bool) +(declare-fun ocamlfind.21 () Bool) +(declare-fun ocamlfind.18 () Bool) +(declare-fun ocamlfind.17 () Bool) +(declare-fun ocamlfind.15 () Bool) +(declare-fun ocamlfind.14 () Bool) +(declare-fun ocamlfind.13 () Bool) +(declare-fun ocamlfind.12 () Bool) +(declare-fun ocamlfind.11 () Bool) +(declare-fun ocamlfind.10 () Bool) +(declare-fun ocamlfind.7 () Bool) +(declare-fun ocamlfind.6 () Bool) +(declare-fun ocamlfind.5 () Bool) +(declare-fun ocamlfind.4 () Bool) +(declare-fun ocamlfind.3 () Bool) +(declare-fun ocamlfind.24 () Bool) +(declare-fun conf-m4.1 () Bool) +(declare-fun jbuilder.25 () Bool) +(declare-fun dune.72 () Bool) +(declare-fun dune.71 () Bool) +(declare-fun dune.69 () Bool) +(declare-fun dune.68 () Bool) +(declare-fun dune.66 () Bool) +(declare-fun dune.65 () Bool) +(declare-fun dune.64 () Bool) +(declare-fun dune.62 () Bool) +(declare-fun dune.61 () Bool) +(declare-fun dune.59 () Bool) +(declare-fun dune.57 () Bool) +(declare-fun dune.56 () Bool) +(declare-fun dune.54 () Bool) +(declare-fun dune.52 () Bool) +(declare-fun dune.50 () Bool) +(declare-fun dune.48 () Bool) +(declare-fun dune.44 () Bool) +(declare-fun dune.43 () Bool) +(declare-fun dune.42 () Bool) +(declare-fun dune.41 () Bool) +(declare-fun dune.40 () Bool) +(declare-fun dune.38 () Bool) +(declare-fun dune.36 () Bool) +(declare-fun dune.35 () Bool) +(declare-fun dune.34 () Bool) +(declare-fun dune.33 () Bool) +(declare-fun dune.31 () Bool) +(declare-fun dune.30 () Bool) +(declare-fun dune.29 () Bool) +(declare-fun dune.27 () Bool) +(declare-fun dune.26 () Bool) +(declare-fun dune.25 () Bool) +(declare-fun dune.24 () Bool) +(declare-fun dune.22 () Bool) +(declare-fun dune.21 () Bool) +(declare-fun dune.20 () Bool) +(declare-fun dune.19 () Bool) +(declare-fun dune.17 () Bool) +(declare-fun dune.16 () Bool) +(declare-fun dune.14 () Bool) +(declare-fun dune.12 () Bool) +(declare-fun dune.10 () Bool) +(declare-fun dune.9 () Bool) +(declare-fun dune.7 () Bool) +(declare-fun dune.6 () Bool) +(declare-fun dune.4 () Bool) +(declare-fun dune.3 () Bool) +(declare-fun dune.51 () Bool) +(declare-fun base-threads.1 () Bool) +(declare-fun base-unix.1 () Bool) +(declare-fun ocaml.60 () Bool) +(declare-fun ocamlfind-secondary.1 () Bool) +(declare-fun num.6 () Bool) +(declare-fun num.5 () Bool) +(declare-fun num.4 () Bool) +(declare-fun num.3 () Bool) +(declare-fun num.2 () Bool) +(declare-fun num.1 () Bool) +(declare-fun base-num.1 () Bool) +(declare-fun menhir.56 () Bool) +(declare-fun menhir.55 () Bool) +(declare-fun menhir.54 () Bool) +(declare-fun menhir.53 () Bool) +(declare-fun menhir.52 () Bool) +(declare-fun menhir.51 () Bool) +(declare-fun menhir.50 () Bool) +(declare-fun menhir.49 () Bool) +(declare-fun menhir.48 () Bool) +(declare-fun menhir.47 () Bool) +(declare-fun menhir.46 () Bool) +(declare-fun menhir.45 () Bool) +(declare-fun menhir.44 () Bool) +(declare-fun menhir.43 () Bool) +(declare-fun menhir.42 () Bool) +(declare-fun menhir.41 () Bool) +(declare-fun menhir.40 () Bool) +(declare-fun menhir.39 () Bool) +(declare-fun menhir.38 () Bool) +(declare-fun menhir.37 () Bool) +(declare-fun menhir.36 () Bool) +(declare-fun menhir.34 () Bool) +(declare-fun menhir.33 () Bool) +(declare-fun menhir.32 () Bool) +(declare-fun menhir.31 () Bool) +(declare-fun menhir.30 () Bool) +(declare-fun menhir.29 () Bool) +(declare-fun menhir.28 () Bool) +(declare-fun menhir.27 () Bool) +(declare-fun menhir.26 () Bool) +(declare-fun menhir.25 () Bool) +(declare-fun menhir.24 () Bool) +(declare-fun menhir.23 () Bool) +(declare-fun menhir.22 () Bool) +(declare-fun menhir.21 () Bool) +(declare-fun menhir.20 () Bool) +(declare-fun menhir.19 () Bool) +(declare-fun menhir.18 () Bool) +(declare-fun menhir.17 () Bool) +(declare-fun menhir.16 () Bool) +(declare-fun menhir.15 () Bool) +(declare-fun menhir.14 () Bool) +(declare-fun menhir.13 () Bool) +(declare-fun menhir.12 () Bool) +(declare-fun menhir.11 () Bool) +(declare-fun menhir.8 () Bool) +(declare-fun menhir.6 () Bool) +(declare-fun menhir.4 () Bool) +(declare-fun menhir.2 () Bool) +(declare-fun menhir.3 () Bool) +(declare-fun camlp5.24 () Bool) +(declare-fun camlp5.23 () Bool) +(declare-fun camlp5.22 () Bool) +(declare-fun camlp5.21 () Bool) +(declare-fun camlp5.20 () Bool) +(declare-fun camlp5.19 () Bool) +(declare-fun camlp5.18 () Bool) +(declare-fun camlp5.17 () Bool) +(declare-fun camlp5.16 () Bool) +(declare-fun camlp5.15 () Bool) +(declare-fun camlp5.14 () Bool) +(declare-fun camlp5.13 () Bool) +(declare-fun camlp5.12 () Bool) +(declare-fun camlp5.11 () Bool) +(declare-fun camlp5.10 () Bool) +(declare-fun camlp5.9 () Bool) +(declare-fun camlp5.8 () Bool) +(declare-fun camlp5.7 () Bool) +(declare-fun camlp5.6 () Bool) +(declare-fun camlp5.5 () Bool) +(declare-fun camlp5.3 () Bool) +(declare-fun camlp5.2 () Bool) +(declare-fun camlp5.4 () Bool) +(declare-fun why3.28 () Bool) +(declare-fun why3.27 () Bool) +(declare-fun why3.26 () Bool) +(declare-fun why3.25 () Bool) +(declare-fun why3.24 () Bool) +(declare-fun why3.23 () Bool) +(declare-fun why3.22 () Bool) +(declare-fun why3.21 () Bool) +(declare-fun why3.20 () Bool) +(declare-fun why3.19 () Bool) +(declare-fun why3.18 () Bool) +(declare-fun why3.17 () Bool) +(declare-fun why3.16 () Bool) +(declare-fun why3.15 () Bool) +(declare-fun why3.14 () Bool) +(declare-fun why3.13 () Bool) +(declare-fun why3.12 () Bool) +(declare-fun why3.11 () Bool) +(declare-fun why3.10 () Bool) +(declare-fun why3.8 () Bool) +(declare-fun why3.6 () Bool) +(declare-fun why3.5 () Bool) +(declare-fun why3.4 () Bool) +(declare-fun why3.3 () Bool) +(declare-fun why3.2 () Bool) +(declare-fun why3.1 () Bool) +(declare-fun why3.7 () Bool) +(declare-fun camlzip.7 () Bool) +(declare-fun camlzip.6 () Bool) +(declare-fun camlzip.5 () Bool) +(declare-fun camlzip.4 () Bool) +(declare-fun camlzip.3 () Bool) +(declare-fun camlzip.2 () Bool) +(declare-fun camlzip.1 () Bool) +(declare-fun conf-gtksourceview.1 () Bool) +(declare-fun lablgtk.15 () Bool) +(declare-fun lablgtk.14 () Bool) +(declare-fun lablgtk.13 () Bool) +(declare-fun lablgtk.12 () Bool) +(declare-fun lablgtk.11 () Bool) +(declare-fun lablgtk.10 () Bool) +(declare-fun lablgtk.9 () Bool) +(declare-fun lablgtk.8 () Bool) +(declare-fun lablgtk.7 () Bool) +(declare-fun lablgtk.6 () Bool) +(declare-fun lablgtk.3 () Bool) +(declare-fun ocamlgraph.12 () Bool) +(declare-fun ocamlgraph.9 () Bool) +(declare-fun ocamlgraph.8 () Bool) +(declare-fun ocamlgraph.7 () Bool) +(declare-fun ocamlgraph.6 () Bool) +(declare-fun ocamlgraph.5 () Bool) +(declare-fun ocamlgraph.4 () Bool) +(declare-fun why3-base.1 () Bool) +(declare-fun zarith.14 () Bool) +(declare-fun zarith.13 () Bool) +(declare-fun zarith.12 () Bool) +(declare-fun zarith.9 () Bool) +(declare-fun zarith.8 () Bool) +(declare-fun zarith.7 () Bool) +(declare-fun zarith.6 () Bool) +(declare-fun zarith.5 () Bool) +(declare-fun zarith.4 () Bool) +(declare-fun zarith.3 () Bool) +(declare-fun zarith.2 () Bool) +(declare-fun zarith.1 () Bool) +(declare-fun camlp4.33 () Bool) +(declare-fun camlp4.32 () Bool) +(declare-fun camlp4.31 () Bool) +(declare-fun camlp4.29 () Bool) +(declare-fun camlp4.28 () Bool) +(declare-fun camlp4.27 () Bool) +(declare-fun camlp4.26 () Bool) +(declare-fun camlp4.25 () Bool) +(declare-fun camlp4.24 () Bool) +(declare-fun camlp4.23 () Bool) +(declare-fun camlp4.22 () Bool) +(declare-fun camlp4.21 () Bool) +(declare-fun camlp4.20 () Bool) +(declare-fun camlp4.19 () Bool) +(declare-fun camlp4.18 () Bool) +(declare-fun camlp4.17 () Bool) +(declare-fun camlp4.16 () Bool) +(declare-fun camlp4.15 () Bool) +(declare-fun camlp4.14 () Bool) +(declare-fun camlp4.13 () Bool) +(declare-fun camlp4.11 () Bool) +(declare-fun camlp4.10 () Bool) +(declare-fun camlp4.9 () Bool) +(declare-fun camlp4.8 () Bool) +(declare-fun camlp4.7 () Bool) +(declare-fun camlp4.6 () Bool) +(declare-fun camlp4.5 () Bool) +(declare-fun camlp4.3 () Bool) +(declare-fun camlp4.2 () Bool) +(declare-fun camlp4.30 () Bool) +(declare-fun ocamlbuild.8 () Bool) +(declare-fun ocamlbuild.7 () Bool) +(declare-fun ocamlbuild.6 () Bool) +(declare-fun ocamlbuild.5 () Bool) +(declare-fun ocamlbuild.4 () Bool) +(declare-fun ocamlbuild.3 () Bool) +(declare-fun ocamlbuild.2 () Bool) +(declare-fun ocamlbuild.1 () Bool) +(declare-fun lwt.51 () Bool) +(declare-fun lwt.50 () Bool) +(declare-fun lwt.49 () Bool) +(declare-fun lwt.47 () Bool) +(declare-fun lwt.46 () Bool) +(declare-fun lwt.45 () Bool) +(declare-fun lwt.44 () Bool) +(declare-fun lwt.43 () Bool) +(declare-fun lwt.41 () Bool) +(declare-fun lwt.40 () Bool) +(declare-fun lwt.39 () Bool) +(declare-fun lwt.38 () Bool) +(declare-fun lwt.36 () Bool) +(declare-fun lwt.35 () Bool) +(declare-fun lwt.34 () Bool) +(declare-fun lwt.32 () Bool) +(declare-fun lwt.30 () Bool) +(declare-fun lwt.29 () Bool) +(declare-fun lwt.26 () Bool) +(declare-fun lwt.25 () Bool) +(declare-fun lwt.23 () Bool) +(declare-fun lwt.22 () Bool) +(declare-fun lwt.21 () Bool) +(declare-fun lwt.20 () Bool) +(declare-fun lwt.19 () Bool) +(declare-fun lwt.18 () Bool) +(declare-fun lwt.17 () Bool) +(declare-fun lwt.16 () Bool) +(declare-fun lwt.14 () Bool) +(declare-fun lwt.13 () Bool) +(declare-fun lwt.12 () Bool) +(declare-fun lwt.11 () Bool) +(declare-fun lwt.10 () Bool) +(declare-fun lwt.9 () Bool) +(declare-fun lwt.8 () Bool) +(declare-fun lwt.7 () Bool) +(declare-fun lwt.6 () Bool) +(declare-fun lwt.4 () Bool) +(declare-fun lwt.24 () Bool) +(declare-fun cppo.22 () Bool) +(declare-fun cppo.21 () Bool) +(declare-fun cppo.20 () Bool) +(declare-fun cppo.19 () Bool) +(declare-fun cppo.18 () Bool) +(declare-fun cppo.17 () Bool) +(declare-fun cppo.16 () Bool) +(declare-fun cppo.15 () Bool) +(declare-fun cppo.14 () Bool) +(declare-fun cppo.13 () Bool) +(declare-fun cppo.12 () Bool) +(declare-fun cppo.11 () Bool) +(declare-fun cppo.10 () Bool) +(declare-fun cppo.8 () Bool) +(declare-fun cppo.7 () Bool) +(declare-fun cppo.6 () Bool) +(declare-fun cppo.5 () Bool) +(declare-fun jbuilder.24 () Bool) +(declare-fun jbuilder.23 () Bool) +(declare-fun jbuilder.22 () Bool) +(declare-fun jbuilder.21 () Bool) +(declare-fun jbuilder.20 () Bool) +(declare-fun jbuilder.19 () Bool) +(declare-fun jbuilder.18 () Bool) +(declare-fun jbuilder.17 () Bool) +(declare-fun jbuilder.16 () Bool) +(declare-fun jbuilder.15 () Bool) +(declare-fun jbuilder.14 () Bool) +(declare-fun ocaml-migrate-parsetree.33 () Bool) +(declare-fun ocaml-migrate-parsetree.32 () Bool) +(declare-fun ocaml-migrate-parsetree.31 () Bool) +(declare-fun ocaml-migrate-parsetree.30 () Bool) +(declare-fun ocaml-migrate-parsetree.28 () Bool) +(declare-fun ocaml-migrate-parsetree.27 () Bool) +(declare-fun ocaml-migrate-parsetree.26 () Bool) +(declare-fun ocaml-migrate-parsetree.24 () Bool) +(declare-fun ocaml-migrate-parsetree.23 () Bool) +(declare-fun ocaml-migrate-parsetree.22 () Bool) +(declare-fun ocaml-migrate-parsetree.21 () Bool) +(declare-fun ocaml-migrate-parsetree.20 () Bool) +(declare-fun ocaml-migrate-parsetree.19 () Bool) +(declare-fun ocaml-migrate-parsetree.18 () Bool) +(declare-fun ocaml-migrate-parsetree.17 () Bool) +(declare-fun ocaml-migrate-parsetree.16 () Bool) +(declare-fun ocaml-migrate-parsetree.15 () Bool) +(declare-fun ocaml-migrate-parsetree.14 () Bool) +(declare-fun ocaml-migrate-parsetree.13 () Bool) +(declare-fun ocaml-migrate-parsetree.12 () Bool) +(declare-fun ocaml-migrate-parsetree.11 () Bool) +(declare-fun ocaml-migrate-parsetree.10 () Bool) +(declare-fun ocaml-migrate-parsetree.9 () Bool) +(declare-fun ocaml-migrate-parsetree.8 () Bool) +(declare-fun ocaml-migrate-parsetree.6 () Bool) +(declare-fun ocaml-migrate-parsetree.4 () Bool) +(declare-fun ocaml-migrate-parsetree.3 () Bool) +(declare-fun ppx%5ftools%5fversioned.12 () Bool) +(declare-fun ppx%5ftools%5fversioned.11 () Bool) +(declare-fun ppx%5ftools%5fversioned.10 () Bool) +(declare-fun ppx%5ftools%5fversioned.9 () Bool) +(declare-fun ppx%5ftools%5fversioned.8 () Bool) +(declare-fun ppx%5ftools%5fversioned.7 () Bool) +(declare-fun ppx%5ftools%5fversioned.6 () Bool) +(declare-fun ppx%5ftools%5fversioned.5 () Bool) +(declare-fun result.6 () Bool) +(declare-fun result.5 () Bool) +(declare-fun result.4 () Bool) +(declare-fun result.3 () Bool) +(declare-fun result.2 () Bool) +(declare-fun result.1 () Bool) +(declare-fun ocaml-config.1 () Bool) +(declare-fun ocaml-config.2 () Bool) +(declare-fun dune-configurator.23 () Bool) +(declare-fun dune-configurator.22 () Bool) +(declare-fun dune-configurator.21 () Bool) +(declare-fun dune-configurator.20 () Bool) +(declare-fun dune-configurator.18 () Bool) +(declare-fun dune-configurator.17 () Bool) +(declare-fun dune-configurator.16 () Bool) +(declare-fun dune-configurator.14 () Bool) +(declare-fun dune-configurator.13 () Bool) +(declare-fun dune-configurator.12 () Bool) +(declare-fun dune-configurator.11 () Bool) +(declare-fun dune-configurator.9 () Bool) +(declare-fun dune-configurator.8 () Bool) +(declare-fun dune-configurator.7 () Bool) +(declare-fun dune-configurator.6 () Bool) +(declare-fun dune-configurator.5 () Bool) +(declare-fun dune-configurator.3 () Bool) +(declare-fun dune-configurator.2 () Bool) +(declare-fun dune-configurator.10 () Bool) +(declare-fun dune-private-libs.7 () Bool) +(declare-fun ppx%5ftools.19 () Bool) +(declare-fun ppx%5ftools.18 () Bool) +(declare-fun ppx%5ftools.17 () Bool) +(declare-fun ppx%5ftools.16 () Bool) +(declare-fun ppx%5ftools.15 () Bool) +(declare-fun ppx%5ftools.14 () Bool) +(declare-fun ppx%5ftools.13 () Bool) +(declare-fun ppx%5ftools.12 () Bool) +(declare-fun ppx%5ftools.11 () Bool) +(declare-fun ppx%5ftools.10 () Bool) +(declare-fun ppx%5ftools.9 () Bool) +(declare-fun ppx%5ftools.8 () Bool) +(declare-fun ppx%5ftools.7 () Bool) +(declare-fun ppx%5ftools.5 () Bool) +(declare-fun ppx%5ftools.3 () Bool) +(declare-fun ppx%5ftools.2 () Bool) +(declare-fun ppx%5ftools.1 () Bool) +(declare-fun ppx%5ftools.4 () Bool) +(declare-fun why3-base.13 () Bool) +(declare-fun why3-base.12 () Bool) +(declare-fun why3-base.11 () Bool) +(declare-fun why3-base.10 () Bool) +(declare-fun why3-base.8 () Bool) +(declare-fun why3-base.7 () Bool) +(declare-fun why3-base.6 () Bool) +(declare-fun why3-base.5 () Bool) +(declare-fun why3-base.4 () Bool) +(declare-fun why3-base.3 () Bool) +(declare-fun why3-base.2 () Bool) +(declare-fun base.25 () Bool) +(declare-fun base.24 () Bool) +(declare-fun base.22 () Bool) +(declare-fun base.21 () Bool) +(declare-fun base.20 () Bool) +(declare-fun base.18 () Bool) +(declare-fun base.17 () Bool) +(declare-fun base.16 () Bool) +(declare-fun base.13 () Bool) +(declare-fun base.11 () Bool) +(declare-fun base.9 () Bool) +(declare-fun base.8 () Bool) +(declare-fun base.7 () Bool) +(declare-fun base.6 () Bool) +(declare-fun base.5 () Bool) +(declare-fun base.14 () Bool) +(declare-fun sexplib0.2 () Bool) +(declare-fun coq.1 () Bool) +(declare-fun cppo.4 () Bool) +(declare-fun cppo.3 () Bool) +(declare-fun cppo.2 () Bool) +(declare-fun cppo.1 () Bool) +(declare-fun ppx%5fcore.14 () Bool) +(declare-fun ppx%5fcore.13 () Bool) +(declare-fun ppx%5fcore.12 () Bool) +(declare-fun jbuilder.13 () Bool) +(declare-fun jbuilder.12 () Bool) +(declare-fun jbuilder.11 () Bool) +(declare-fun jbuilder.10 () Bool) +(declare-fun jbuilder.9 () Bool) +(declare-fun jbuilder.8 () Bool) +(declare-fun jbuilder.7 () Bool) +(declare-fun jbuilder.6 () Bool) +(declare-fun jbuilder.5 () Bool) +(declare-fun jbuilder.4 () Bool) +(declare-fun ocaml-compiler-libs.2 () Bool) +(declare-fun ppx%5fast.4 () Bool) +(declare-fun ppx%5fast.3 () Bool) +(declare-fun ppx%5fast.2 () Bool) +(declare-fun ppx%5ftraverse%5fbuiltins.2 () Bool) +(declare-fun stdio.3 () Bool) +(declare-fun stdio.2 () Bool) +(declare-fun menhirSdk.10 () Bool) +(declare-fun menhirSdk.9 () Bool) +(declare-fun menhirSdk.7 () Bool) +(declare-fun menhirSdk.6 () Bool) +(declare-fun menhirSdk.5 () Bool) +(declare-fun menhirSdk.4 () Bool) +(declare-fun menhirSdk.3 () Bool) +(declare-fun menhirSdk.2 () Bool) +(declare-fun menhirSdk.1 () Bool) +(declare-fun menhirSdk.8 () Bool) +(declare-fun conf-gtk2.1 () Bool) +(declare-fun conf-which.1 () Bool) +(declare-fun stdio.13 () Bool) +(declare-fun stdio.11 () Bool) +(declare-fun stdio.7 () Bool) +(declare-fun stdio.5 () Bool) +(declare-fun stdio.9 () Bool) +(declare-fun alt-ergo-lib.4 () Bool) +(declare-fun alt-ergo-lib.2 () Bool) +(declare-fun alt-ergo-lib.1 () Bool) +(declare-fun alt-ergo-lib.3 () Bool) +(declare-fun ocplib-simplex.2 () Bool) +(declare-fun seq.5 () Bool) +(declare-fun seq.4 () Bool) +(declare-fun seq.3 () Bool) +(declare-fun seq.2 () Bool) +(declare-fun seq.1 () Bool) +(declare-fun stdlib-shims.2 () Bool) +(declare-fun topkg.16 () Bool) +(declare-fun topkg.15 () Bool) +(declare-fun topkg.13 () Bool) +(declare-fun topkg.12 () Bool) +(declare-fun topkg.11 () Bool) +(declare-fun topkg.9 () Bool) +(declare-fun topkg.8 () Bool) +(declare-fun topkg.7 () Bool) +(declare-fun topkg.6 () Bool) +(declare-fun topkg.5 () Bool) +(declare-fun topkg.4 () Bool) +(declare-fun topkg.3 () Bool) +(declare-fun topkg.14 () Bool) +(declare-fun conf-gmp.3 () Bool) +(declare-fun conf-gmp.2 () Bool) +(declare-fun conf-gmp.1 () Bool) +(declare-fun conf-perl.1 () Bool) +(declare-fun ppx%5fderivers.2 () Bool) +(declare-fun ppx%5fderivers.1 () Bool) +(declare-fun jbuilder.3 () Bool) +(declare-fun jbuilder.2 () Bool) +(declare-fun menhirLib.10 () Bool) +(declare-fun configurator.7 () Bool) +(declare-fun configurator.5 () Bool) +(declare-fun configurator.2 () Bool) +(declare-fun configurator.3 () Bool) +(declare-fun ppx%5fbase.2 () Bool) +(declare-fun ppx%5fdriver.16 () Bool) +(declare-fun ppx%5fdriver.15 () Bool) +(declare-fun ppx%5fdriver.14 () Bool) +(declare-fun mmap.2 () Bool) +(declare-fun ocplib-endian.9 () Bool) +(declare-fun ocplib-endian.8 () Bool) +(declare-fun ocplib-endian.7 () Bool) +(declare-fun ocplib-endian.6 () Bool) +(declare-fun ocplib-endian.4 () Bool) +(declare-fun ocplib-endian.3 () Bool) +(declare-fun ocplib-endian.2 () Bool) +(declare-fun ocplib-endian.1 () Bool) +(declare-fun sqlite3.26 () Bool) +(declare-fun sqlite3.25 () Bool) +(declare-fun sqlite3.23 () Bool) +(declare-fun sqlite3.21 () Bool) +(declare-fun sqlite3.20 () Bool) +(declare-fun sqlite3.19 () Bool) +(declare-fun sqlite3.18 () Bool) +(declare-fun sqlite3.17 () Bool) +(declare-fun sqlite3.16 () Bool) +(declare-fun sqlite3.15 () Bool) +(declare-fun sqlite3.14 () Bool) +(declare-fun sqlite3.13 () Bool) +(declare-fun sqlite3.12 () Bool) +(declare-fun sqlite3.11 () Bool) +(declare-fun sqlite3.10 () Bool) +(declare-fun sqlite3.9 () Bool) +(declare-fun sqlite3.8 () Bool) +(declare-fun sqlite3.22 () Bool) +(declare-fun conf-sqlite3.1 () Bool) +(declare-fun ocaml-syntax-shims.1 () Bool) +(declare-fun conf-pkg-config.4 () Bool) +(declare-fun conf-pkg-config.3 () Bool) +(declare-fun conf-pkg-config.2 () Bool) +(declare-fun conf-pkg-config.1 () Bool) +(declare-fun alt-ergo.7 () Bool) +(declare-fun alt-ergo.6 () Bool) +(declare-fun alt-ergo.5 () Bool) +(declare-fun alt-ergo.4 () Bool) +(declare-fun alt-ergo.3 () Bool) +(declare-fun alt-ergo.2 () Bool) +(declare-fun alt-ergo.12 () Bool) +(declare-fun alt-ergo.11 () Bool) +(declare-fun alt-ergo.10 () Bool) +(declare-fun alt-ergo.9 () Bool) +(declare-fun alt-ergo.8 () Bool) +(declare-fun conf-autoconf.1 () Bool) +(declare-fun psmt2-frontend.1 () Bool) +(declare-fun sexplib0.8 () Bool) +(declare-fun sexplib0.6 () Bool) +(declare-fun sexplib0.4 () Bool) +(declare-fun sexplib.60 () Bool) +(declare-fun sexplib.58 () Bool) +(declare-fun sexplib.56 () Bool) +(declare-fun sexplib.55 () Bool) +(declare-fun sexplib.57 () Bool) +(declare-fun ppx%5foptcomp.12 () Bool) +(declare-fun menhirLib.9 () Bool) +(declare-fun menhirLib.8 () Bool) +(declare-fun menhirLib.7 () Bool) +(declare-fun menhirLib.6 () Bool) +(declare-fun menhirLib.4 () Bool) +(declare-fun menhirLib.3 () Bool) +(declare-fun menhirLib.2 () Bool) +(declare-fun menhirLib.1 () Bool) +(declare-fun menhirLib.5 () Bool) +(declare-fun ocplib-simplex.1 () Bool) +(declare-fun base-bytes.2 () Bool) +(declare-fun base-bytes.1 () Bool) +(declare-fun conf-ncurses.1 () Bool) +(declare-fun base-no-ppx.1 () Bool) +(declare-fun ocaml-secondary-compiler.2 () Bool) +(declare-fun ocaml-secondary-compiler.1 () Bool) +(declare-fun mmap.1 () Bool) +(declare-fun dune-private-libs.3 () Bool) +(declare-fun alt-ergo-parsers.4 () Bool) +(declare-fun optcomp.3 () Bool) +(declare-fun psmt2-frontend.4 () Bool) +(declare-fun psmt2-frontend.3 () Bool) +(declare-fun psmt2-frontend.2 () Bool) +(declare-fun dune-private-libs.14 () Bool) +(declare-fun dune-private-libs.13 () Bool) +(declare-fun dune-private-libs.12 () Bool) +(declare-fun dune-private-libs.11 () Bool) +(declare-fun dune-private-libs.10 () Bool) +(declare-fun dune-private-libs.8 () Bool) +(declare-fun dune-private-libs.6 () Bool) +(declare-fun dune-private-libs.5 () Bool) +(declare-fun dune-private-libs.4 () Bool) +(declare-fun dune-private-libs.2 () Bool) +(declare-fun dune-private-libs.9 () Bool) +(declare-fun base-ocamlbuild.1 () Bool) +(declare-fun cppo%5focamlbuild.3 () Bool) +(declare-fun cppo%5focamlbuild.2 () Bool) +(declare-fun cppo%5focamlbuild.1 () Bool) +(declare-fun extlib.14 () Bool) +(declare-fun conf-emacs.1 () Bool) +(declare-fun tuareg.6 () Bool) +(declare-fun cmdliner.14 () Bool) +(declare-fun ocp-indent.28 () Bool) +(declare-fun ocaml-base-compiler.36 () Bool) +(declare-fun octavius.6 () Bool) +(declare-fun octavius.5 () Bool) +(declare-fun octavius.4 () Bool) +(declare-fun octavius.2 () Bool) +(declare-fun octavius.1 () Bool) +(declare-fun octavius.3 () Bool) +(declare-fun conf-zlib.1 () Bool) +(declare-fun xenbigarray.1 () Bool) +(declare-fun csexp.7 () Bool) +(declare-fun csexp.8 () Bool) +(declare-fun opam-file-format.11 () Bool) +(declare-fun ocaml-options-vanilla.1 () Bool) +(declare-fun re.23 () Bool) +(declare-fun cudf.5 () Bool) +(declare-fun conf-python-2-7.2 () Bool) +(declare-fun z3.10 () Bool) +(declare-fun easy-format.7 () Bool) +(declare-fun alt-ergo-parsers.2 () Bool) +(declare-fun alt-ergo-parsers.1 () Bool) +(declare-fun alt-ergo-parsers.3 () Bool) +(declare-fun dot-merlin-reader.3 () Bool) +(declare-fun yojson.18 () Bool) +(declare-fun merlin.46 () Bool) +(declare-fun ppx%5fmetaquot.2 () Bool) +(declare-fun ppx%5ftype%5fconv.14 () Bool) +(declare-fun ppx%5ftype%5fconv.13 () Bool) +(declare-fun ppx%5fenumerate.10 () Bool) +(declare-fun biniou.9 () Bool) +(declare-fun user-setup.7 () Bool) +(declare-fun base-implicits.1 () Bool) +(declare-fun ppx%5fsexp%5fconv.14 () Bool) +(declare-fun base-bigarray.1 () Bool) +(declare-fun mccs.9 () Bool) +(declare-fun ppx%5fjs%5fstyle.2 () Bool) +(declare-fun ppx%5fcompare.11 () Bool) +(declare-fun ppx%5fhash.2 () Bool) +(declare-fun dose3.5 () Bool) +(declare-fun base-metaocaml-ocamlfind.1 () Bool) +(declare-fun conf-findutils.1 () Bool) +(assert %3dopam-invariant.1) +(assert (=> ocamlfind.24 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.24 (and false conf-m4.1))) +(assert (=> dune.51 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.51 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> num.1 (not (or num.2 num.3 num.4 num.5 num.6)))) +(assert (=> num.1 (and false base-num.1))) +(assert (=> menhir.3 + (not (or menhir.2 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> camlp5.4 + (not (or camlp5.2 + camlp5.3 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.4 false)) +(assert (=> why3.7 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.7 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.1 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> ocamlgraph.9 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.12)))) +(assert (=> ocamlgraph.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp4.30 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.30 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> lwt.24 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.24 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ocaml-config.2 (not ocaml-config.1))) +(assert (=> camlp5.6 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.6 false)) +(assert (=> menhir.12 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> dune-configurator.10 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.10 + (and dune-private-libs.7 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools.4 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.4 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3.25 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.25 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> base.14 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.14 + (and sexplib0.2 + ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> why3-base.4 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> cppo.10 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ppx%5fcore.12 (not (or ppx%5fcore.13 ppx%5fcore.14)))) +(assert (=> ppx%5fcore.12 + (and (or stdio.2 stdio.3) + ppx%5ftraverse%5fbuiltins.2 + (or ppx%5fast.2 ppx%5fast.3 ppx%5fast.4) + ocaml-compiler-libs.2 + false + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> menhirSdk.8 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.8 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.25 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.25 (and false false))) +(assert (=> lablgtk.14 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.15)))) +(assert (=> lablgtk.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> camlp4.10 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.10 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> stdio.9 (not (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.11 stdio.13)))) +(assert (=> stdio.9 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or base.16 base.17 base.18)))) +(assert (=> menhir.34 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.34 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> cppo.11 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-configurator.20 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.20 (and ocaml.60 (or dune.68 dune.69 dune.71 dune.72)))) +(assert (=> ocamlgraph.7 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> lwt.23 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.23 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> camlp4.27 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.27 (and false false))) +(assert (=> alt-ergo-lib.3 (not (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.4)))) +(assert (=> alt-ergo-lib.3 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + stdlib-shims.2 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> topkg.14 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.15 + topkg.16)))) +(assert (=> topkg.14 + (and (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocamlgraph.4 + (not (or ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3.11 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.11 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.4 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> zarith.9 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ocaml-migrate-parsetree.33 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32)))) +(assert (=> ocaml-migrate-parsetree.33 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3-base.2 + (not (or why3-base.1 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 menhir.3 menhir.4 menhir.6 menhir.8)))) +(assert (=> jbuilder.24 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.25)))) +(assert (=> jbuilder.24 ocaml.60)) +(assert (=> menhir.56 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55)))) +(assert (=> menhir.56 + (and ocaml.60 + menhirSdk.10 + menhirLib.10 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> configurator.3 (not (or configurator.2 configurator.5 configurator.7)))) +(assert (=> configurator.3 + (and (or stdio.2 stdio.3) + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + ppx%5fbase.2 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> ppx%5ftools%5fversioned.5 + (not (or ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.5 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60))) +(assert (=> lwt.43 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.43 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> sqlite3.22 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.22 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> ppx%5ftools.16 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.16 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools.9 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.9 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> camlp5.8 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.8 false)) +(assert (=> ocaml-migrate-parsetree.3 + (not (or ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.3 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.51 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50)))) +(assert (=> lwt.51 + (and ocaml-syntax-shims.1 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ocaml-migrate-parsetree.4 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.4 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp4.28 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.28 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> sqlite3.17 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.17 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> menhir.46 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.46 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> alt-ergo.8 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12 + alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7)))) +(assert (=> alt-ergo.8 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + psmt2-frontend.1 + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1 + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> sexplib.57 + (not (or sexplib.55 + sexplib.56 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.57 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.9 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> ppx%5fdriver.14 (not (or ppx%5fdriver.15 ppx%5fdriver.16)))) +(assert (=> ppx%5fdriver.14 + (and ppx%5foptcomp.12 + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + false + (or jbuilder.4 jbuilder.5 jbuilder.6 jbuilder.7)))) +(assert (=> ocaml-migrate-parsetree.28 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.28 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.5 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.5 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.5 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.5 + (and (or zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocplib-simplex.1 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> camlp4.22 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.22 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp5.15 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.15 false)) +(assert (=> ocamlfind.13 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.13 (and false num.1 conf-m4.1))) +(assert (=> jbuilder.19 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.19 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp4.20 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.20 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ocamlfind.21 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.21 (and false num.1 conf-m4.1))) +(assert (=> lwt.25 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.25 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune.26 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.26 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> cppo.14 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or base-bytes.1 base-bytes.2)))) +(assert (=> stdio.5 (not (or stdio.2 stdio.3 stdio.7 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.5 + (and sexplib.60 + ocaml.60 + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.11))) +(assert (=> dune.57 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.57 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> lwt.12 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.12 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> menhir.37 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.37 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.19 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.19 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or base-bytes.1 base-bytes.2)))) +(assert (=> ocamlfind-secondary.1 + (and ocamlfind.26 + (or ocaml-secondary-compiler.1 ocaml-secondary-compiler.2)))) +(assert (=> camlp4.24 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.24 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> base.8 + (not (or base.5 + base.6 + base.7 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.8 + (and (or sexplib.56 sexplib.57 sexplib.58) + false + (or jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.34 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.34 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or mmap.1 mmap.2) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> lwt.47 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.47 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ppx%5foptcomp.12 + (and (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp4.15 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.15 (and false false))) +(assert (=> sexplib0.6 (not (or sexplib0.2 sexplib0.4 sexplib0.8)))) +(assert (=> sexplib0.6 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.6 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.6 + (and dune-private-libs.3 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.9 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) +(assert (=> menhirLib.9 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools%5fversioned.11 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.11 + (and (or ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlfind.18 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.18 (and false num.1 conf-m4.1))) +(assert (=> menhirSdk.2 + (not (or menhirSdk.1 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.2 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.36 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.36 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or mmap.1 mmap.2) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> conf-gtk2.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> alt-ergo.12 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11)))) +(assert (=> alt-ergo.12 + (and ocaml.60 + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + alt-ergo-parsers.4 + alt-ergo-lib.4))) +(assert (=> camlp5.24 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23)))) +(assert (=> camlp5.24 (and ocaml.60 conf-perl.1))) +(assert (=> why3.19 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.19 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.13 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.3 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> dune.12 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.12 ocaml.60)) +(assert (=> ppx%5ftools.2 + (not (or ppx%5ftools.1 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.2 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ocamlfind.15 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.15 (and false num.1 conf-m4.1))) +(assert (=> sexplib0.8 (not (or sexplib0.2 sexplib0.4 sexplib0.6)))) +(assert (=> sexplib0.8 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirSdk.4 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.4 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.17 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.17 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.11 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> menhir.30 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.30 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> alt-ergo-lib.1 (not (or alt-ergo-lib.2 alt-ergo-lib.3 alt-ergo-lib.4)))) +(assert (=> alt-ergo-lib.1 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> stdio.3 (not (or stdio.2 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.3 + (and ocaml.60 + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.9))) +(assert (=> sqlite3.12 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> jbuilder.3 + (not (or jbuilder.2 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.3 ocaml.60)) +(assert (=> sexplib0.4 (not (or sexplib0.2 sexplib0.6 sexplib0.8)))) +(assert (=> sexplib0.4 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocplib-endian.2 + (not (or ocplib-endian.1 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.2 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> stdio.7 (not (or stdio.2 stdio.3 stdio.5 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.7 + (and ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.13 base.14)))) +(assert (=> psmt2-frontend.2 + (not (or psmt2-frontend.1 psmt2-frontend.3 psmt2-frontend.4)))) +(assert (=> psmt2-frontend.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1))) +(assert (=> jbuilder.15 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp4.31 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.31 (and false false))) +(assert (=> camlp4.8 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> menhir.49 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.49 + (and ocaml.60 + menhirSdk.3 + menhirLib.3 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-private-libs.9 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.9 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> mmap.2 (not mmap.1))) +(assert (=> mmap.2 + (and ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlbuild.7 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.7 ocaml.60)) +(assert (=> topkg.16 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15)))) +(assert (=> topkg.16 + (and (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> menhirSdk.9 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) +(assert (=> menhirSdk.9 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> conf-gmp.1 (not (or conf-gmp.2 conf-gmp.3)))) +(assert (=> ppx%5ftools.12 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.12 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ocaml-migrate-parsetree.32 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.32 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.44 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.44 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> menhirSdk.10 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55)))) +(assert (=> menhirSdk.10 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.3 + (not (or camlp4.2 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.3 (and false false))) +(assert (=> camlp4.16 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.16 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-configurator.18 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.18 + (and dune-private-libs.14 + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> sqlite3.11 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> ocamlbuild.2 + (not (or ocamlbuild.1 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.2 false)) +(assert (=> cppo%5focamlbuild.1 (not (or cppo%5focamlbuild.2 cppo%5focamlbuild.3)))) +(assert (=> cppo%5focamlbuild.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.16 cppo.17 cppo.18 cppo.19 cppo.20 cppo.21 cppo.22)))) +(assert (=> lwt.6 + (not (or lwt.4 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> jbuilder.9 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.15 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.15 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> why3.22 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.22 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> cppo.18 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.18 + (and ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> why3-base.12 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.13 + coq.1)))) +(assert (=> why3-base.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.3 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.3 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.1 + (not (or cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.1 false)) +(assert (=> ocplib-endian.3 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.3 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> lwt.16 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.16 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> ocamlgraph.8 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ocaml-migrate-parsetree.14 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.14 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocamlfind.23 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.23 (and false conf-m4.1))) +(assert (=> menhirLib.10 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55)))) +(assert (=> menhirLib.10 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.11 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> dune.20 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.20 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> seq.5 (not (or seq.1 seq.2 seq.3 seq.4)))) +(assert (=> seq.5 ocaml.60)) +(assert (=> extlib.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> dune.27 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.27 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> topkg.12 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.12 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> topkg.9 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.9 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> why3.3 + (not (or why3.1 + why3.2 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.3 + (and false + lablgtk.3 + conf-gtksourceview.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> lwt.38 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.38 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> menhir.17 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.17 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> ocaml-syntax-shims.1 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools.1 + (not (or ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> cppo.5 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> base.17 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.17 + (and sexplib0.4 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3-base.13 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + coq.1)))) +(assert (=> why3-base.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> seq.2 (not (or seq.1 seq.3 seq.4 seq.5)))) +(assert (=> seq.2 + (and false + (or dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlfind.4 + (not (or ocamlfind.3 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.4 (and false num.1 conf-m4.1))) +(assert (=> lwt.26 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.26 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> camlp4.17 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.17 (and false false))) +(assert (=> menhir.23 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.23 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> cppo.20 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.21 + cppo.22)))) +(assert (=> cppo.20 + (and ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1))) +(assert (=> why3.28 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.28 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> zarith.4 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> camlp5.5 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.5 false)) +(assert (=> ocamlfind.3 + (not (or ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.3 (and false num.1 conf-m4.1))) +(assert (=> base.9 + (not (or base.5 + base.6 + base.7 + base.8 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.9 + (and sexplib.58 + false + (or jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp5.11 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.11 false)) +(assert (=> zarith.2 + (not (or zarith.1 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> why3.2 + (not (or why3.1 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.2 + (and (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26) + ocamlgraph.4 + false + coq.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> lablgtk.3 + (not (or lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> ppx%5ftools%5fversioned.7 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.7 + (and (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.38 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.38 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> tuareg.6 (and ocaml.60 conf-emacs.1))) +(assert (=> ppx%5ftools.3 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.3 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3.27 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.27 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> jbuilder.20 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.20 ocaml.60)) +(assert (=> alt-ergo.7 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12 + alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6)))) +(assert (=> alt-ergo.7 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1 + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> why3-base.1 + (not (or why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> why3.5 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.5 + (and false + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> psmt2-frontend.4 + (not (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.3)))) +(assert (=> psmt2-frontend.4 + (and ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> menhir.32 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.32 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.19 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.19 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44)))) +(assert (=> lwt.7 + (not (or lwt.4 + lwt.6 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp5.10 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.10 false)) +(assert (=> menhir.25 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.25 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> base.18 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.18 + (and sexplib0.4 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.25 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> jbuilder.25 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44)))) +(assert (=> menhirSdk.1 + (not (or menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.1 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cmdliner.14 ocaml.60)) +(assert (=> conf-ncurses.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> ppx%5fderivers.2 (not ppx%5fderivers.1))) +(assert (=> ppx%5fderivers.2 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocplib-endian.1 + (not (or ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.1 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> sqlite3.19 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.19 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> ocp-indent.28 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + cmdliner.14 + (or base-bytes.1 base-bytes.2)))) +(assert (=> base.7 + (not (or base.5 + base.6 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.7 + (and (or sexplib.56 sexplib.57 sexplib.58) + false + (or jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.16 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.16 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> configurator.2 (not (or configurator.3 configurator.5 configurator.7)))) +(assert (=> configurator.2 + (and (or stdio.2 stdio.3) + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + ppx%5fbase.2 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> psmt2-frontend.1 + (not (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4)))) +(assert (=> psmt2-frontend.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1))) +(assert (=> ppx%5ftools%5fversioned.6 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.6 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60))) +(assert (=> zarith.7 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> dune.52 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.52 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> stdlib-shims.2 + (and (or ocaml.60 dune.71 dune.72) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.6 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.6 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.23 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.23 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + conf-sqlite3.1 + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> ocaml.60 + (and ocaml-base-compiler.36 + ocaml-base-compiler.36 + ocaml-base-compiler.36 + ocaml-base-compiler.36 + (or ocaml-config.1 ocaml-config.2)))) +(assert (=> octavius.3 + (not (or octavius.1 octavius.2 octavius.4 octavius.5 octavius.6)))) +(assert (=> octavius.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlzip.6 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.4 camlzip.5 camlzip.7)))) +(assert (=> camlzip.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-zlib.1))) +(assert (=> cppo.13 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> cppo.17 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.17 + (and ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> cppo%5focamlbuild.2 (not (or cppo%5focamlbuild.1 cppo%5focamlbuild.3)))) +(assert (=> cppo%5focamlbuild.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.21 cppo.22)))) +(assert (=> ocamlfind.12 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.12 (and false num.1 conf-m4.1))) +(assert (=> ocaml-migrate-parsetree.12 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.12 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocaml-migrate-parsetree.30 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.30 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.21 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.21 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> result.2 (not (or result.1 result.3 result.4 result.5 result.6)))) +(assert (=> result.2 ocaml.60)) +(assert (=> ocamlbuild.3 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.3 ocaml.60)) +(assert (=> dune.56 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.56 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> alt-ergo.6 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12 + alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5)))) +(assert (=> alt-ergo.6 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + conf-autoconf.1 + (or camlzip.1 camlzip.2 camlzip.3 camlzip.4)))) +(assert (=> camlp4.7 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> zarith.1 + (not (or zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ocamlfind.22 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.22 (and false num.1 conf-m4.1))) +(assert (=> xenbigarray.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-private-libs.4 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.4 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.16 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.16 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.10 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> dune.14 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.14 ocaml.60)) +(assert (=> why3-base.8 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> dune.34 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.34 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> dune-private-libs.8 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.8 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> csexp.8 (not csexp.7))) +(assert (=> csexp.8 + (and result.6 + ocaml.60 + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> base-ocamlbuild.1 false)) +(assert (=> camlp4.23 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.23 (and false ocaml.60))) +(assert (=> topkg.11 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.11 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> conf-gtksourceview.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> sexplib.60 + (not (or sexplib.55 + sexplib.56 + sexplib.57 + sexplib.58 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.60 + (and ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune-configurator.11 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.11 + (and dune-private-libs.8 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.21 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.21 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.68 dune.69 dune.71 dune.72) + (or csexp.7 csexp.8)))) +(assert (=> ppx%5fderivers.1 (not ppx%5fderivers.2))) +(assert (=> ppx%5fderivers.1 + (and ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.36 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.36 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> jbuilder.21 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.21 ocaml.60)) +(assert (=> menhir.51 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.51 + (and ocaml.60 + menhirSdk.5 + menhirLib.5 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5ftools%5fversioned.12 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11)))) +(assert (=> ppx%5ftools%5fversioned.12 + (and (or ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> opam-file-format.11 ocaml.60)) +(assert (=> ocaml-options-vanilla.1 ocaml-base-compiler.36)) +(assert (=> sexplib0.2 + (not (or sexplib0.4 + sexplib0.6 + sexplib0.8 + sexplib.55 + sexplib.56 + sexplib.57 + sexplib.58 + sexplib.60)))) +(assert (=> sexplib0.2 + (and ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> re.23 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlzip.1 + (not (or camlzip.2 camlzip.3 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> why3-base.7 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> dune-configurator.12 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.12 + (and dune-private-libs.9 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.41 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.41 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune-private-libs.7 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.7 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.26 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25)))) +(assert (=> sqlite3.26 + (and ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + conf-sqlite3.1))) +(assert (=> why3.23 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.23 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> menhirLib.1 + (not (or menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.1 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-private-libs.14 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13)))) +(assert (=> dune-private-libs.14 + (and ocaml.60 + (or dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhirLib.4 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.4 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.54 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.55 + menhir.56)))) +(assert (=> menhir.54 + (and ocaml.60 + menhirSdk.8 + menhirLib.8 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> base.25 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24)))) +(assert (=> base.25 + (and sexplib0.8 + false + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.10 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.10 ocaml.60)) +(assert (=> lablgtk.6 + (not (or lablgtk.3 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp5.7 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.7 false)) +(assert (=> ocaml-migrate-parsetree.6 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.6 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.8 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> dune-configurator.3 + (not (or dune-configurator.2 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.3 + (and false + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> octavius.4 + (not (or octavius.1 octavius.2 octavius.3 octavius.5 octavius.6)))) +(assert (=> octavius.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> cppo.2 + (not (or cppo.1 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ocamlfind.7 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.7 (and false num.1 conf-m4.1))) +(assert (=> lablgtk.7 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> ocaml-migrate-parsetree.17 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.17 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> sqlite3.18 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.18 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> configurator.5 (not (or configurator.2 configurator.3 configurator.7)))) +(assert (=> configurator.5 + (and stdio.5 + ocaml.60 + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.11))) +(assert (=> stdio.11 (not (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.13)))) +(assert (=> stdio.11 + (and ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or base.20 base.21 base.22)))) +(assert (=> jbuilder.5 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ocamlfind.14 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.14 (and false num.1 conf-m4.1))) +(assert (=> cppo.3 + (not (or cppo.1 + cppo.2 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune.24 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.24 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> why3.13 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.13 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.6 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> menhir.26 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.26 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.68 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.68 + (and (or ocamlfind-secondary.1 ocaml.60) + ocamlfind-secondary.1 + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> sqlite3.8 + (not (or sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> dune-configurator.7 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.7 + (and dune-private-libs.4 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.42 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.42 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp5.9 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.9 false)) +(assert (=> ocamlfind.25 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.26)))) +(assert (=> ocamlfind.25 (and ocaml.60 conf-m4.1))) +(assert (=> menhirLib.2 + (not (or menhirLib.1 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.2 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.10 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.10 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.3 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> ocamlfind.5 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.5 (and false num.1 conf-m4.1))) +(assert (=> ocamlgraph.5 + (not (or ocamlgraph.4 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> camlzip.3 + (not (or camlzip.1 camlzip.2 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ppx%5ftools.7 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.7 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> cudf.5 + (and extlib.14 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> cppo.12 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> dune-private-libs.6 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.6 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.2 + (not (or camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.2 false)) +(assert (=> conf-pkg-config.3 + (not (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.4)))) +(assert (=> z3.10 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-python-2-7.2 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> menhir.6 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> base.11 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.11 + (and sexplib.60 + false + (or jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> sqlite3.10 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> conf-pkg-config.2 + (not (or conf-pkg-config.1 conf-pkg-config.3 conf-pkg-config.4)))) +(assert (=> why3.6 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + coq.1)))) +(assert (=> why3.6 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + false + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> easy-format.7 + (and ocaml.60 + (or dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.8 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp5.14 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.14 false)) +(assert (=> jbuilder.12 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> optcomp.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> dune.30 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.30 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> sqlite3.16 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.16 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> camlzip.4 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> camlp5.21 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.21 ocaml.60)) +(assert (=> alt-ergo-lib.2 (not (or alt-ergo-lib.1 alt-ergo-lib.3 alt-ergo-lib.4)))) +(assert (=> alt-ergo-lib.2 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlfind.17 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.17 (and false num.1 conf-m4.1))) +(assert (=> psmt2-frontend.3 + (not (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.4)))) +(assert (=> psmt2-frontend.3 + (and ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> lwt.35 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.35 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or mmap.1 mmap.2) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> lwt.13 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.13 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> topkg.7 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.7 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> why3-base.6 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.53 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.53 + (and ocaml.60 + menhirSdk.7 + menhirLib.7 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo-parsers.3 + (not (or alt-ergo-parsers.1 alt-ergo-parsers.2 alt-ergo-parsers.4)))) +(assert (=> alt-ergo-parsers.3 + (and stdlib-shims.2 + (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.3))) +(assert (=> dune.35 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.35 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> camlp4.32 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.33)))) +(assert (=> camlp4.32 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ocamlfind.10 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.10 (and false num.1 conf-m4.1))) +(assert (=> camlp4.29 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.29 (and false false))) +(assert (=> menhir.28 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.28 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp5.12 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.12 false)) +(assert (=> ppx%5fast.2 (not (or ppx%5fast.3 ppx%5fast.4)))) +(assert (=> ppx%5fast.2 + (and (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml-compiler-libs.2 + false + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> merlin.46 + (and yojson.18 + result.6 + ocaml.60 + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + dot-merlin-reader.3 + (or csexp.7 csexp.8)))) +(assert (=> ocaml-compiler-libs.2 + (and ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhirLib.3 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.3 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.6 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> zarith.13 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.14)))) +(assert (=> zarith.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ocaml-migrate-parsetree.8 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.8 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.22 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.22 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> menhir.45 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.45 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.29 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.29 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> dune-configurator.16 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.16 + (and dune-private-libs.12 + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> ocplib-endian.9 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8)))) +(assert (=> ocplib-endian.9 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> ppx%5fenumerate.10 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocaml-secondary-compiler.1 (not ocaml-secondary-compiler.2))) +(assert (=> ocaml-secondary-compiler.1 ocaml.60)) +(assert (=> dune.48 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.48 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> dune.21 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.21 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> lablgtk.13 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> topkg.3 + (not (or topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.3 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp4.33 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32)))) +(assert (=> camlp4.33 (and false false))) +(assert (=> sqlite3.14 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> dune.41 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.41 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> why3.24 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.24 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> cppo.19 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.19 + (and ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> ppx%5fast.3 (not (or ppx%5fast.2 ppx%5fast.4)))) +(assert (=> ppx%5fast.3 + (and (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml-compiler-libs.2 + false + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> alt-ergo-parsers.1 + (not (or alt-ergo-parsers.2 alt-ergo-parsers.3 alt-ergo-parsers.4)))) +(assert (=> alt-ergo-parsers.1 + (and (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.1))) +(assert (=> ocaml-migrate-parsetree.16 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.16 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.11 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.13 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.13 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> conf-gmp.2 (not (or conf-gmp.1 conf-gmp.3)))) +(assert (=> camlp4.26 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.26 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> camlp5.22 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.22 ocaml.60)) +(assert (=> camlp5.23 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.24)))) +(assert (=> camlp5.23 ocaml.60)) +(assert (=> lwt.46 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.46 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> menhir.19 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.19 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> why3-base.10 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> ppx%5ftools%5fversioned.8 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.8 + (and (or ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22) + ocaml.60 + (or jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.17 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.17 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> camlp4.13 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + ocaml.60 + conf-which.1))) +(assert (=> jbuilder.18 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.18 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ppx%5ftools.15 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.15 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> ppx%5fcore.14 (not (or ppx%5fcore.12 ppx%5fcore.13)))) +(assert (=> ppx%5fcore.14 + (and stdio.3 + ppx%5ftraverse%5fbuiltins.2 + (or ppx%5fast.2 ppx%5fast.3 ppx%5fast.4) + ocaml-compiler-libs.2 + ocaml.60 + (or jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.8 base.9)))) +(assert (=> menhir.29 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.29 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> camlp4.11 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.11 (and false false))) +(assert (=> ocamlfind.6 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.6 (and false num.1 conf-m4.1))) +(assert (=> ocaml-migrate-parsetree.18 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.18 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44)))) +(assert (=> sqlite3.9 + (not (or sqlite3.8 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> lwt.50 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.51)))) +(assert (=> lwt.50 + (and ocaml-syntax-shims.1 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune.25 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.25 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> lwt.21 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.21 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or cppo%5focamlbuild.1 cppo%5focamlbuild.2 cppo%5focamlbuild.3) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> why3.14 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.14 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.7 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> dune-configurator.9 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.9 + (and dune-private-libs.6 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.41 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.41 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune.36 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.36 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> menhir.48 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.48 + (and ocaml.60 + menhirSdk.2 + menhirLib.2 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.66 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.66 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> ppx%5fcore.13 (not (or ppx%5fcore.12 ppx%5fcore.14)))) +(assert (=> ppx%5fcore.13 + (and stdio.3 + ppx%5ftraverse%5fbuiltins.2 + ppx%5fast.4 + ocaml-compiler-libs.2 + ocaml.60 + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base.9))) +(assert (=> lwt.30 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.30 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> dune-private-libs.12 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.12 + (and ocaml.60 (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> ppx%5ftraverse%5fbuiltins.2 + (and ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.20 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.20 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> alt-ergo-parsers.2 + (not (or alt-ergo-parsers.1 alt-ergo-parsers.3 alt-ergo-parsers.4)))) +(assert (=> alt-ergo-parsers.2 + (and (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.2))) +(assert (=> ocaml-secondary-compiler.2 (not ocaml-secondary-compiler.1))) +(assert (=> ocaml-secondary-compiler.2 ocaml.60)) +(assert (=> dune.54 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.54 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> ocaml-config.1 (not ocaml-config.2))) +(assert (=> ocaml-config.1 ocaml-base-compiler.36)) +(assert (=> zarith.14 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13)))) +(assert (=> zarith.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> dune-configurator.22 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.23)))) +(assert (=> dune-configurator.22 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.71 dune.72) + (or csexp.7 csexp.8)))) +(assert (=> ocamlfind.11 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26)))) +(assert (=> ocamlfind.11 (and false num.1 conf-m4.1))) +(assert (=> cppo.8 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> lablgtk.9 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.9 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1))) +(assert (=> menhir.22 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.22 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.6 + (not (or dune.3 + dune.4 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.6 ocaml.60)) +(assert (=> yojson.18 + (and ocaml.60 + easy-format.7 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + biniou.9))) +(assert (=> camlzip.2 + (not (or camlzip.1 camlzip.3 camlzip.4 camlzip.5 camlzip.6 camlzip.7)))) +(assert (=> camlzip.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> base.5 + (not (or base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25 + sexplib.56 + sexplib.57 + sexplib.58 + sexplib.60)))) +(assert (=> base.5 (and false (or jbuilder.4 jbuilder.5 jbuilder.6 jbuilder.7)))) +(assert (=> user-setup.7 + (and re.23 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + cmdliner.14))) +(assert (=> alt-ergo.10 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.10 + (and ocaml.60 + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + alt-ergo-parsers.2 + alt-ergo-lib.2))) +(assert (=> lwt.22 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.22 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or cppo%5focamlbuild.1 cppo%5focamlbuild.2 cppo%5focamlbuild.3) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.4 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> menhir.18 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.18 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> cppo%5focamlbuild.3 (not (or cppo%5focamlbuild.1 cppo%5focamlbuild.2)))) +(assert (=> cppo%5focamlbuild.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.6 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> dune-configurator.17 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.17 + (and dune-private-libs.13 + (or dune.64 dune.65 dune.66 dune.68 dune.69 dune.71 dune.72)))) +(assert (=> why3.4 + (not (or why3.1 + why3.2 + why3.3 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.4 + (and false + lablgtk.3 + conf-gtksourceview.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> ocamlgraph.12 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9)))) +(assert (=> ocamlgraph.12 + (and stdlib-shims.2 + ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.4 + (not (or dune.3 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.4 ocaml.60)) +(assert (=> camlp4.19 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.19 (and false false))) +(assert (=> sexplib.58 + (not (or sexplib.55 + sexplib.56 + sexplib.57 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.58 + (and ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.2 + (not (or jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.2 ocaml.60)) +(assert (=> why3.8 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.8 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.2 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> sqlite3.13 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> ppx%5ftools.5 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.5 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> topkg.4 + (not (or topkg.3 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.4 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> jbuilder.13 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> base.16 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.16 + (and sexplib0.4 + ocaml.60 + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.50 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.50 + (and ocaml.60 + menhirSdk.4 + menhirLib.4 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.16 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.16 false)) +(assert (=> dune.33 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.33 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> conf-sqlite3.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> camlp4.14 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.14 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> alt-ergo.2 + (not (or alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.2 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> dune-configurator.23 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22)))) +(assert (=> dune-configurator.23 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + ocaml.60 + (or dune.71 dune.72) + (or csexp.7 csexp.8)))) +(assert (=> cppo.22 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21)))) +(assert (=> cppo.22 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + base-unix.1))) +(assert (=> why3-base.3 + (not (or why3-base.1 + why3-base.2 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 menhir.3 menhir.4 menhir.6)))) +(assert (=> dune-private-libs.5 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.5 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.17 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.17 ocaml.60)) +(assert (=> base.20 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.20 + (and sexplib0.6 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.23 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.23 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.40 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.40 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> ppx%5fdriver.15 (not (or ppx%5fdriver.14 ppx%5fdriver.16)))) +(assert (=> ppx%5fdriver.15 + (and ppx%5foptcomp.12 + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + (or ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + false + (or jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.4 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.4 ocaml.60)) +(assert (=> base.22 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.24 + base.25)))) +(assert (=> base.22 + (and sexplib0.6 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> num.6 (not (or num.1 num.2 num.3 num.4 num.5 base-num.1)))) +(assert (=> num.6 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> ocplib-endian.6 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.6 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33) + (or base-bytes.1 base-bytes.2)))) +(assert (=> result.5 (not (or result.1 result.2 result.3 result.4 result.6)))) +(assert (=> result.5 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.15 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4)))) +(assert (=> ocaml-migrate-parsetree.20 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.20 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.14 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.14 + (and dune-private-libs.11 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.18 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.18 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> ppx%5ftools.14 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.14 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> conf-gmp.3 (not (or conf-gmp.1 conf-gmp.2)))) +(assert (=> octavius.1 + (not (or octavius.2 octavius.3 octavius.4 octavius.5 octavius.6)))) +(assert (=> octavius.1 + (and (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> base-num.1 false)) +(assert (=> dune.3 + (not (or dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.3 ocaml.60)) +(assert (=> dune.61 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.61 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> camlzip.5 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.4 camlzip.6 camlzip.7)))) +(assert (=> camlzip.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-zlib.1))) +(assert (=> dune-configurator.5 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.5 + (and dune-private-libs.2 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.64 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.64 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> menhirLib.8 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.8 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.9 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.9 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> ppx%5ftype%5fconv.13 (not ppx%5ftype%5fconv.14))) +(assert (=> ppx%5ftype%5fconv.13 + (and ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.16 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.16 ocaml.60)) +(assert (=> menhir.13 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.13 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> dune.19 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.19 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> ppx%5ftools.17 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.17 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5fast.4 (not (or ppx%5fast.2 ppx%5fast.3)))) +(assert (=> ppx%5fast.4 + (and (or ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml-compiler-libs.2 + ocaml.60 + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.27 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.27 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.39 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.39 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> lablgtk.8 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + conf-gtk2.1))) +(assert (=> menhir.52 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.52 + (and ocaml.60 + menhirSdk.6 + menhirLib.6 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.18 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.18 ocaml.60)) +(assert (=> ppx%5ftools.11 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.11 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> menhirSdk.6 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.6 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.2 + (not (or dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.2 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44))) +(assert (=> base-implicits.1 (and false ocaml.60))) +(assert (=> dune.62 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.62 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> topkg.6 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.6 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> dune.72 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.72 (and ocamlfind-secondary.1 ocaml.60 base-unix.1 base-threads.1))) +(assert (=> alt-ergo.3 + (not (or alt-ergo.2 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.3 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> ocaml-migrate-parsetree.31 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.31 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> base.21 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.22 + base.24 + base.25)))) +(assert (=> base.21 + (and sexplib0.6 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.4 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.4 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6)))) +(assert (=> octavius.5 + (not (or octavius.1 octavius.2 octavius.3 octavius.4 octavius.6)))) +(assert (=> octavius.5 + (and ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocaml-migrate-parsetree.11 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.11 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> camlp5.3 + (not (or camlp5.2 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.3 false)) +(assert (=> base-no-ppx.1 false)) +(assert (=> %3dopam-invariant.1 ocaml-base-compiler.36)) +(assert (=> result.3 (not (or result.1 result.2 result.4 result.5 result.6)))) +(assert (=> result.3 ocaml.60)) +(assert (=> dune-private-libs.2 + (not (or dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.2 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.2 + (not (or menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> menhirLib.7 + (not (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.8 + menhirLib.9 + menhirLib.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirLib.7 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> topkg.13 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.13 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.22 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.22 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + false + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dot-merlin-reader.3 + (and yojson.18 + result.6 + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or csexp.7 csexp.8)))) +(assert (=> lwt.32 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.32 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> ppx%5ftools.10 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.10 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> mmap.1 (not mmap.2))) +(assert (=> mmap.1 + (and ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.23 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.23 ocaml.60)) +(assert (=> why3.1 + (not (or why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.1 + (and (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26) + ocamlgraph.4 + false + coq.1 + (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> dune.50 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.25)))) +(assert (=> dune.50 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> num.4 (not (or num.1 num.2 num.3 num.5 num.6 base-num.1)))) +(assert (=> num.4 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> menhir.33 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.33 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lablgtk.11 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> ppx%5ftype%5fconv.14 (not ppx%5ftype%5fconv.13))) +(assert (=> ppx%5ftype%5fconv.14 + (and ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fderivers.1 ppx%5fderivers.2) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ppx%5ftools.13 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.13 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ppx%5fmetaquot.2 + (and ppx%5ftraverse%5fbuiltins.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune.59 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.59 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> seq.4 (not (or seq.1 seq.2 seq.3 seq.5)))) +(assert (=> seq.4 + (and ocaml.60 + (or dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> octavius.6 + (not (or octavius.1 octavius.2 octavius.3 octavius.4 octavius.5)))) +(assert (=> octavius.6 + (and ocaml.60 + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.11 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.12)))) +(assert (=> alt-ergo.11 + (and ocaml.60 + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + alt-ergo-parsers.3 + alt-ergo-lib.3))) +(assert (=> octavius.2 + (not (or octavius.1 octavius.3 octavius.4 octavius.5 octavius.6)))) +(assert (=> octavius.2 + (and (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocaml-migrate-parsetree.21 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.21 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + false + false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.12 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.12 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.5 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> ocplib-endian.4 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.4 + (and optcomp.3 + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33) + (or base-bytes.1 base-bytes.2)))) +(assert (=> topkg.5 + (not (or topkg.3 + topkg.4 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.5 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> alt-ergo-parsers.4 + (not (or alt-ergo-parsers.1 alt-ergo-parsers.2 alt-ergo-parsers.3)))) +(assert (=> alt-ergo-parsers.4 + (and stdlib-shims.2 + (or psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + ocaml.60 + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + alt-ergo-lib.4))) +(assert (=> menhir.21 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.21 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> base.6 + (not (or base.5 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.6 + (and (or sexplib.56 sexplib.57 sexplib.58) + false + (or jbuilder.2 jbuilder.3 jbuilder.4 jbuilder.5 jbuilder.6 jbuilder.7)))) +(assert (=> ppx%5ftools.19 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18)))) +(assert (=> ppx%5ftools.19 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> jbuilder.10 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> menhir.39 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.39 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> stdio.13 (not (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11)))) +(assert (=> stdio.13 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or base.24 base.25)))) +(assert (=> camlzip.7 + (not (or camlzip.1 camlzip.2 camlzip.3 camlzip.4 camlzip.5 camlzip.6)))) +(assert (=> camlzip.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-zlib.1))) +(assert (=> zarith.6 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> base-bytes.1 (not base-bytes.2))) +(assert (=> base-bytes.1 + (and (or ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> dune-configurator.8 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.8 + (and dune-private-libs.5 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.8 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> ocamlbuild.4 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.4 ocaml.60)) +(assert (=> ocaml-migrate-parsetree.9 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.9 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ocplib-simplex.2 (not ocplib-simplex.1))) +(assert (=> ocplib-simplex.2 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + conf-autoconf.1))) +(assert (=> ppx%5fsexp%5fconv.14 + (and (or sexplib.55 sexplib.56 sexplib.57 sexplib.58) + (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> lwt.4 + (not (or lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> menhir.43 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.43 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.10 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or camlp4.2 camlp4.3)))) +(assert (=> ocaml-base-compiler.36 + (and ocaml.60 base-unix.1 base-threads.1 base-bigarray.1))) +(assert (=> mccs.9 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + cudf.5))) +(assert (=> base.24 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.25)))) +(assert (=> base.24 + (and sexplib0.8 + ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocplib-endian.7 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.8 + ocplib-endian.9)))) +(assert (=> ocplib-endian.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> ocaml-migrate-parsetree.10 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33 + dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.10 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune-private-libs.11 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.11 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> sqlite3.25 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.26)))) +(assert (=> sqlite3.25 + (and ocaml.60 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + conf-sqlite3.1))) +(assert (=> ocaml-migrate-parsetree.27 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.27 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.44 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.44 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> why3-base.5 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> dune.7 + (not (or dune.3 + dune.4 + dune.6 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.7 ocaml.60)) +(assert (=> ppx%5fjs%5fstyle.2 + (and ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or octavius.1 octavius.2 octavius.3 octavius.4 octavius.5 octavius.6) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> dune-private-libs.10 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.10 + (and ocaml.60 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> zarith.3 + (not (or zarith.1 + zarith.2 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.3 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> num.5 (not (or num.1 num.2 num.3 num.4 num.6 base-num.1)))) +(assert (=> num.5 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> ocamlbuild.1 + (not (or ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8)))) +(assert (=> ocamlbuild.1 (and ocaml.60 base-ocamlbuild.1))) +(assert (=> seq.3 (not (or seq.1 seq.2 seq.4 seq.5)))) +(assert (=> seq.3 + (and false + (or dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> jbuilder.11 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> dune.43 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.43 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> configurator.7 + (not (or configurator.2 configurator.3 configurator.5 jbuilder.20)))) +(assert (=> configurator.7 + (and (or stdio.7 stdio.9 stdio.11) + ocaml.60 + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.13 base.14 base.16 base.17 base.18 base.20 base.21 base.22)))) +(assert (=> alt-ergo-lib.4 (not (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.3)))) +(assert (=> alt-ergo-lib.4 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + stdlib-shims.2 + (or seq.1 seq.2 seq.3 seq.4 seq.5) + ocplib-simplex.2 + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> conf-pkg-config.1 + (not (or conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4)))) +(assert (=> camlp5.20 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.20 ocaml.60)) +(assert (=> camlp4.5 + (not (or camlp4.2 + camlp4.3 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> sqlite3.20 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.21 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.20 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> camlp5.17 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.17 ocaml.60)) +(assert (=> cppo.16 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.16 + (and false + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + base-unix.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> stdio.2 (not (or stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13)))) +(assert (=> stdio.2 + (and false + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> menhir.31 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.31 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> lwt.18 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51 + ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5)))) +(assert (=> lwt.18 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1 + (or base-bytes.1 base-bytes.2)))) +(assert (=> topkg.15 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.8 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.16)))) +(assert (=> topkg.15 + (and (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> conf-autoconf.1 conf-which.1)) +(assert (=> camlp4.2 + (not (or camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.2 false)) +(assert (=> base.13 + (not (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base.13 + (and sexplib0.2 + false + (or jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> zarith.5 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.5 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> ppx%5ftools%5fversioned.9 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.10 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.9 + (and (or ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ppx%5fhash.2 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fsexp%5fconv.14 + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + ppx%5fcompare.11 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> ppx%5ftools.8 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.8 + (and (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> conf-pkg-config.4 + (not (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3)))) +(assert (=> ocamlfind.26 + (not (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25)))) +(assert (=> ocamlfind.26 (and ocaml.60 conf-m4.1))) +(assert (=> ocamlbuild.6 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.6 ocaml.60)) +(assert (=> ocamlbuild.5 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.5 ocaml.60)) +(assert (=> why3.15 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.15 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.8 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> menhir.20 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.20 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ppx%5fdriver.16 (not (or ppx%5fdriver.14 ppx%5fdriver.15)))) +(assert (=> ppx%5fdriver.16 + (and ppx%5foptcomp.12 + (or ppx%5fcore.13 ppx%5fcore.14) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + (or ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> biniou.9 + (and ocaml.60 + easy-format.7 + (or dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> why3.18 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)))) +(assert (=> why3.18 + (and (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + why3-base.12 + (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + ocaml.60 + (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + conf-gtksourceview.1 + (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7)))) +(assert (=> lablgtk.15 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14)))) +(assert (=> lablgtk.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> jbuilder.22 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.22 ocaml.60)) +(assert (=> why3.26 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.26 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.24 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.24 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> why3-base.11 + (not (or why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.12 + why3-base.13 + coq.1)))) +(assert (=> why3-base.11 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> lablgtk.12 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> menhir.14 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> menhirSdk.5 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.5 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocaml-migrate-parsetree.24 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.24 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune-configurator.13 + (not (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23)))) +(assert (=> dune-configurator.13 + (and dune-private-libs.10 + (or dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dune.31 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.31 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> conf-zlib.1 + (or conf-pkg-config.1 conf-pkg-config.2 conf-pkg-config.3 conf-pkg-config.4))) +(assert (=> dune.71 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.71 (and ocamlfind-secondary.1 ocaml.60 base-unix.1 base-threads.1))) +(assert (=> dune.65 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.65 + (and (or ocamlfind-secondary.1 ocaml.60) + (or ocamlfind-secondary.1 ocaml.60) + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> dune.42 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.42 (and ocaml.60 base-unix.1 base-threads.1))) +(assert (=> ppx%5fcompare.11 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fmetaquot.2 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + (or ppx%5fcore.12 ppx%5fcore.13 ppx%5fcore.14) + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or base.5 base.6 base.7 base.8 base.9)))) +(assert (=> menhirSdk.7 + (not (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10 + menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhirSdk.7 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp4.6 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.21 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-which.1))) +(assert (=> dune-private-libs.3 + (not (or dune-private-libs.2 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.13 + dune-private-libs.14)))) +(assert (=> dune-private-libs.3 + (and ocaml.60 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> menhir.16 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.16 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> sqlite3.21 + (not (or sqlite3.8 + sqlite3.9 + sqlite3.10 + sqlite3.11 + sqlite3.12 + sqlite3.13 + sqlite3.14 + sqlite3.15 + sqlite3.16 + sqlite3.17 + sqlite3.18 + sqlite3.19 + sqlite3.20 + sqlite3.22 + sqlite3.23 + sqlite3.25 + sqlite3.26)))) +(assert (=> sqlite3.21 + (and (or stdio.2 stdio.3 stdio.5 stdio.7 stdio.9 stdio.11 stdio.13) + ocaml.60 + (or jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or configurator.2 configurator.3 configurator.5 configurator.7) + conf-sqlite3.1 + (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + (or base.5 + base.6 + base.7 + base.8 + base.9 + base.11 + base.13 + base.14 + base.16 + base.17 + base.18 + base.20 + base.21 + base.22 + base.24 + base.25)))) +(assert (=> base-bytes.2 (not base-bytes.1))) +(assert (=> base-bytes.2 + (and (or ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> zarith.12 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.13 + zarith.14)))) +(assert (=> zarith.12 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> menhir.4 + (not (or menhir.2 + menhir.3 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.4 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> zarith.8 + (not (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.9 + zarith.12 + zarith.13 + zarith.14)))) +(assert (=> zarith.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-perl.1 + (or conf-gmp.1 conf-gmp.2 conf-gmp.3)))) +(assert (=> topkg.8 + (not (or topkg.3 + topkg.4 + topkg.5 + topkg.6 + topkg.7 + topkg.9 + topkg.11 + topkg.12 + topkg.13 + topkg.14 + topkg.15 + topkg.16)))) +(assert (=> topkg.8 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> ocplib-simplex.1 (not ocplib-simplex.2))) +(assert (=> ocplib-simplex.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + conf-autoconf.1))) +(assert (=> ppx%5fbase.2 + (and (or ppx%5ftype%5fconv.13 ppx%5ftype%5fconv.14) + ppx%5fsexp%5fconv.14 + ppx%5fjs%5fstyle.2 + ppx%5fhash.2 + ppx%5fenumerate.10 + (or ppx%5fdriver.14 ppx%5fdriver.15 ppx%5fdriver.16) + ppx%5fcompare.11 + (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> menhir.47 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.47 + (and ocaml.60 + menhirSdk.1 + menhirLib.1 + (or dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> dose3.5 + (and extlib.14 + re.23 + (or ocamlgraph.7 ocamlgraph.8 ocamlgraph.9 ocamlgraph.12) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + cudf.5 + (or cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> csexp.7 (not csexp.8))) +(assert (=> csexp.7 + (and result.6 + ocaml.60 + (or dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.21 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.22)))) +(assert (=> cppo.21 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + base-unix.1))) +(assert (=> ocamlgraph.6 + (not (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12)))) +(assert (=> ocamlgraph.6 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + false))) +(assert (=> base-metaocaml-ocamlfind.1 (and false ocaml.60))) +(assert (=> result.1 (not (or result.2 result.3 result.4 result.5 result.6)))) +(assert (=> result.1 ocaml.60)) +(assert (=> menhir.15 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 ocamlbuild.2) + ocaml.60))) +(assert (=> menhir.38 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.38 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> sexplib.55 + (not (or sexplib.56 + sexplib.57 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.55 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11) + base.5))) +(assert (=> ocplib-endian.8 + (not (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.9)))) +(assert (=> ocplib-endian.8 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60 + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + (or base-bytes.1 base-bytes.2)))) +(assert (=> lwt.29 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.29 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocamlfind.24 ocamlfind.25 ocamlfind.26) + ocaml.60 + (or jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> coq.1 + (and (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or num.1 num.2 num.3 num.4 num.5 num.6) + conf-findutils.1 + (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> seq.1 (not (or seq.2 seq.3 seq.4 seq.5)))) +(assert (=> seq.1 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> result.6 (not (or result.1 result.2 result.3 result.4 result.5)))) +(assert (=> result.6 + (and ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> ocamlbuild.8 + (not (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + base-ocamlbuild.1 + ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17)))) +(assert (=> ocamlbuild.8 ocaml.60)) +(assert (=> dune.69 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.71 + dune.72 + dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + jbuilder.25)))) +(assert (=> dune.69 + (and (or ocamlfind-secondary.1 ocaml.60) + ocamlfind-secondary.1 + ocaml.60 + base-unix.1 + base-threads.1))) +(assert (=> why3.20 + (not (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28 + why3-base.1 + why3-base.2 + why3-base.3 + why3-base.4 + why3-base.5 + why3-base.6 + why3-base.7 + why3-base.8 + why3-base.10 + why3-base.11 + why3-base.12 + why3-base.13)))) +(assert (=> why3.20 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46)))) +(assert (=> lablgtk.10 + (not (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15)))) +(assert (=> lablgtk.10 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60 + conf-gtk2.1))) +(assert (=> ocaml-migrate-parsetree.26 + (not (or ocaml-migrate-parsetree.3 + ocaml-migrate-parsetree.4 + ocaml-migrate-parsetree.6 + ocaml-migrate-parsetree.8 + ocaml-migrate-parsetree.9 + ocaml-migrate-parsetree.10 + ocaml-migrate-parsetree.11 + ocaml-migrate-parsetree.12 + ocaml-migrate-parsetree.13 + ocaml-migrate-parsetree.14 + ocaml-migrate-parsetree.15 + ocaml-migrate-parsetree.16 + ocaml-migrate-parsetree.17 + ocaml-migrate-parsetree.18 + ocaml-migrate-parsetree.19 + ocaml-migrate-parsetree.20 + ocaml-migrate-parsetree.21 + ocaml-migrate-parsetree.22 + ocaml-migrate-parsetree.23 + ocaml-migrate-parsetree.24 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33)))) +(assert (=> ocaml-migrate-parsetree.26 + (and (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ppx%5fderivers.1 ppx%5fderivers.2) + ocaml.60 + (or dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.40 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.40 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> jbuilder.7 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> dune-private-libs.13 + (not (or dune-private-libs.2 + dune-private-libs.3 + dune-private-libs.4 + dune-private-libs.5 + dune-private-libs.6 + dune-private-libs.7 + dune-private-libs.8 + dune-private-libs.9 + dune-private-libs.10 + dune-private-libs.11 + dune-private-libs.12 + dune-private-libs.14)))) +(assert (=> dune-private-libs.13 + (and ocaml.60 + (or dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> cppo.15 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.15 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + (or base-bytes.1 base-bytes.2)))) +(assert (=> lwt.45 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.45 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> result.4 (not (or result.1 result.2 result.3 result.5 result.6)))) +(assert (=> result.4 + (and ocaml.60 + (or jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> ppx%5ftools.18 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.19)))) +(assert (=> ppx%5ftools.18 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> lwt.44 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.44 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> camlp4.21 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) +(assert (=> camlp4.21 (and false false))) +(assert (=> menhir.55 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) +(assert (=> menhir.55 + (and ocaml.60 + menhirSdk.9 + menhirLib.9 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> camlp5.19 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.19 false)) +(assert (=> cppo.7 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> cppo.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) +(assert (=> menhir.40 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) +(assert (=> menhir.40 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) +(assert (=> sexplib.56 + (not (or sexplib.55 + sexplib.57 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) +(assert (=> sexplib.56 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11)))) +(assert (=> dune.9 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) +(assert (=> dune.9 ocaml.60)) +(assert (=> lwt.49 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.50 + lwt.51)))) +(assert (=> lwt.49 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) +(assert (=> num.3 (not (or num.1 num.2 num.4 num.5 num.6 base-num.1)))) +(assert (=> num.3 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> camlp5.13 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) +(assert (=> camlp5.13 false)) +(assert (=> lwt.14 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) +(assert (=> lwt.14 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) +(assert (=> ppx%5ftools%5fversioned.10 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) +(assert (=> ppx%5ftools%5fversioned.10 + (and (or ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) +(assert (=> alt-ergo.9 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) +(assert (=> alt-ergo.9 (and ocaml.60 alt-ergo-parsers.1 alt-ergo-lib.1))) +(assert (=> jbuilder.14 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (=> num.2 (not (or num.1 num.3 num.4 num.5 num.6 base-num.1)))) +(assert (=> num.2 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) +(assert (=> jbuilder.17 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) +(assert (=> jbuilder.17 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) +(assert (or why3.1 + why3.2 + why3.3 + why3.4 + why3.5 + why3.6 + why3.7 + why3.8 + why3.10 + why3.11 + why3.12 + why3.13 + why3.14 + why3.15 + why3.16 + why3.17 + why3.18 + why3.19 + why3.20 + why3.21 + why3.22 + why3.23 + why3.24 + why3.25 + why3.26 + why3.27 + why3.28)) + +(minimize (+ (ite (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + 0 + 1) + (ite (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + 0 + 1) + (ite (or result.1 result.2 result.3 result.4 result.5 result.6) 0 1) + (ite dose3.5 0 1) + (ite (or base-bytes.1 base-bytes.2) 0 1) + (ite conf-zlib.1 0 1) + (ite (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + 0 + 1) + (ite biniou.9 0 1) + (ite base-unix.1 0 1) + (ite (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + 0 + 1) + (ite (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + 0 + 1) + (ite conf-autoconf.1 0 1) + (ite conf-emacs.1 0 1) + (ite (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.3 alt-ergo-lib.4) 0 1) + (ite mccs.9 0 1) + (ite ocaml-base-compiler.36 0 1) + (ite (or ocplib-simplex.1 ocplib-simplex.2) 0 1) + (ite (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + 0 + 1) + (ite (or alt-ergo-parsers.1 + alt-ergo-parsers.2 + alt-ergo-parsers.3 + alt-ergo-parsers.4) + 0 + 1) + (ite dot-merlin-reader.3 0 1) + (ite %3dopam-invariant.1 0 1) + (ite (or conf-gmp.1 conf-gmp.2 conf-gmp.3) 0 1) + (ite (or num.1 num.2 num.3 num.4 num.5 num.6) 0 1) + (ite (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + 0 + 1) + (ite (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + 0 + 1) + (ite user-setup.7 0 1) + (ite yojson.18 0 1) + (ite (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + 0 + 1) + (ite (or ocaml-config.1 ocaml-config.2) 0 1) + (ite (or ocaml-secondary-compiler.1 ocaml-secondary-compiler.2) 0 1) + (ite conf-which.1 0 1) + (ite base-bigarray.1 0 1) + (ite merlin.46 0 1) + (ite easy-format.7 0 1) + (ite z3.10 0 1) + (ite cudf.5 0 1) + (ite re.23 0 1) + (ite opam-file-format.11 0 1) + (ite (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + 0 + 1) + (ite (or csexp.7 csexp.8) 0 1) + (ite ocaml.60 0 1) + (ite stdlib-shims.2 0 1) + (ite ocp-indent.28 0 1) + (ite cmdliner.14 0 1) + (ite (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + 0 + 1) + (ite tuareg.6 0 1) + (ite conf-python-2-7.2 0 1) + (ite extlib.14 0 1) + (ite (or seq.1 seq.2 seq.3 seq.4 seq.5) 0 1) + (ite (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10) + 0 + 1) + (ite conf-perl.1 0 1) + (ite (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10) + 0 + 1) + (ite base-threads.1 0 1) + (ite (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12) + 0 + 1) + (ite conf-gtk2.1 0 1) + (ite conf-m4.1 0 1) + (ite ocamlfind-secondary.1 0 1) + (ite (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + 0 + 1))) + +(minimize (+ (ite why3.20 8 0) + (ite why3.26 2 0) + (ite why3.18 10 0) + (ite why3.15 13 0) + (ite why3.12 16 0) + (ite why3.1 26 0) + (ite why3.8 19 0) + (ite why3.4 23 0) + (ite why3.14 14 0) + (ite why3.24 4 0) + (ite why3.6 21 0) + (ite why3.10 18 0) + (ite why3.13 15 0) + (ite why3.23 5 0) + (ite why3.16 12 0) + (ite why3.21 7 0) + (ite why3.5 22 0) + (ite why3.27 1 0) + (ite why3.2 25 0) + (ite why3.3 24 0) + (ite why3.22 6 0) + (ite why3.17 11 0) + (ite why3.19 9 0) + (ite why3.11 17 0) + (ite why3.25 3 0) + (ite why3.7 20 0))) + +(minimize (+ (ite jbuilder.17 8 0) + (ite num.2 4 0) + (ite jbuilder.14 11 0) + (ite alt-ergo.9 3 0) + (ite ppx%5ftools%5fversioned.10 2 0) + (ite lwt.14 29 0) + (ite camlp5.13 18 0) + (ite num.3 3 0) + (ite lwt.49 2 0) + (ite dune.9 43 0) + (ite sexplib.56 7 0) + (ite menhir.40 16 0) + (ite cppo.7 14 0) + (ite camlp5.19 12 0) + (ite menhir.55 1 0) + (ite camlp4.21 12 0) + (ite lwt.44 6 0) + (ite ppx%5ftools.18 1 0) + (ite result.4 2 0) + (ite lwt.45 5 0) + (ite cppo.15 7 0) + (ite dune-private-libs.13 5 0) + (ite jbuilder.7 18 0) + (ite lwt.40 9 0) + (ite ocaml-migrate-parsetree.26 8 0) + (ite lablgtk.10 5 0) + (ite why3.20 8 0) + (ite dune.69 0 2) + (ite seq.1 4 0) + (ite coq.1 34 0) + (ite lwt.29 17 0) + (ite ocplib-endian.8 1 0) + (ite sexplib.55 8 0) + (ite menhir.38 18 0) + (ite menhir.15 40 0) + (ite result.1 5 0) + (ite ocamlgraph.6 4 0) + (ite cppo.21 1 0) + (ite csexp.7 1 0) + (ite menhir.47 9 0) + (ite ppx%5fbase.2 5 0) + (ite ocplib-simplex.1 1 0) + (ite topkg.8 7 0) + (ite zarith.8 4 0) + (ite menhir.4 47 0) + (ite zarith.12 2 0) + (ite sqlite3.21 4 0) + (ite menhir.16 39 0) + (ite dune-private-libs.3 15 0) + (ite camlp4.6 26 0) + (ite menhirSdk.7 3 0) + (ite ppx%5fcompare.11 6 0) + (ite dune.42 19 0) + (ite dune.65 5 0) + (ite dune.71 1 0) + (ite dune.31 27 0) + (ite dune-configurator.13 8 0) + (ite ocaml-migrate-parsetree.24 9 0) + (ite menhirSdk.5 5 0) + (ite menhir.14 41 0) + (ite lablgtk.12 3 0) + (ite why3-base.11 2 0) + (ite menhir.24 31 0) + (ite why3.26 2 0) + (ite jbuilder.22 3 0) + (ite why3.18 10 0) + (ite ppx%5fdriver.16 6 0) + (ite menhir.20 35 0) + (ite why3.15 13 0) + (ite ocamlbuild.5 3 0) + (ite ocamlbuild.6 2 0) + (ite ppx%5ftools.8 11 0) + (ite ppx%5fhash.2 6 0) + (ite ppx%5ftools%5fversioned.9 3 0) + (ite zarith.5 7 0) + (ite base.13 9 0) + (ite camlp4.2 29 0) + (ite topkg.15 1 0) + (ite lwt.18 26 0) + (ite menhir.31 24 0) + (ite stdio.2 6 0) + (ite cppo.16 6 0) + (ite camlp5.17 14 0) + (ite sqlite3.20 5 0) + (ite camlp4.5 27 0) + (ite camlp5.20 11 0) + (ite conf-pkg-config.1 3 0) + (ite dune.43 18 0) + (ite jbuilder.11 14 0) + (ite seq.3 2 0) + (ite ocamlbuild.1 7 0) + (ite num.5 1 0) + (ite zarith.3 9 0) + (ite dune-private-libs.10 8 0) + (ite ppx%5fjs%5fstyle.2 5 0) + (ite dune.7 44 0) + (ite why3-base.5 7 0) + (ite dune.44 17 0) + (ite ocaml-migrate-parsetree.27 7 0) + (ite sqlite3.25 1 0) + (ite dune-private-libs.11 7 0) + (ite ocaml-migrate-parsetree.10 23 0) + (ite ocplib-endian.7 2 0) + (ite base.24 1 0) + (ite ocaml-base-compiler.36 0 13) + (ite lwt.10 33 0) + (ite menhir.43 13 0) + (ite lwt.4 38 0) + (ite ppx%5fsexp%5fconv.14 9 0) + (ite ocaml-migrate-parsetree.9 24 0) + (ite ocamlbuild.4 4 0) + (ite jbuilder.8 17 0) + (ite dune-configurator.8 13 0) + (ite base-bytes.1 1 0) + (ite zarith.6 6 0) + (ite menhir.39 17 0) + (ite jbuilder.10 15 0) + (ite base.6 14 0) + (ite menhir.21 34 0) + (ite topkg.5 10 0) + (ite ocplib-endian.4 4 0) + (ite why3.12 16 0) + (ite ocaml-migrate-parsetree.21 12 0) + (ite octavius.2 4 0) + (ite alt-ergo.11 1 0) + (ite seq.4 1 0) + (ite dune.59 9 0) + (ite ppx%5fmetaquot.2 2 0) + (ite ppx%5ftools.13 6 0) + (ite ppx%5ftype%5fconv.14 2 0) + (ite lablgtk.11 4 0) + (ite menhir.33 22 0) + (ite num.4 2 0) + (ite dune.50 15 0) + (ite why3.1 26 0) + (ite jbuilder.23 2 0) + (ite mmap.1 1 0) + (ite ppx%5ftools.10 9 0) + (ite lwt.32 15 0) + (ite ocaml-migrate-parsetree.22 11 0) + (ite topkg.13 3 0) + (ite menhirLib.7 3 0) + (ite menhir.2 49 0) + (ite dune-private-libs.2 16 0) + (ite result.3 3 0) + (ite camlp5.3 28 0) + (ite ocaml-migrate-parsetree.11 22 0) + (ite octavius.5 1 0) + (ite alt-ergo.4 8 0) + (ite base.21 3 0) + (ite ocaml-migrate-parsetree.31 4 0) + (ite alt-ergo.3 9 0) + (ite topkg.6 9 0) + (ite dune.62 7 0) + (ite dune-configurator.2 18 0) + (ite menhirSdk.6 4 0) + (ite ppx%5ftools.11 8 0) + (ite camlp5.18 13 0) + (ite menhir.52 4 0) + (ite lablgtk.8 7 0) + (ite lwt.39 10 0) + (ite menhir.27 28 0) + (ite ppx%5fast.4 2 0) + (ite ppx%5ftools.17 2 0) + (ite dune.19 37 0) + (ite menhir.13 42 0) + (ite dune.16 39 0) + (ite ppx%5ftype%5fconv.13 3 0) + (ite camlp4.9 23 0) + (ite menhirLib.8 2 0) + (ite dune.64 6 0) + (ite dune-configurator.5 16 0) + (ite camlzip.5 2 0) + (ite dune.61 8 0) + (ite dune.3 47 0) + (ite octavius.1 5 0) + (ite ppx%5ftools.14 5 0) + (ite camlp4.18 15 0) + (ite dune-configurator.14 7 0) + (ite ocaml-migrate-parsetree.20 13 0) + (ite sqlite3.15 10 0) + (ite result.5 1 0) + (ite ocplib-endian.6 3 0) + (ite base.22 2 0) + (ite jbuilder.4 21 0) + (ite ppx%5fdriver.15 7 0) + (ite dune.40 21 0) + (ite ocaml-migrate-parsetree.23 10 0) + (ite base.20 4 0) + (ite dune.17 38 0) + (ite dune-private-libs.5 13 0) + (ite why3-base.3 9 0) + (ite alt-ergo.2 10 0) + (ite camlp4.14 19 0) + (ite dune.33 26 0) + (ite camlp5.16 15 0) + (ite menhir.50 6 0) + (ite base.16 7 0) + (ite jbuilder.13 12 0) + (ite topkg.4 11 0) + (ite ppx%5ftools.5 13 0) + (ite sqlite3.13 12 0) + (ite why3.8 19 0) + (ite jbuilder.2 23 0) + (ite sexplib.58 5 0) + (ite camlp4.19 14 0) + (ite dune.4 46 0) + (ite why3.4 23 0) + (ite dune-configurator.17 5 0) + (ite jbuilder.6 19 0) + (ite menhir.18 37 0) + (ite cppo.4 17 0) + (ite lwt.22 22 0) + (ite alt-ergo.10 2 0) + (ite base.5 15 0) + (ite camlzip.2 5 0) + (ite dune.6 45 0) + (ite menhir.22 33 0) + (ite lablgtk.9 6 0) + (ite cppo.8 13 0) + (ite ocamlfind.11 12 0) + (ite dune-configurator.22 1 0) + (ite ocaml-config.1 0 1) + (ite dune.54 12 0) + (ite alt-ergo-parsers.2 2 0) + (ite lwt.20 24 0) + (ite ppx%5ftraverse%5fbuiltins.2 2 0) + (ite dune-private-libs.12 6 0) + (ite lwt.30 16 0) + (ite ppx%5fcore.13 3 0) + (ite dune.66 4 0) + (ite menhir.48 8 0) + (ite dune.36 23 0) + (ite lwt.41 8 0) + (ite dune-configurator.9 12 0) + (ite why3.14 14 0) + (ite lwt.21 23 0) + (ite dune.25 32 0) + (ite lwt.50 1 0) + (ite sqlite3.9 16 0) + (ite ocaml-migrate-parsetree.18 15 0) + (ite ocamlfind.6 15 0) + (ite camlp4.11 21 0) + (ite menhir.29 26 0) + (ite ppx%5fcore.14 2 0) + (ite ppx%5ftools.15 4 0) + (ite jbuilder.18 7 0) + (ite camlp4.13 20 0) + (ite lwt.17 27 0) + (ite ppx%5ftools%5fversioned.8 4 0) + (ite why3-base.10 3 0) + (ite menhir.19 36 0) + (ite lwt.46 4 0) + (ite camlp5.23 8 0) + (ite camlp5.22 9 0) + (ite camlp4.26 7 0) + (ite conf-gmp.2 1 0) + (ite ocaml-migrate-parsetree.13 20 0) + (ite menhir.11 44 0) + (ite ocaml-migrate-parsetree.16 17 0) + (ite alt-ergo-parsers.1 3 0) + (ite ppx%5fast.3 3 0) + (ite cppo.19 3 0) + (ite why3.24 4 0) + (ite dune.41 20 0) + (ite sqlite3.14 11 0) + (ite topkg.3 12 0) + (ite lablgtk.13 2 0) + (ite dune.21 35 0) + (ite dune.48 16 0) + (ite ocaml-secondary-compiler.1 1 0) + (ite ppx%5fenumerate.10 6 0) + (ite dune-configurator.16 6 0) + (ite dune.29 29 0) + (ite menhir.45 11 0) + (ite dune.22 34 0) + (ite ocaml-migrate-parsetree.8 25 0) + (ite zarith.13 1 0) + (ite cppo.6 15 0) + (ite menhirLib.3 7 0) + (ite ocaml-compiler-libs.2 5 0) + (ite ppx%5fast.2 4 0) + (ite camlp5.12 19 0) + (ite menhir.28 27 0) + (ite camlp4.29 4 0) + (ite ocamlfind.10 13 0) + (ite camlp4.32 1 0) + (ite dune.35 24 0) + (ite alt-ergo-parsers.3 1 0) + (ite menhir.53 3 0) + (ite why3-base.6 6 0) + (ite topkg.7 8 0) + (ite lwt.13 30 0) + (ite lwt.35 13 0) + (ite psmt2-frontend.3 1 0) + (ite ocamlfind.17 7 0) + (ite alt-ergo-lib.2 2 0) + (ite camlp5.21 10 0) + (ite camlzip.4 3 0) + (ite sqlite3.16 9 0) + (ite dune.30 28 0) + (ite jbuilder.12 13 0) + (ite camlp5.14 17 0) + (ite lwt.8 35 0) + (ite why3.6 21 0) + (ite conf-pkg-config.2 2 0) + (ite sqlite3.10 15 0) + (ite base.11 10 0) + (ite menhir.6 46 0) + (ite conf-pkg-config.3 1 0) + (ite camlp5.2 29 0) + (ite dune-private-libs.6 12 0) + (ite cppo.12 10 0) + (ite ppx%5ftools.7 12 0) + (ite camlzip.3 4 0) + (ite ocamlgraph.5 5 0) + (ite ocamlfind.5 16 0) + (ite why3.10 18 0) + (ite menhirLib.2 8 0) + (ite ocamlfind.25 1 0) + (ite camlp5.9 22 0) + (ite menhir.42 14 0) + (ite dune-configurator.7 14 0) + (ite sqlite3.8 17 0) + (ite dune.68 3 0) + (ite menhir.26 29 0) + (ite why3.13 15 0) + (ite dune.24 33 0) + (ite cppo.3 18 0) + (ite ocamlfind.14 9 0) + (ite jbuilder.5 20 0) + (ite stdio.11 1 0) + (ite configurator.5 1 0) + (ite sqlite3.18 7 0) + (ite ocaml-migrate-parsetree.17 16 0) + (ite lablgtk.7 8 0) + (ite ocamlfind.7 14 0) + (ite cppo.2 19 0) + (ite octavius.4 2 0) + (ite dune-configurator.3 17 0) + (ite menhir.8 45 0) + (ite ocaml-migrate-parsetree.6 26 0) + (ite camlp5.7 24 0) + (ite lablgtk.6 9 0) + (ite dune.10 42 0) + (ite menhir.54 2 0) + (ite menhirLib.4 6 0) + (ite dune-private-libs.14 4 0) + (ite menhirLib.1 9 0) + (ite why3.23 5 0) + (ite dune-private-libs.7 11 0) + (ite menhir.41 15 0) + (ite dune-configurator.12 9 0) + (ite why3-base.7 5 0) + (ite camlzip.1 6 0) + (ite sexplib0.2 3 0) + (ite menhir.51 5 0) + (ite jbuilder.21 4 0) + (ite menhir.36 20 0) + (ite ppx%5fderivers.1 1 0) + (ite dune-configurator.21 0 2) + (ite dune-configurator.11 10 0) + (ite sexplib.60 4 0) + (ite topkg.11 5 0) + (ite camlp4.23 10 0) + (ite dune-private-libs.8 10 0) + (ite dune.34 25 0) + (ite why3-base.8 4 0) + (ite dune.14 40 0) + (ite why3.16 12 0) + (ite dune-private-libs.4 14 0) + (ite ocamlfind.22 4 0) + (ite zarith.1 11 0) + (ite camlp4.7 25 0) + (ite alt-ergo.6 6 0) + (ite dune.56 11 0) + (ite ocamlbuild.3 5 0) + (ite result.2 4 0) + (ite why3.21 7 0) + (ite ocaml-migrate-parsetree.30 5 0) + (ite ocaml-migrate-parsetree.12 21 0) + (ite ocamlfind.12 11 0) + (ite cppo%5focamlbuild.2 1 0) + (ite cppo.17 5 0) + (ite cppo.13 9 0) + (ite camlzip.6 1 0) + (ite octavius.3 3 0) + (ite ocaml.60 0 12) + (ite sqlite3.23 2 0) + (ite menhirLib.6 4 0) + (ite dune.52 13 0) + (ite zarith.7 5 0) + (ite ppx%5ftools%5fversioned.6 6 0) + (ite psmt2-frontend.1 3 0) + (ite configurator.2 3 0) + (ite jbuilder.16 9 0) + (ite base.7 13 0) + (ite sqlite3.19 6 0) + (ite ocplib-endian.1 7 0) + (ite menhirSdk.1 9 0) + (ite base.18 5 0) + (ite menhir.25 30 0) + (ite camlp5.10 21 0) + (ite lwt.7 36 0) + (ite ocaml-migrate-parsetree.19 14 0) + (ite menhir.32 23 0) + (ite why3.5 22 0) + (ite why3-base.1 11 0) + (ite alt-ergo.7 5 0) + (ite jbuilder.20 5 0) + (ite why3.27 1 0) + (ite ppx%5ftools.3 15 0) + (ite dune.38 22 0) + (ite ppx%5ftools%5fversioned.7 5 0) + (ite lablgtk.3 10 0) + (ite why3.2 25 0) + (ite zarith.2 10 0) + (ite camlp5.11 20 0) + (ite base.9 11 0) + (ite ocamlfind.3 18 0) + (ite camlp5.5 26 0) + (ite zarith.4 8 0) + (ite cppo.20 2 0) + (ite menhir.23 32 0) + (ite camlp4.17 16 0) + (ite lwt.26 18 0) + (ite ocamlfind.4 17 0) + (ite seq.2 3 0) + (ite base.17 6 0) + (ite cppo.5 16 0) + (ite ppx%5ftools.1 17 0) + (ite menhir.17 38 0) + (ite lwt.38 11 0) + (ite why3.3 24 0) + (ite topkg.9 6 0) + (ite topkg.12 4 0) + (ite dune.27 30 0) + (ite dune.20 36 0) + (ite lwt.11 32 0) + (ite ocamlfind.23 3 0) + (ite ocaml-migrate-parsetree.14 19 0) + (ite ocamlgraph.8 2 0) + (ite lwt.16 28 0) + (ite ocplib-endian.3 5 0) + (ite cppo.1 20 0) + (ite menhirSdk.3 7 0) + (ite why3-base.12 1 0) + (ite cppo.18 4 0) + (ite why3.22 6 0) + (ite ocaml-migrate-parsetree.15 18 0) + (ite jbuilder.9 16 0) + (ite lwt.6 37 0) + (ite cppo%5focamlbuild.1 2 0) + (ite ocamlbuild.2 6 0) + (ite sqlite3.11 14 0) + (ite dune-configurator.18 4 0) + (ite camlp4.16 17 0) + (ite camlp4.3 28 0) + (ite menhir.44 12 0) + (ite ocaml-migrate-parsetree.32 3 0) + (ite ppx%5ftools.12 7 0) + (ite conf-gmp.1 2 0) + (ite menhirSdk.9 1 0) + (ite ocamlbuild.7 1 0) + (ite dune-private-libs.9 9 0) + (ite menhir.49 7 0) + (ite camlp4.8 24 0) + (ite camlp4.31 2 0) + (ite jbuilder.15 10 0) + (ite psmt2-frontend.2 2 0) + (ite stdio.7 3 0) + (ite ocplib-endian.2 6 0) + (ite sexplib0.4 2 0) + (ite jbuilder.3 22 0) + (ite sqlite3.12 13 0) + (ite stdio.3 5 0) + (ite alt-ergo-lib.1 3 0) + (ite menhir.30 25 0) + (ite why3.17 11 0) + (ite menhirSdk.4 6 0) + (ite ocamlfind.15 8 0) + (ite ppx%5ftools.2 16 0) + (ite dune.12 41 0) + (ite why3.19 9 0) + (ite camlp5.24 7 0) + (ite lwt.36 12 0) + (ite menhirSdk.2 8 0) + (ite ocamlfind.18 6 0) + (ite ppx%5ftools%5fversioned.11 1 0) + (ite menhirLib.9 1 0) + (ite dune-configurator.6 15 0) + (ite sexplib0.6 1 0) + (ite camlp4.15 18 0) + (ite ppx%5foptcomp.12 6 0) + (ite lwt.47 3 0) + (ite lwt.34 14 0) + (ite base.8 12 0) + (ite camlp4.24 9 0) + (ite lwt.19 25 0) + (ite menhir.37 19 0) + (ite lwt.12 31 0) + (ite dune.57 10 0) + (ite stdio.5 4 0) + (ite cppo.14 8 0) + (ite dune.26 31 0) + (ite lwt.25 19 0) + (ite ocamlfind.21 5 0) + (ite camlp4.20 13 0) + (ite jbuilder.19 6 0) + (ite ocamlfind.13 10 0) + (ite camlp5.15 16 0) + (ite camlp4.22 11 0) + (ite alt-ergo.5 7 0) + (ite menhirLib.5 5 0) + (ite ocaml-migrate-parsetree.28 6 0) + (ite ppx%5fdriver.14 8 0) + (ite lwt.9 34 0) + (ite sexplib.57 6 0) + (ite alt-ergo.8 4 0) + (ite menhir.46 10 0) + (ite sqlite3.17 8 0) + (ite camlp4.28 5 0) + (ite ocaml-migrate-parsetree.4 27 0) + (ite ocaml-migrate-parsetree.3 28 0) + (ite camlp5.8 23 0) + (ite ppx%5ftools.9 10 0) + (ite ppx%5ftools.16 3 0) + (ite sqlite3.22 3 0) + (ite lwt.43 7 0) + (ite ppx%5ftools%5fversioned.5 7 0) + (ite configurator.3 2 0) + (ite jbuilder.24 1 0) + (ite why3-base.2 10 0) + (ite ocaml-migrate-parsetree.33 2 0) + (ite zarith.9 3 0) + (ite why3.11 17 0) + (ite ocamlgraph.4 6 0) + (ite topkg.14 2 0) + (ite alt-ergo-lib.3 1 0) + (ite camlp4.27 6 0) + (ite lwt.23 21 0) + (ite ocamlgraph.7 3 0) + (ite dune-configurator.20 3 0) + (ite cppo.11 11 0) + (ite menhir.34 21 0) + (ite stdio.9 2 0) + (ite camlp4.10 22 0) + (ite lablgtk.14 1 0) + (ite camlp4.25 8 0) + (ite menhirSdk.8 2 0) + (ite ppx%5fcore.12 4 0) + (ite cppo.10 12 0) + (ite why3-base.4 8 0) + (ite base.14 8 0) + (ite why3.25 3 0) + (ite ppx%5ftools.4 14 0) + (ite dune-configurator.10 11 0) + (ite menhir.12 43 0) + (ite camlp5.6 25 0) + (ite lwt.24 20 0) + (ite camlp4.30 3 0) + (ite ocamlgraph.9 1 0) + (ite why3.7 20 0) + (ite camlp5.4 27 0) + (ite menhir.3 48 0) + (ite num.1 5 0) + (ite dune.51 14 0) + (ite ocamlfind.24 2 0))) + +(minimize (+ (ite camlp4.21 1 0) + (ite conf-emacs.1 0 1) + (ite conf-sqlite3.1 1 0) + (ite camlp4.19 1 0) + (ite camlp4.11 1 0) + (ite camlp4.33 1 0) + (ite camlp4.29 1 0) + (ite camlp4.23 1 0) + (ite conf-ncurses.1 1 0) + (ite camlp4.17 1 0) + (ite camlp4.3 1 0) + (ite camlp4.31 1 0) + (ite camlp4.15 1 0) + (ite camlp4.27 1 0) + (ite camlp4.25 1 0))) + +(minimize (+ (ite jbuilder.17 1 0) + (ite num.2 1 0) + (ite jbuilder.14 1 0) + (ite alt-ergo.9 1 0) + (ite ppx%5ftools%5fversioned.10 1 0) + (ite lwt.14 1 0) + (ite camlp5.13 1 0) + (ite num.3 1 0) + (ite lwt.49 1 0) + (ite dune.9 1 0) + (ite sexplib.56 1 0) + (ite menhir.40 1 0) + (ite cppo.7 1 0) + (ite camlp5.19 1 0) + (ite menhir.55 1 0) + (ite camlp4.21 1 0) + (ite lwt.44 1 0) + (ite ppx%5ftools.18 1 0) + (ite result.4 1 0) + (ite lwt.45 1 0) + (ite cppo.15 1 0) + (ite dune-private-libs.13 1 0) + (ite jbuilder.7 1 0) + (ite lwt.40 1 0) + (ite ocaml-migrate-parsetree.26 1 0) + (ite lablgtk.10 1 0) + (ite why3.20 1 0) + (ite dune.69 0 1) + (ite ocamlbuild.8 0 1) + (ite result.6 0 1) + (ite seq.1 1 0) + (ite coq.1 1 0) + (ite lwt.29 1 0) + (ite ocplib-endian.8 1 0) + (ite sexplib.55 1 0) + (ite menhir.38 1 0) + (ite menhir.15 1 0) + (ite result.1 1 0) + (ite base-metaocaml-ocamlfind.1 1 0) + (ite ocamlgraph.6 1 0) + (ite cppo.21 1 0) + (ite csexp.7 1 0) + (ite dose3.5 0 1) + (ite menhir.47 1 0) + (ite ppx%5fbase.2 1 0) + (ite ocplib-simplex.1 1 0) + (ite topkg.8 1 0) + (ite zarith.8 1 0) + (ite menhir.4 1 0) + (ite zarith.12 1 0) + (ite base-bytes.2 0 1) + (ite sqlite3.21 1 0) + (ite menhir.16 1 0) + (ite dune-private-libs.3 1 0) + (ite camlp4.6 1 0) + (ite menhirSdk.7 1 0) + (ite ppx%5fcompare.11 1 0) + (ite dune.42 1 0) + (ite dune.65 1 0) + (ite dune.71 1 0) + (ite conf-zlib.1 0 1) + (ite dune.31 1 0) + (ite dune-configurator.13 1 0) + (ite ocaml-migrate-parsetree.24 1 0) + (ite menhirSdk.5 1 0) + (ite menhir.14 1 0) + (ite lablgtk.12 1 0) + (ite why3-base.11 1 0) + (ite menhir.24 1 0) + (ite why3.26 1 0) + (ite jbuilder.22 1 0) + (ite lablgtk.15 0 1) + (ite why3.18 1 0) + (ite biniou.9 0 1) + (ite base-unix.1 0 1) + (ite ppx%5fdriver.16 1 0) + (ite menhir.20 1 0) + (ite why3.15 1 0) + (ite ocamlbuild.5 1 0) + (ite ocamlbuild.6 1 0) + (ite ocamlfind.26 0 1) + (ite conf-pkg-config.4 0 1) + (ite ppx%5ftools.8 1 0) + (ite ppx%5fhash.2 1 0) + (ite ppx%5ftools%5fversioned.9 1 0) + (ite zarith.5 1 0) + (ite base.13 1 0) + (ite camlp4.2 1 0) + (ite conf-autoconf.1 0 1) + (ite topkg.15 1 0) + (ite lwt.18 1 0) + (ite menhir.31 1 0) + (ite stdio.2 1 0) + (ite cppo.16 1 0) + (ite camlp5.17 1 0) + (ite conf-emacs.1 0 1) + (ite sqlite3.20 1 0) + (ite camlp4.5 1 0) + (ite camlp5.20 1 0) + (ite conf-pkg-config.1 1 0) + (ite alt-ergo-lib.4 0 1) + (ite configurator.7 1 0) + (ite dune.43 1 0) + (ite jbuilder.11 1 0) + (ite seq.3 1 0) + (ite ocamlbuild.1 1 0) + (ite num.5 1 0) + (ite zarith.3 1 0) + (ite dune-private-libs.10 1 0) + (ite ppx%5fjs%5fstyle.2 1 0) + (ite dune.7 1 0) + (ite why3-base.5 1 0) + (ite dune.44 1 0) + (ite ocaml-migrate-parsetree.27 1 0) + (ite sqlite3.25 1 0) + (ite dune-private-libs.11 1 0) + (ite ocaml-migrate-parsetree.10 1 0) + (ite ocplib-endian.7 1 0) + (ite base.24 1 0) + (ite mccs.9 0 1) + (ite ocaml-base-compiler.36 0 1) + (ite lwt.10 1 0) + (ite menhir.43 1 0) + (ite lwt.4 1 0) + (ite ppx%5fsexp%5fconv.14 1 0) + (ite ocplib-simplex.2 0 1) + (ite ocaml-migrate-parsetree.9 1 0) + (ite ocamlbuild.4 1 0) + (ite jbuilder.8 1 0) + (ite dune-configurator.8 1 0) + (ite base-bytes.1 1 0) + (ite zarith.6 1 0) + (ite camlzip.7 0 1) + (ite stdio.13 1 0) + (ite menhir.39 1 0) + (ite jbuilder.10 1 0) + (ite ppx%5ftools.19 1 0) + (ite base.6 1 0) + (ite menhir.21 1 0) + (ite alt-ergo-parsers.4 0 1) + (ite topkg.5 1 0) + (ite ocplib-endian.4 1 0) + (ite why3.12 1 0) + (ite ocaml-migrate-parsetree.21 1 0) + (ite octavius.2 1 0) + (ite alt-ergo.11 1 0) + (ite octavius.6 1 0) + (ite seq.4 1 0) + (ite dune.59 1 0) + (ite ppx%5fmetaquot.2 1 0) + (ite ppx%5ftools.13 1 0) + (ite ppx%5ftype%5fconv.14 1 0) + (ite lablgtk.11 1 0) + (ite menhir.33 1 0) + (ite num.4 1 0) + (ite dune.50 1 0) + (ite why3.1 1 0) + (ite jbuilder.23 1 0) + (ite mmap.1 1 0) + (ite ppx%5ftools.10 1 0) + (ite lwt.32 1 0) + (ite dot-merlin-reader.3 0 1) + (ite ocaml-migrate-parsetree.22 1 0) + (ite topkg.13 1 0) + (ite menhirLib.7 1 0) + (ite menhir.2 1 0) + (ite dune-private-libs.2 1 0) + (ite result.3 1 0) + (ite %3dopam-invariant.1 0 1) + (ite base-no-ppx.1 1 0) + (ite camlp5.3 1 0) + (ite ocaml-migrate-parsetree.11 1 0) + (ite octavius.5 1 0) + (ite alt-ergo.4 1 0) + (ite base.21 1 0) + (ite ocaml-migrate-parsetree.31 1 0) + (ite alt-ergo.3 1 0) + (ite dune.72 1 0) + (ite topkg.6 1 0) + (ite dune.62 1 0) + (ite base-implicits.1 1 0) + (ite conf-findutils.1 1 0) + (ite dune-configurator.2 1 0) + (ite menhirSdk.6 1 0) + (ite ppx%5ftools.11 1 0) + (ite camlp5.18 1 0) + (ite menhir.52 1 0) + (ite lablgtk.8 1 0) + (ite lwt.39 1 0) + (ite menhir.27 1 0) + (ite ppx%5fast.4 1 0) + (ite ppx%5ftools.17 1 0) + (ite dune.19 1 0) + (ite menhir.13 1 0) + (ite dune.16 1 0) + (ite ppx%5ftype%5fconv.13 1 0) + (ite camlp4.9 1 0) + (ite menhirLib.8 1 0) + (ite dune.64 1 0) + (ite dune-configurator.5 1 0) + (ite camlzip.5 1 0) + (ite dune.61 1 0) + (ite dune.3 1 0) + (ite base-num.1 1 0) + (ite octavius.1 1 0) + (ite conf-gmp.3 0 1) + (ite ppx%5ftools.14 1 0) + (ite camlp4.18 1 0) + (ite dune-configurator.14 1 0) + (ite ocaml-migrate-parsetree.20 1 0) + (ite sqlite3.15 1 0) + (ite result.5 1 0) + (ite ocplib-endian.6 1 0) + (ite num.6 0 1) + (ite base.22 1 0) + (ite jbuilder.4 1 0) + (ite ppx%5fdriver.15 1 0) + (ite dune.40 1 0) + (ite ocaml-migrate-parsetree.23 1 0) + (ite base.20 1 0) + (ite dune.17 1 0) + (ite dune-private-libs.5 1 0) + (ite why3-base.3 1 0) + (ite cppo.22 0 1) + (ite dune-configurator.23 1 0) + (ite alt-ergo.2 1 0) + (ite camlp4.14 1 0) + (ite conf-sqlite3.1 1 0) + (ite dune.33 1 0) + (ite camlp5.16 1 0) + (ite menhir.50 1 0) + (ite base.16 1 0) + (ite jbuilder.13 1 0) + (ite topkg.4 1 0) + (ite ppx%5ftools.5 1 0) + (ite sqlite3.13 1 0) + (ite why3.8 1 0) + (ite jbuilder.2 1 0) + (ite sexplib.58 1 0) + (ite camlp4.19 1 0) + (ite dune.4 1 0) + (ite ocamlgraph.12 0 1) + (ite why3.4 1 0) + (ite dune-configurator.17 1 0) + (ite jbuilder.6 1 0) + (ite cppo%5focamlbuild.3 1 0) + (ite menhir.18 1 0) + (ite cppo.4 1 0) + (ite lwt.22 1 0) + (ite alt-ergo.10 1 0) + (ite user-setup.7 0 1) + (ite base.5 1 0) + (ite camlzip.2 1 0) + (ite yojson.18 0 1) + (ite dune.6 1 0) + (ite menhir.22 1 0) + (ite lablgtk.9 1 0) + (ite cppo.8 1 0) + (ite ocamlfind.11 1 0) + (ite dune-configurator.22 1 0) + (ite zarith.14 0 1) + (ite ocaml-config.1 0 1) + (ite dune.54 1 0) + (ite ocaml-secondary-compiler.2 0 1) + (ite alt-ergo-parsers.2 1 0) + (ite lwt.20 1 0) + (ite ppx%5ftraverse%5fbuiltins.2 1 0) + (ite dune-private-libs.12 1 0) + (ite lwt.30 1 0) + (ite ppx%5fcore.13 1 0) + (ite dune.66 1 0) + (ite menhir.48 1 0) + (ite dune.36 1 0) + (ite lwt.41 1 0) + (ite dune-configurator.9 1 0) + (ite why3.14 1 0) + (ite lwt.21 1 0) + (ite dune.25 1 0) + (ite lwt.50 1 0) + (ite sqlite3.9 1 0) + (ite ocaml-migrate-parsetree.18 1 0) + (ite ocamlfind.6 1 0) + (ite camlp4.11 1 0) + (ite menhir.29 1 0) + (ite ppx%5fcore.14 1 0) + (ite ppx%5ftools.15 1 0) + (ite conf-which.1 0 1) + (ite jbuilder.18 1 0) + (ite camlp4.13 1 0) + (ite lwt.17 1 0) + (ite ppx%5ftools%5fversioned.8 1 0) + (ite why3-base.10 1 0) + (ite menhir.19 1 0) + (ite lwt.46 1 0) + (ite camlp5.23 1 0) + (ite camlp5.22 1 0) + (ite camlp4.26 1 0) + (ite conf-gmp.2 1 0) + (ite ocaml-migrate-parsetree.13 1 0) + (ite menhir.11 1 0) + (ite ocaml-migrate-parsetree.16 1 0) + (ite alt-ergo-parsers.1 1 0) + (ite ppx%5fast.3 1 0) + (ite cppo.19 1 0) + (ite why3.24 1 0) + (ite dune.41 1 0) + (ite sqlite3.14 1 0) + (ite camlp4.33 1 0) + (ite topkg.3 1 0) + (ite lablgtk.13 1 0) + (ite base-bigarray.1 0 1) + (ite dune.21 1 0) + (ite dune.48 1 0) + (ite ocaml-secondary-compiler.1 1 0) + (ite ppx%5fenumerate.10 1 0) + (ite ocplib-endian.9 1 0) + (ite dune-configurator.16 1 0) + (ite dune.29 1 0) + (ite menhir.45 1 0) + (ite dune.22 1 0) + (ite ocaml-migrate-parsetree.8 1 0) + (ite zarith.13 1 0) + (ite cppo.6 1 0) + (ite menhirLib.3 1 0) + (ite ocaml-compiler-libs.2 1 0) + (ite merlin.46 0 1) + (ite ppx%5fast.2 1 0) + (ite camlp5.12 1 0) + (ite menhir.28 1 0) + (ite camlp4.29 1 0) + (ite ocamlfind.10 1 0) + (ite camlp4.32 1 0) + (ite dune.35 1 0) + (ite alt-ergo-parsers.3 1 0) + (ite menhir.53 1 0) + (ite why3-base.6 1 0) + (ite topkg.7 1 0) + (ite lwt.13 1 0) + (ite lwt.35 1 0) + (ite psmt2-frontend.3 1 0) + (ite ocamlfind.17 1 0) + (ite alt-ergo-lib.2 1 0) + (ite camlp5.21 1 0) + (ite camlzip.4 1 0) + (ite sqlite3.16 1 0) + (ite dune.30 1 0) + (ite optcomp.3 1 0) + (ite jbuilder.12 1 0) + (ite camlp5.14 1 0) + (ite lwt.8 1 0) + (ite easy-format.7 0 1) + (ite why3.6 1 0) + (ite conf-pkg-config.2 1 0) + (ite sqlite3.10 1 0) + (ite base.11 1 0) + (ite menhir.6 1 0) + (ite z3.10 0 1) + (ite conf-pkg-config.3 1 0) + (ite camlp5.2 1 0) + (ite dune-private-libs.6 1 0) + (ite cppo.12 1 0) + (ite cudf.5 0 1) + (ite ppx%5ftools.7 1 0) + (ite camlzip.3 1 0) + (ite ocamlgraph.5 1 0) + (ite ocamlfind.5 1 0) + (ite why3.10 1 0) + (ite menhirLib.2 1 0) + (ite ocamlfind.25 1 0) + (ite camlp5.9 1 0) + (ite menhir.42 1 0) + (ite dune-configurator.7 1 0) + (ite sqlite3.8 1 0) + (ite dune.68 1 0) + (ite menhir.26 1 0) + (ite why3.13 1 0) + (ite dune.24 1 0) + (ite cppo.3 1 0) + (ite ocamlfind.14 1 0) + (ite jbuilder.5 1 0) + (ite stdio.11 1 0) + (ite configurator.5 1 0) + (ite sqlite3.18 1 0) + (ite ocaml-migrate-parsetree.17 1 0) + (ite lablgtk.7 1 0) + (ite ocamlfind.7 1 0) + (ite cppo.2 1 0) + (ite octavius.4 1 0) + (ite dune-configurator.3 1 0) + (ite menhir.8 1 0) + (ite ocaml-migrate-parsetree.6 1 0) + (ite camlp5.7 1 0) + (ite lablgtk.6 1 0) + (ite dune.10 1 0) + (ite base.25 1 0) + (ite menhir.54 1 0) + (ite menhirLib.4 1 0) + (ite dune-private-libs.14 1 0) + (ite menhirLib.1 1 0) + (ite why3.23 1 0) + (ite sqlite3.26 1 0) + (ite dune-private-libs.7 1 0) + (ite menhir.41 1 0) + (ite dune-configurator.12 1 0) + (ite why3-base.7 1 0) + (ite camlzip.1 1 0) + (ite re.23 0 1) + (ite sexplib0.2 1 0) + (ite ocaml-options-vanilla.1 1 0) + (ite opam-file-format.11 0 1) + (ite ppx%5ftools%5fversioned.12 1 0) + (ite menhir.51 1 0) + (ite jbuilder.21 1 0) + (ite menhir.36 1 0) + (ite ppx%5fderivers.1 1 0) + (ite dune-configurator.21 0 1) + (ite dune-configurator.11 1 0) + (ite sexplib.60 1 0) + (ite conf-gtksourceview.1 1 0) + (ite topkg.11 1 0) + (ite camlp4.23 1 0) + (ite base-ocamlbuild.1 1 0) + (ite csexp.8 0 1) + (ite dune-private-libs.8 1 0) + (ite dune.34 1 0) + (ite why3-base.8 1 0) + (ite dune.14 1 0) + (ite why3.16 1 0) + (ite dune-private-libs.4 1 0) + (ite xenbigarray.1 1 0) + (ite ocamlfind.22 1 0) + (ite zarith.1 1 0) + (ite camlp4.7 1 0) + (ite alt-ergo.6 1 0) + (ite dune.56 1 0) + (ite ocamlbuild.3 1 0) + (ite result.2 1 0) + (ite why3.21 1 0) + (ite ocaml-migrate-parsetree.30 1 0) + (ite ocaml-migrate-parsetree.12 1 0) + (ite ocamlfind.12 1 0) + (ite cppo%5focamlbuild.2 1 0) + (ite cppo.17 1 0) + (ite cppo.13 1 0) + (ite camlzip.6 1 0) + (ite octavius.3 1 0) + (ite ocaml.60 0 1) + (ite sqlite3.23 1 0) + (ite menhirLib.6 1 0) + (ite stdlib-shims.2 0 1) + (ite dune.52 1 0) + (ite zarith.7 1 0) + (ite ppx%5ftools%5fversioned.6 1 0) + (ite psmt2-frontend.1 1 0) + (ite configurator.2 1 0) + (ite jbuilder.16 1 0) + (ite base.7 1 0) + (ite ocp-indent.28 0 1) + (ite sqlite3.19 1 0) + (ite ocplib-endian.1 1 0) + (ite ppx%5fderivers.2 1 0) + (ite conf-ncurses.1 1 0) + (ite cmdliner.14 0 1) + (ite menhirSdk.1 1 0) + (ite jbuilder.25 1 0) + (ite base.18 1 0) + (ite menhir.25 1 0) + (ite camlp5.10 1 0) + (ite lwt.7 1 0) + (ite ocaml-migrate-parsetree.19 1 0) + (ite menhir.32 1 0) + (ite psmt2-frontend.4 0 1) + (ite why3.5 1 0) + (ite why3-base.1 1 0) + (ite alt-ergo.7 1 0) + (ite jbuilder.20 1 0) + (ite why3.27 1 0) + (ite ppx%5ftools.3 1 0) + (ite tuareg.6 0 1) + (ite dune.38 1 0) + (ite ppx%5ftools%5fversioned.7 1 0) + (ite lablgtk.3 1 0) + (ite why3.2 1 0) + (ite zarith.2 1 0) + (ite camlp5.11 1 0) + (ite base.9 1 0) + (ite ocamlfind.3 1 0) + (ite camlp5.5 1 0) + (ite zarith.4 1 0) + (ite why3.28 1 0) + (ite cppo.20 1 0) + (ite menhir.23 1 0) + (ite conf-python-2-7.2 0 1) + (ite camlp4.17 1 0) + (ite lwt.26 1 0) + (ite ocamlfind.4 1 0) + (ite seq.2 1 0) + (ite why3-base.13 1 0) + (ite base.17 1 0) + (ite cppo.5 1 0) + (ite ppx%5ftools.1 1 0) + (ite ocaml-syntax-shims.1 1 0) + (ite menhir.17 1 0) + (ite lwt.38 1 0) + (ite why3.3 1 0) + (ite topkg.9 1 0) + (ite topkg.12 1 0) + (ite dune.27 1 0) + (ite extlib.14 0 1) + (ite seq.5 0 1) + (ite dune.20 1 0) + (ite lwt.11 1 0) + (ite menhirLib.10 0 1) + (ite ocamlfind.23 1 0) + (ite ocaml-migrate-parsetree.14 1 0) + (ite ocamlgraph.8 1 0) + (ite lwt.16 1 0) + (ite ocplib-endian.3 1 0) + (ite cppo.1 1 0) + (ite menhirSdk.3 1 0) + (ite why3-base.12 1 0) + (ite cppo.18 1 0) + (ite why3.22 1 0) + (ite ocaml-migrate-parsetree.15 1 0) + (ite jbuilder.9 1 0) + (ite lwt.6 1 0) + (ite cppo%5focamlbuild.1 1 0) + (ite ocamlbuild.2 1 0) + (ite sqlite3.11 1 0) + (ite dune-configurator.18 1 0) + (ite camlp4.16 1 0) + (ite camlp4.3 1 0) + (ite conf-perl.1 0 1) + (ite menhirSdk.10 0 1) + (ite menhir.44 1 0) + (ite ocaml-migrate-parsetree.32 1 0) + (ite ppx%5ftools.12 1 0) + (ite base-threads.1 0 1) + (ite conf-gmp.1 1 0) + (ite menhirSdk.9 1 0) + (ite topkg.16 1 0) + (ite ocamlbuild.7 1 0) + (ite mmap.2 1 0) + (ite dune-private-libs.9 1 0) + (ite menhir.49 1 0) + (ite camlp4.8 1 0) + (ite camlp4.31 1 0) + (ite jbuilder.15 1 0) + (ite psmt2-frontend.2 1 0) + (ite stdio.7 1 0) + (ite ocplib-endian.2 1 0) + (ite sexplib0.4 1 0) + (ite jbuilder.3 1 0) + (ite sqlite3.12 1 0) + (ite stdio.3 1 0) + (ite alt-ergo-lib.1 1 0) + (ite menhir.30 1 0) + (ite why3.17 1 0) + (ite menhirSdk.4 1 0) + (ite sexplib0.8 1 0) + (ite ocamlfind.15 1 0) + (ite ppx%5ftools.2 1 0) + (ite dune.12 1 0) + (ite why3.19 1 0) + (ite camlp5.24 1 0) + (ite alt-ergo.12 0 1) + (ite conf-gtk2.1 0 1) + (ite lwt.36 1 0) + (ite menhirSdk.2 1 0) + (ite ocamlfind.18 1 0) + (ite ppx%5ftools%5fversioned.11 1 0) + (ite menhirLib.9 1 0) + (ite dune-configurator.6 1 0) + (ite sexplib0.6 1 0) + (ite camlp4.15 1 0) + (ite conf-m4.1 0 1) + (ite ppx%5foptcomp.12 1 0) + (ite lwt.47 1 0) + (ite lwt.34 1 0) + (ite base.8 1 0) + (ite camlp4.24 1 0) + (ite ocamlfind-secondary.1 0 1) + (ite lwt.19 1 0) + (ite menhir.37 1 0) + (ite lwt.12 1 0) + (ite dune.57 1 0) + (ite stdio.5 1 0) + (ite cppo.14 1 0) + (ite dune.26 1 0) + (ite lwt.25 1 0) + (ite ocamlfind.21 1 0) + (ite camlp4.20 1 0) + (ite jbuilder.19 1 0) + (ite ocamlfind.13 1 0) + (ite camlp5.15 1 0) + (ite camlp4.22 1 0) + (ite alt-ergo.5 1 0) + (ite menhirLib.5 1 0) + (ite ocaml-migrate-parsetree.28 1 0) + (ite ppx%5fdriver.14 1 0) + (ite lwt.9 1 0) + (ite sexplib.57 1 0) + (ite alt-ergo.8 1 0) + (ite menhir.46 1 0) + (ite sqlite3.17 1 0) + (ite camlp4.28 1 0) + (ite ocaml-migrate-parsetree.4 1 0) + (ite lwt.51 1 0) + (ite ocaml-migrate-parsetree.3 1 0) + (ite camlp5.8 1 0) + (ite ppx%5ftools.9 1 0) + (ite ppx%5ftools.16 1 0) + (ite sqlite3.22 1 0) + (ite lwt.43 1 0) + (ite ppx%5ftools%5fversioned.5 1 0) + (ite configurator.3 1 0) + (ite menhir.56 0 1) + (ite jbuilder.24 1 0) + (ite why3-base.2 1 0) + (ite ocaml-migrate-parsetree.33 1 0) + (ite zarith.9 1 0) + (ite why3.11 1 0) + (ite ocamlgraph.4 1 0) + (ite topkg.14 1 0) + (ite alt-ergo-lib.3 1 0) + (ite camlp4.27 1 0) + (ite lwt.23 1 0) + (ite ocamlgraph.7 1 0) + (ite dune-configurator.20 1 0) + (ite cppo.11 1 0) + (ite menhir.34 1 0) + (ite stdio.9 1 0) + (ite camlp4.10 1 0) + (ite lablgtk.14 1 0) + (ite camlp4.25 1 0) + (ite menhirSdk.8 1 0) + (ite ppx%5fcore.12 1 0) + (ite cppo.10 1 0) + (ite why3-base.4 1 0) + (ite base.14 1 0) + (ite why3.25 1 0) + (ite ppx%5ftools.4 1 0) + (ite dune-configurator.10 1 0) + (ite menhir.12 1 0) + (ite camlp5.6 1 0) + (ite ocaml-config.2 1 0) + (ite lwt.24 1 0) + (ite camlp4.30 1 0) + (ite ocamlgraph.9 1 0) + (ite why3.7 1 0) + (ite camlp5.4 1 0) + (ite menhir.3 1 0) + (ite num.1 1 0) + (ite dune.51 1 0) + (ite ocamlfind.24 1 0))) diff --git a/examples/optim-examples/opam-optim/unsat.smt2 b/examples/optim-examples/opam-optim/unsat.smt2 new file mode 100644 index 000000000..7c58f7efe --- /dev/null +++ b/examples/optim-examples/opam-optim/unsat.smt2 @@ -0,0 +1,2027 @@ +(set-logic QF_LIA) +(declare-fun %3dopam-invariant.1 () Bool) +(declare-fun ocamlfind.26 () Bool) +(declare-fun ocamlfind.25 () Bool) +(declare-fun ocamlfind.23 () Bool) +(declare-fun ocamlfind.22 () Bool) +(declare-fun ocamlfind.21 () Bool) +(declare-fun ocamlfind.18 () Bool) +(declare-fun ocamlfind.17 () Bool) +(declare-fun ocamlfind.15 () Bool) +(declare-fun ocamlfind.14 () Bool) +(declare-fun ocamlfind.13 () Bool) +(declare-fun ocamlfind.12 () Bool) +(declare-fun ocamlfind.11 () Bool) +(declare-fun ocamlfind.10 () Bool) +(declare-fun ocamlfind.7 () Bool) +(declare-fun ocamlfind.6 () Bool) +(declare-fun ocamlfind.5 () Bool) +(declare-fun ocamlfind.4 () Bool) +(declare-fun ocamlfind.3 () Bool) +(declare-fun ocamlfind.24 () Bool) +(declare-fun conf-m4.1 () Bool) +(declare-fun jbuilder.25 () Bool) +(declare-fun dune.72 () Bool) +(declare-fun dune.71 () Bool) +(declare-fun dune.69 () Bool) +(declare-fun dune.68 () Bool) +(declare-fun dune.66 () Bool) +(declare-fun dune.65 () Bool) +(declare-fun dune.64 () Bool) +(declare-fun dune.62 () Bool) +(declare-fun dune.61 () Bool) +(declare-fun dune.59 () Bool) +(declare-fun dune.57 () Bool) +(declare-fun dune.56 () Bool) +(declare-fun dune.54 () Bool) +(declare-fun dune.52 () Bool) +(declare-fun dune.50 () Bool) +(declare-fun dune.48 () Bool) +(declare-fun dune.44 () Bool) +(declare-fun dune.43 () Bool) +(declare-fun dune.42 () Bool) +(declare-fun dune.41 () Bool) +(declare-fun dune.40 () Bool) +(declare-fun dune.38 () Bool) +(declare-fun dune.36 () Bool) +(declare-fun dune.35 () Bool) +(declare-fun dune.34 () Bool) +(declare-fun dune.33 () Bool) +(declare-fun dune.31 () Bool) +(declare-fun dune.30 () Bool) +(declare-fun dune.29 () Bool) +(declare-fun dune.27 () Bool) +(declare-fun dune.26 () Bool) +(declare-fun dune.25 () Bool) +(declare-fun dune.24 () Bool) +(declare-fun dune.22 () Bool) +(declare-fun dune.21 () Bool) +(declare-fun dune.20 () Bool) +(declare-fun dune.19 () Bool) +(declare-fun dune.17 () Bool) +(declare-fun dune.16 () Bool) +(declare-fun dune.14 () Bool) +(declare-fun dune.12 () Bool) +(declare-fun dune.10 () Bool) +(declare-fun dune.9 () Bool) +(declare-fun dune.7 () Bool) +(declare-fun dune.6 () Bool) +(declare-fun dune.4 () Bool) +(declare-fun dune.3 () Bool) +(declare-fun dune.51 () Bool) +(declare-fun base-threads.1 () Bool) +(declare-fun base-unix.1 () Bool) +(declare-fun ocaml.60 () Bool) +(declare-fun ocamlfind-secondary.1 () Bool) +(declare-fun num.6 () Bool) +(declare-fun num.5 () Bool) +(declare-fun num.4 () Bool) +(declare-fun num.3 () Bool) +(declare-fun num.2 () Bool) +(declare-fun num.1 () Bool) +(declare-fun base-num.1 () Bool) +(declare-fun menhir.56 () Bool) +(declare-fun menhir.55 () Bool) +(declare-fun menhir.54 () Bool) +(declare-fun menhir.53 () Bool) +(declare-fun menhir.52 () Bool) +(declare-fun menhir.51 () Bool) +(declare-fun menhir.50 () Bool) +(declare-fun menhir.49 () Bool) +(declare-fun menhir.48 () Bool) +(declare-fun menhir.47 () Bool) +(declare-fun menhir.46 () Bool) +(declare-fun menhir.45 () Bool) +(declare-fun menhir.44 () Bool) +(declare-fun menhir.43 () Bool) +(declare-fun menhir.42 () Bool) +(declare-fun menhir.41 () Bool) +(declare-fun menhir.40 () Bool) +(declare-fun menhir.39 () Bool) +(declare-fun menhir.38 () Bool) +(declare-fun menhir.37 () Bool) +(declare-fun menhir.36 () Bool) +(declare-fun menhir.34 () Bool) +(declare-fun menhir.33 () Bool) +(declare-fun menhir.32 () Bool) +(declare-fun menhir.31 () Bool) +(declare-fun menhir.30 () Bool) +(declare-fun menhir.29 () Bool) +(declare-fun menhir.28 () Bool) +(declare-fun menhir.27 () Bool) +(declare-fun menhir.26 () Bool) +(declare-fun menhir.25 () Bool) +(declare-fun menhir.24 () Bool) +(declare-fun menhir.23 () Bool) +(declare-fun menhir.22 () Bool) +(declare-fun menhir.21 () Bool) +(declare-fun menhir.20 () Bool) +(declare-fun menhir.19 () Bool) +(declare-fun menhir.18 () Bool) +(declare-fun menhir.17 () Bool) +(declare-fun menhir.16 () Bool) +(declare-fun menhir.15 () Bool) +(declare-fun menhir.14 () Bool) +(declare-fun menhir.13 () Bool) +(declare-fun menhir.12 () Bool) +(declare-fun menhir.11 () Bool) +(declare-fun menhir.8 () Bool) +(declare-fun menhir.6 () Bool) +(declare-fun menhir.4 () Bool) +(declare-fun menhir.2 () Bool) +(declare-fun menhir.3 () Bool) +(declare-fun camlp5.24 () Bool) +(declare-fun camlp5.23 () Bool) +(declare-fun camlp5.22 () Bool) +(declare-fun camlp5.21 () Bool) +(declare-fun camlp5.20 () Bool) +(declare-fun camlp5.19 () Bool) +(declare-fun camlp5.18 () Bool) +(declare-fun camlp5.17 () Bool) +(declare-fun camlp5.16 () Bool) +(declare-fun camlp5.15 () Bool) +(declare-fun camlp5.14 () Bool) +(declare-fun camlp5.13 () Bool) +(declare-fun camlp5.12 () Bool) +(declare-fun camlp5.11 () Bool) +(declare-fun camlp5.10 () Bool) +(declare-fun camlp5.9 () Bool) +(declare-fun camlp5.8 () Bool) +(declare-fun camlp5.7 () Bool) +(declare-fun camlp5.6 () Bool) +(declare-fun camlp5.5 () Bool) +(declare-fun camlp5.3 () Bool) +(declare-fun camlp5.2 () Bool) +(declare-fun camlp5.4 () Bool) +(declare-fun why3.28 () Bool) +(declare-fun why3.27 () Bool) +(declare-fun why3.26 () Bool) +(declare-fun why3.25 () Bool) +(declare-fun why3.24 () Bool) +(declare-fun why3.23 () Bool) +(declare-fun why3.22 () Bool) +(declare-fun why3.21 () Bool) +(declare-fun why3.20 () Bool) +(declare-fun why3.19 () Bool) +(declare-fun why3.18 () Bool) +(declare-fun why3.17 () Bool) +(declare-fun why3.16 () Bool) +(declare-fun why3.15 () Bool) +(declare-fun why3.14 () Bool) +(declare-fun why3.13 () Bool) +(declare-fun why3.12 () Bool) +(declare-fun why3.11 () Bool) +(declare-fun why3.10 () Bool) +(declare-fun why3.8 () Bool) +(declare-fun why3.6 () Bool) +(declare-fun why3.5 () Bool) +(declare-fun why3.4 () Bool) +(declare-fun why3.3 () Bool) +(declare-fun why3.2 () Bool) +(declare-fun why3.1 () Bool) +(declare-fun why3.7 () Bool) +(declare-fun camlzip.7 () Bool) +(declare-fun camlzip.6 () Bool) +(declare-fun camlzip.5 () Bool) +(declare-fun camlzip.4 () Bool) +(declare-fun camlzip.3 () Bool) +(declare-fun camlzip.2 () Bool) +(declare-fun camlzip.1 () Bool) +(declare-fun conf-gtksourceview.1 () Bool) +(declare-fun lablgtk.15 () Bool) +(declare-fun lablgtk.14 () Bool) +(declare-fun lablgtk.13 () Bool) +(declare-fun lablgtk.12 () Bool) +(declare-fun lablgtk.11 () Bool) +(declare-fun lablgtk.10 () Bool) +(declare-fun lablgtk.9 () Bool) +(declare-fun lablgtk.8 () Bool) +(declare-fun lablgtk.7 () Bool) +(declare-fun lablgtk.6 () Bool) +(declare-fun lablgtk.3 () Bool) +(declare-fun ocamlgraph.12 () Bool) +(declare-fun ocamlgraph.9 () Bool) +(declare-fun ocamlgraph.8 () Bool) +(declare-fun ocamlgraph.7 () Bool) +(declare-fun ocamlgraph.6 () Bool) +(declare-fun ocamlgraph.5 () Bool) +(declare-fun ocamlgraph.4 () Bool) +(declare-fun why3-base.1 () Bool) +(declare-fun zarith.14 () Bool) +(declare-fun zarith.13 () Bool) +(declare-fun zarith.12 () Bool) +(declare-fun zarith.9 () Bool) +(declare-fun zarith.8 () Bool) +(declare-fun zarith.7 () Bool) +(declare-fun zarith.6 () Bool) +(declare-fun zarith.5 () Bool) +(declare-fun zarith.4 () Bool) +(declare-fun zarith.3 () Bool) +(declare-fun zarith.2 () Bool) +(declare-fun zarith.1 () Bool) +(declare-fun camlp4.33 () Bool) +(declare-fun camlp4.32 () Bool) +(declare-fun camlp4.31 () Bool) +(declare-fun camlp4.29 () Bool) +(declare-fun camlp4.28 () Bool) +(declare-fun camlp4.27 () Bool) +(declare-fun camlp4.26 () Bool) +(declare-fun camlp4.25 () Bool) +(declare-fun camlp4.24 () Bool) +(declare-fun camlp4.23 () Bool) +(declare-fun camlp4.22 () Bool) +(declare-fun camlp4.21 () Bool) +(declare-fun camlp4.20 () Bool) +(declare-fun camlp4.19 () Bool) +(declare-fun camlp4.18 () Bool) +(declare-fun camlp4.17 () Bool) +(declare-fun camlp4.16 () Bool) +(declare-fun camlp4.15 () Bool) +(declare-fun camlp4.14 () Bool) +(declare-fun camlp4.13 () Bool) +(declare-fun camlp4.11 () Bool) +(declare-fun camlp4.10 () Bool) +(declare-fun camlp4.9 () Bool) +(declare-fun camlp4.8 () Bool) +(declare-fun camlp4.7 () Bool) +(declare-fun camlp4.6 () Bool) +(declare-fun camlp4.5 () Bool) +(declare-fun camlp4.3 () Bool) +(declare-fun camlp4.2 () Bool) +(declare-fun camlp4.30 () Bool) +(declare-fun ocamlbuild.8 () Bool) +(declare-fun ocamlbuild.7 () Bool) +(declare-fun ocamlbuild.6 () Bool) +(declare-fun ocamlbuild.5 () Bool) +(declare-fun ocamlbuild.4 () Bool) +(declare-fun ocamlbuild.3 () Bool) +(declare-fun ocamlbuild.2 () Bool) +(declare-fun ocamlbuild.1 () Bool) +(declare-fun lwt.51 () Bool) +(declare-fun lwt.50 () Bool) +(declare-fun lwt.49 () Bool) +(declare-fun lwt.47 () Bool) +(declare-fun lwt.46 () Bool) +(declare-fun lwt.45 () Bool) +(declare-fun lwt.44 () Bool) +(declare-fun lwt.43 () Bool) +(declare-fun lwt.41 () Bool) +(declare-fun lwt.40 () Bool) +(declare-fun lwt.39 () Bool) +(declare-fun lwt.38 () Bool) +(declare-fun lwt.36 () Bool) +(declare-fun lwt.35 () Bool) +(declare-fun lwt.34 () Bool) +(declare-fun lwt.32 () Bool) +(declare-fun lwt.30 () Bool) +(declare-fun lwt.29 () Bool) +(declare-fun lwt.26 () Bool) +(declare-fun lwt.25 () Bool) +(declare-fun lwt.23 () Bool) +(declare-fun lwt.22 () Bool) +(declare-fun lwt.21 () Bool) +(declare-fun lwt.20 () Bool) +(declare-fun lwt.19 () Bool) +(declare-fun lwt.18 () Bool) +(declare-fun lwt.17 () Bool) +(declare-fun lwt.16 () Bool) +(declare-fun lwt.14 () Bool) +(declare-fun lwt.13 () Bool) +(declare-fun lwt.12 () Bool) +(declare-fun lwt.11 () Bool) +(declare-fun lwt.10 () Bool) +(declare-fun lwt.9 () Bool) +(declare-fun lwt.8 () Bool) +(declare-fun lwt.7 () Bool) +(declare-fun lwt.6 () Bool) +(declare-fun lwt.4 () Bool) +(declare-fun lwt.24 () Bool) +(declare-fun cppo.22 () Bool) +(declare-fun cppo.21 () Bool) +(declare-fun cppo.20 () Bool) +(declare-fun cppo.19 () Bool) +(declare-fun cppo.18 () Bool) +(declare-fun cppo.17 () Bool) +(declare-fun cppo.16 () Bool) +(declare-fun cppo.15 () Bool) +(declare-fun cppo.14 () Bool) +(declare-fun cppo.13 () Bool) +(declare-fun cppo.12 () Bool) +(declare-fun cppo.11 () Bool) +(declare-fun cppo.10 () Bool) +(declare-fun cppo.8 () Bool) +(declare-fun cppo.7 () Bool) +(declare-fun cppo.6 () Bool) +(declare-fun cppo.5 () Bool) +(declare-fun jbuilder.24 () Bool) +(declare-fun jbuilder.23 () Bool) +(declare-fun jbuilder.22 () Bool) +(declare-fun jbuilder.21 () Bool) +(declare-fun jbuilder.20 () Bool) +(declare-fun jbuilder.19 () Bool) +(declare-fun jbuilder.18 () Bool) +(declare-fun jbuilder.17 () Bool) +(declare-fun jbuilder.16 () Bool) +(declare-fun jbuilder.15 () Bool) +(declare-fun jbuilder.14 () Bool) +(declare-fun ocaml-migrate-parsetree.33 () Bool) +(declare-fun ocaml-migrate-parsetree.32 () Bool) +(declare-fun ocaml-migrate-parsetree.31 () Bool) +(declare-fun ocaml-migrate-parsetree.30 () Bool) +(declare-fun ocaml-migrate-parsetree.28 () Bool) +(declare-fun ocaml-migrate-parsetree.27 () Bool) +(declare-fun ocaml-migrate-parsetree.26 () Bool) +(declare-fun ocaml-migrate-parsetree.24 () Bool) +(declare-fun ocaml-migrate-parsetree.23 () Bool) +(declare-fun ocaml-migrate-parsetree.22 () Bool) +(declare-fun ocaml-migrate-parsetree.21 () Bool) +(declare-fun ocaml-migrate-parsetree.20 () Bool) +(declare-fun ocaml-migrate-parsetree.19 () Bool) +(declare-fun ocaml-migrate-parsetree.18 () Bool) +(declare-fun ocaml-migrate-parsetree.17 () Bool) +(declare-fun ocaml-migrate-parsetree.16 () Bool) +(declare-fun ocaml-migrate-parsetree.15 () Bool) +(declare-fun ocaml-migrate-parsetree.14 () Bool) +(declare-fun ocaml-migrate-parsetree.13 () Bool) +(declare-fun ocaml-migrate-parsetree.12 () Bool) +(declare-fun ocaml-migrate-parsetree.11 () Bool) +(declare-fun ocaml-migrate-parsetree.10 () Bool) +(declare-fun ocaml-migrate-parsetree.9 () Bool) +(declare-fun ocaml-migrate-parsetree.8 () Bool) +(declare-fun ocaml-migrate-parsetree.6 () Bool) +(declare-fun ocaml-migrate-parsetree.4 () Bool) +(declare-fun ocaml-migrate-parsetree.3 () Bool) +(declare-fun ppx%5ftools%5fversioned.12 () Bool) +(declare-fun ppx%5ftools%5fversioned.11 () Bool) +(declare-fun ppx%5ftools%5fversioned.10 () Bool) +(declare-fun ppx%5ftools%5fversioned.9 () Bool) +(declare-fun ppx%5ftools%5fversioned.8 () Bool) +(declare-fun ppx%5ftools%5fversioned.7 () Bool) +(declare-fun ppx%5ftools%5fversioned.6 () Bool) +(declare-fun ppx%5ftools%5fversioned.5 () Bool) +(declare-fun result.6 () Bool) +(declare-fun result.5 () Bool) +(declare-fun result.4 () Bool) +(declare-fun result.3 () Bool) +(declare-fun result.2 () Bool) +(declare-fun result.1 () Bool) +(declare-fun ocaml-config.1 () Bool) +(declare-fun ocaml-config.2 () Bool) +(declare-fun dune-configurator.23 () Bool) +(declare-fun dune-configurator.22 () Bool) +(declare-fun dune-configurator.21 () Bool) +(declare-fun dune-configurator.20 () Bool) +(declare-fun dune-configurator.18 () Bool) +(declare-fun dune-configurator.17 () Bool) +(declare-fun dune-configurator.16 () Bool) +(declare-fun dune-configurator.14 () Bool) +(declare-fun dune-configurator.13 () Bool) +(declare-fun dune-configurator.12 () Bool) +(declare-fun dune-configurator.11 () Bool) +(declare-fun dune-configurator.9 () Bool) +(declare-fun dune-configurator.8 () Bool) +(declare-fun dune-configurator.7 () Bool) +(declare-fun dune-configurator.6 () Bool) +(declare-fun dune-configurator.5 () Bool) +(declare-fun dune-configurator.3 () Bool) +(declare-fun dune-configurator.2 () Bool) +(declare-fun dune-configurator.10 () Bool) +(declare-fun dune-private-libs.7 () Bool) +(declare-fun ppx%5ftools.19 () Bool) +(declare-fun ppx%5ftools.18 () Bool) +(declare-fun ppx%5ftools.17 () Bool) +(declare-fun ppx%5ftools.16 () Bool) +(declare-fun ppx%5ftools.15 () Bool) +(declare-fun ppx%5ftools.14 () Bool) +(declare-fun ppx%5ftools.13 () Bool) +(declare-fun ppx%5ftools.12 () Bool) +(declare-fun ppx%5ftools.11 () Bool) +(declare-fun ppx%5ftools.10 () Bool) +(declare-fun ppx%5ftools.9 () Bool) +(declare-fun ppx%5ftools.8 () Bool) +(declare-fun ppx%5ftools.7 () Bool) +(declare-fun ppx%5ftools.5 () Bool) +(declare-fun ppx%5ftools.3 () Bool) +(declare-fun ppx%5ftools.2 () Bool) +(declare-fun ppx%5ftools.1 () Bool) +(declare-fun ppx%5ftools.4 () Bool) +(declare-fun why3-base.13 () Bool) +(declare-fun why3-base.12 () Bool) +(declare-fun why3-base.11 () Bool) +(declare-fun why3-base.10 () Bool) +(declare-fun why3-base.8 () Bool) +(declare-fun why3-base.7 () Bool) +(declare-fun why3-base.6 () Bool) +(declare-fun why3-base.5 () Bool) +(declare-fun why3-base.4 () Bool) +(declare-fun why3-base.3 () Bool) +(declare-fun why3-base.2 () Bool) +(declare-fun base.25 () Bool) +(declare-fun base.24 () Bool) +(declare-fun base.22 () Bool) +(declare-fun base.21 () Bool) +(declare-fun base.20 () Bool) +(declare-fun base.18 () Bool) +(declare-fun base.17 () Bool) +(declare-fun base.16 () Bool) +(declare-fun base.13 () Bool) +(declare-fun base.11 () Bool) +(declare-fun base.9 () Bool) +(declare-fun base.8 () Bool) +(declare-fun base.7 () Bool) +(declare-fun base.6 () Bool) +(declare-fun base.5 () Bool) +(declare-fun base.14 () Bool) +(declare-fun sexplib0.2 () Bool) +(declare-fun coq.1 () Bool) +(declare-fun cppo.4 () Bool) +(declare-fun cppo.3 () Bool) +(declare-fun cppo.2 () Bool) +(declare-fun cppo.1 () Bool) +(declare-fun ppx%5fcore.14 () Bool) +(declare-fun ppx%5fcore.13 () Bool) +(declare-fun ppx%5fcore.12 () Bool) +(declare-fun jbuilder.13 () Bool) +(declare-fun jbuilder.12 () Bool) +(declare-fun jbuilder.11 () Bool) +(declare-fun jbuilder.10 () Bool) +(declare-fun jbuilder.9 () Bool) +(declare-fun jbuilder.8 () Bool) +(declare-fun jbuilder.7 () Bool) +(declare-fun jbuilder.6 () Bool) +(declare-fun jbuilder.5 () Bool) +(declare-fun jbuilder.4 () Bool) +(declare-fun ocaml-compiler-libs.2 () Bool) +(declare-fun ppx%5fast.4 () Bool) +(declare-fun ppx%5fast.3 () Bool) +(declare-fun ppx%5fast.2 () Bool) +(declare-fun ppx%5ftraverse%5fbuiltins.2 () Bool) +(declare-fun stdio.3 () Bool) +(declare-fun stdio.2 () Bool) +(declare-fun menhirSdk.10 () Bool) +(declare-fun menhirSdk.9 () Bool) +(declare-fun menhirSdk.7 () Bool) +(declare-fun menhirSdk.6 () Bool) +(declare-fun menhirSdk.5 () Bool) +(declare-fun menhirSdk.4 () Bool) +(declare-fun menhirSdk.3 () Bool) +(declare-fun menhirSdk.2 () Bool) +(declare-fun menhirSdk.1 () Bool) +(declare-fun menhirSdk.8 () Bool) +(declare-fun conf-gtk2.1 () Bool) +(declare-fun conf-which.1 () Bool) +(declare-fun stdio.13 () Bool) +(declare-fun stdio.11 () Bool) +(declare-fun stdio.7 () Bool) +(declare-fun stdio.5 () Bool) +(declare-fun stdio.9 () Bool) +(declare-fun alt-ergo-lib.4 () Bool) +(declare-fun alt-ergo-lib.2 () Bool) +(declare-fun alt-ergo-lib.1 () Bool) +(declare-fun alt-ergo-lib.3 () Bool) +(declare-fun ocplib-simplex.2 () Bool) +(declare-fun seq.5 () Bool) +(declare-fun seq.4 () Bool) +(declare-fun seq.3 () Bool) +(declare-fun seq.2 () Bool) +(declare-fun seq.1 () Bool) +(declare-fun stdlib-shims.2 () Bool) +(declare-fun topkg.16 () Bool) +(declare-fun topkg.15 () Bool) +(declare-fun topkg.13 () Bool) +(declare-fun topkg.12 () Bool) +(declare-fun topkg.11 () Bool) +(declare-fun topkg.9 () Bool) +(declare-fun topkg.8 () Bool) +(declare-fun topkg.7 () Bool) +(declare-fun topkg.6 () Bool) +(declare-fun topkg.5 () Bool) +(declare-fun topkg.4 () Bool) +(declare-fun topkg.3 () Bool) +(declare-fun topkg.14 () Bool) +(declare-fun conf-gmp.3 () Bool) +(declare-fun conf-gmp.2 () Bool) +(declare-fun conf-gmp.1 () Bool) +(declare-fun conf-perl.1 () Bool) +(declare-fun ppx%5fderivers.2 () Bool) +(declare-fun ppx%5fderivers.1 () Bool) +(declare-fun jbuilder.3 () Bool) +(declare-fun jbuilder.2 () Bool) +(declare-fun menhirLib.10 () Bool) +(declare-fun configurator.7 () Bool) +(declare-fun configurator.5 () Bool) +(declare-fun configurator.2 () Bool) +(declare-fun configurator.3 () Bool) +(declare-fun ppx%5fbase.2 () Bool) +(declare-fun ppx%5fdriver.16 () Bool) +(declare-fun ppx%5fdriver.15 () Bool) +(declare-fun ppx%5fdriver.14 () Bool) +(declare-fun mmap.2 () Bool) +(declare-fun ocplib-endian.9 () Bool) +(declare-fun ocplib-endian.8 () Bool) +(declare-fun ocplib-endian.7 () Bool) +(declare-fun ocplib-endian.6 () Bool) +(declare-fun ocplib-endian.4 () Bool) +(declare-fun ocplib-endian.3 () Bool) +(declare-fun ocplib-endian.2 () Bool) +(declare-fun ocplib-endian.1 () Bool) +(declare-fun sqlite3.26 () Bool) +(declare-fun sqlite3.25 () Bool) +(declare-fun sqlite3.23 () Bool) +(declare-fun sqlite3.21 () Bool) +(declare-fun sqlite3.20 () Bool) +(declare-fun sqlite3.19 () Bool) +(declare-fun sqlite3.18 () Bool) +(declare-fun sqlite3.17 () Bool) +(declare-fun sqlite3.16 () Bool) +(declare-fun sqlite3.15 () Bool) +(declare-fun sqlite3.14 () Bool) +(declare-fun sqlite3.13 () Bool) +(declare-fun sqlite3.12 () Bool) +(declare-fun sqlite3.11 () Bool) +(declare-fun sqlite3.10 () Bool) +(declare-fun sqlite3.9 () Bool) +(declare-fun sqlite3.8 () Bool) +(declare-fun sqlite3.22 () Bool) +(declare-fun conf-sqlite3.1 () Bool) +(declare-fun ocaml-syntax-shims.1 () Bool) +(declare-fun conf-pkg-config.4 () Bool) +(declare-fun conf-pkg-config.3 () Bool) +(declare-fun conf-pkg-config.2 () Bool) +(declare-fun conf-pkg-config.1 () Bool) +(declare-fun alt-ergo.7 () Bool) +(declare-fun alt-ergo.6 () Bool) +(declare-fun alt-ergo.5 () Bool) +(declare-fun alt-ergo.4 () Bool) +(declare-fun alt-ergo.3 () Bool) +(declare-fun alt-ergo.2 () Bool) +(declare-fun alt-ergo.12 () Bool) +(declare-fun alt-ergo.11 () Bool) +(declare-fun alt-ergo.10 () Bool) +(declare-fun alt-ergo.9 () Bool) +(declare-fun alt-ergo.8 () Bool) +(declare-fun conf-autoconf.1 () Bool) +(declare-fun psmt2-frontend.1 () Bool) +(declare-fun sexplib0.8 () Bool) +(declare-fun sexplib0.6 () Bool) +(declare-fun sexplib0.4 () Bool) +(declare-fun sexplib.60 () Bool) +(declare-fun sexplib.58 () Bool) +(declare-fun sexplib.56 () Bool) +(declare-fun sexplib.55 () Bool) +(declare-fun sexplib.57 () Bool) +(declare-fun ppx%5foptcomp.12 () Bool) +(declare-fun menhirLib.9 () Bool) +(declare-fun menhirLib.8 () Bool) +(declare-fun menhirLib.7 () Bool) +(declare-fun menhirLib.6 () Bool) +(declare-fun menhirLib.4 () Bool) +(declare-fun menhirLib.3 () Bool) +(declare-fun menhirLib.2 () Bool) +(declare-fun menhirLib.1 () Bool) +(declare-fun menhirLib.5 () Bool) +(declare-fun ocplib-simplex.1 () Bool) +(declare-fun base-bytes.2 () Bool) +(declare-fun base-bytes.1 () Bool) +(declare-fun conf-ncurses.1 () Bool) +(declare-fun base-no-ppx.1 () Bool) +(declare-fun ocaml-secondary-compiler.2 () Bool) +(declare-fun ocaml-secondary-compiler.1 () Bool) +(declare-fun mmap.1 () Bool) +(declare-fun dune-private-libs.3 () Bool) +(declare-fun alt-ergo-parsers.4 () Bool) +(declare-fun optcomp.3 () Bool) +(declare-fun psmt2-frontend.4 () Bool) +(declare-fun psmt2-frontend.3 () Bool) +(declare-fun psmt2-frontend.2 () Bool) +(declare-fun dune-private-libs.14 () Bool) +(declare-fun dune-private-libs.13 () Bool) +(declare-fun dune-private-libs.12 () Bool) +(declare-fun dune-private-libs.11 () Bool) +(declare-fun dune-private-libs.10 () Bool) +(declare-fun dune-private-libs.8 () Bool) +(declare-fun dune-private-libs.6 () Bool) +(declare-fun dune-private-libs.5 () Bool) +(declare-fun dune-private-libs.4 () Bool) +(declare-fun dune-private-libs.2 () Bool) +(declare-fun dune-private-libs.9 () Bool) +(declare-fun base-ocamlbuild.1 () Bool) +(declare-fun cppo%5focamlbuild.3 () Bool) +(declare-fun cppo%5focamlbuild.2 () Bool) +(declare-fun cppo%5focamlbuild.1 () Bool) +(declare-fun extlib.14 () Bool) +(declare-fun conf-emacs.1 () Bool) +(declare-fun tuareg.6 () Bool) +(declare-fun cmdliner.14 () Bool) +(declare-fun ocp-indent.28 () Bool) +(declare-fun ocaml-base-compiler.36 () Bool) +(declare-fun octavius.6 () Bool) +(declare-fun octavius.5 () Bool) +(declare-fun octavius.4 () Bool) +(declare-fun octavius.2 () Bool) +(declare-fun octavius.1 () Bool) +(declare-fun octavius.3 () Bool) +(declare-fun conf-zlib.1 () Bool) +(declare-fun xenbigarray.1 () Bool) +(declare-fun csexp.7 () Bool) +(declare-fun csexp.8 () Bool) +(declare-fun opam-file-format.11 () Bool) +(declare-fun ocaml-options-vanilla.1 () Bool) +(declare-fun re.23 () Bool) +(declare-fun cudf.5 () Bool) +(declare-fun conf-python-2-7.2 () Bool) +(declare-fun z3.10 () Bool) +(declare-fun easy-format.7 () Bool) +(declare-fun alt-ergo-parsers.2 () Bool) +(declare-fun alt-ergo-parsers.1 () Bool) +(declare-fun alt-ergo-parsers.3 () Bool) +(declare-fun dot-merlin-reader.3 () Bool) +(declare-fun yojson.18 () Bool) +(declare-fun merlin.46 () Bool) +(declare-fun ppx%5fmetaquot.2 () Bool) +(declare-fun ppx%5ftype%5fconv.14 () Bool) +(declare-fun ppx%5ftype%5fconv.13 () Bool) +(declare-fun ppx%5fenumerate.10 () Bool) +(declare-fun biniou.9 () Bool) +(declare-fun user-setup.7 () Bool) +(declare-fun base-implicits.1 () Bool) +(declare-fun ppx%5fsexp%5fconv.14 () Bool) +(declare-fun base-bigarray.1 () Bool) +(declare-fun mccs.9 () Bool) +(declare-fun ppx%5fjs%5fstyle.2 () Bool) +(declare-fun ppx%5fcompare.11 () Bool) +(declare-fun ppx%5fhash.2 () Bool) +(declare-fun dose3.5 () Bool) +(declare-fun base-metaocaml-ocamlfind.1 () Bool) +(declare-fun conf-findutils.1 () Bool) + + + + + + + +(assert (=> lwt.45 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> result.4 (not (or result.1 result.2 result.3 result.5 result.6)))) + +(assert (=> result.4 + (and ocaml.60 + (or jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(assert (=> ppx%5ftools.18 + (not (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.19)))) + +(assert (=> ppx%5ftools.18 + (and false + (or dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> lwt.44 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) + +(assert (=> lwt.44 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> camlp4.21 + (not (or camlp4.2 + camlp4.3 + camlp4.5 + camlp4.6 + camlp4.7 + camlp4.8 + camlp4.9 + camlp4.10 + camlp4.11 + camlp4.13 + camlp4.14 + camlp4.15 + camlp4.16 + camlp4.17 + camlp4.18 + camlp4.19 + camlp4.20 + camlp4.22 + camlp4.23 + camlp4.24 + camlp4.25 + camlp4.26 + camlp4.27 + camlp4.28 + camlp4.29 + camlp4.30 + camlp4.31 + camlp4.32 + camlp4.33)))) + +(assert (=> camlp4.21 (and false false))) + +(assert (=> menhir.55 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.56)))) + +(assert (=> menhir.55 + (and ocaml.60 + menhirSdk.9 + menhirLib.9 + (or dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> camlp5.19 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.13 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) + +(assert (=> camlp5.19 false)) + +(assert (=> cppo.7 + (not (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> cppo.7 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false))) + +(assert (=> menhir.40 + (not (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56)))) + +(assert (=> menhir.40 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + ocaml.60))) + +(assert (=> sexplib.56 + (not (or sexplib.55 + sexplib.57 + sexplib.58 + sexplib.60 + sexplib0.2 + sexplib0.4 + sexplib0.6 + sexplib0.8)))) + +(assert (=> sexplib.56 + (and false + (or num.1 num.2 num.3 num.4 num.5 num.6) + (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11)))) + +(assert (=> dune.9 + (not (or dune.3 + dune.4 + dune.6 + dune.7 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72 + jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24)))) + +(assert (=> dune.9 ocaml.60)) + +(assert (=> lwt.49 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.14 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.50 + lwt.51)))) + +(assert (=> lwt.49 + (and (or seq.1 seq.2 seq.3 seq.4 seq.5) + (or result.1 result.2 result.3 result.4 result.5 result.6) + (or ocplib-endian.1 + ocplib-endian.2 + ocplib-endian.3 + ocplib-endian.4 + ocplib-endian.6 + ocplib-endian.7 + ocplib-endian.8 + ocplib-endian.9) + ocaml.60 + mmap.2 + (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + (or dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + (or cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22)))) + +(assert (=> num.3 (not (or num.1 num.2 num.4 num.5 num.6 base-num.1)))) + +(assert (=> num.3 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) + +(assert (=> camlp5.13 + (not (or camlp5.2 + camlp5.3 + camlp5.4 + camlp5.5 + camlp5.6 + camlp5.7 + camlp5.8 + camlp5.9 + camlp5.10 + camlp5.11 + camlp5.12 + camlp5.14 + camlp5.15 + camlp5.16 + camlp5.17 + camlp5.18 + camlp5.19 + camlp5.20 + camlp5.21 + camlp5.22 + camlp5.23 + camlp5.24)))) + +(assert (=> camlp5.13 false)) + +(assert (=> lwt.14 + (not (or lwt.4 + lwt.6 + lwt.7 + lwt.8 + lwt.9 + lwt.10 + lwt.11 + lwt.12 + lwt.13 + lwt.16 + lwt.17 + lwt.18 + lwt.19 + lwt.20 + lwt.21 + lwt.22 + lwt.23 + lwt.24 + lwt.25 + lwt.26 + lwt.29 + lwt.30 + lwt.32 + lwt.34 + lwt.35 + lwt.36 + lwt.38 + lwt.39 + lwt.40 + lwt.41 + lwt.43 + lwt.44 + lwt.45 + lwt.46 + lwt.47 + lwt.49 + lwt.50 + lwt.51)))) + +(assert (=> lwt.14 + (and (or ppx%5ftools.1 + ppx%5ftools.2 + ppx%5ftools.3 + ppx%5ftools.4 + ppx%5ftools.5 + ppx%5ftools.7 + ppx%5ftools.8 + ppx%5ftools.9 + ppx%5ftools.10 + ppx%5ftools.11 + ppx%5ftools.12 + ppx%5ftools.13 + ppx%5ftools.14 + ppx%5ftools.15 + ppx%5ftools.16 + ppx%5ftools.17 + ppx%5ftools.18 + ppx%5ftools.19 + base-no-ppx.1) + (or ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + false + conf-ncurses.1))) + +(assert (=> ppx%5ftools%5fversioned.10 + (not (or ppx%5ftools%5fversioned.5 + ppx%5ftools%5fversioned.6 + ppx%5ftools%5fversioned.7 + ppx%5ftools%5fversioned.8 + ppx%5ftools%5fversioned.9 + ppx%5ftools%5fversioned.11 + ppx%5ftools%5fversioned.12)))) + +(assert (=> ppx%5ftools%5fversioned.10 + (and (or ocaml-migrate-parsetree.26 + ocaml-migrate-parsetree.27 + ocaml-migrate-parsetree.28 + ocaml-migrate-parsetree.30 + ocaml-migrate-parsetree.31 + ocaml-migrate-parsetree.32 + ocaml-migrate-parsetree.33) + ocaml.60 + (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72)))) + +(assert (=> alt-ergo.9 + (not (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12)))) + +(assert (=> alt-ergo.9 (and ocaml.60 alt-ergo-parsers.1 alt-ergo-lib.1))) + +(assert (=> jbuilder.14 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.15 + jbuilder.16 + jbuilder.17 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(assert (=> jbuilder.14 + (and (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + ocaml.60))) + +(assert (=> num.2 (not (or num.1 num.3 num.4 num.5 num.6 base-num.1)))) + +(assert (=> num.2 + (and (or ocamlfind.23 ocamlfind.24 ocamlfind.25 ocamlfind.26) ocaml.60))) + +(assert (=> jbuilder.17 + (not (or jbuilder.2 + jbuilder.3 + jbuilder.4 + jbuilder.5 + jbuilder.6 + jbuilder.7 + jbuilder.8 + jbuilder.9 + jbuilder.10 + jbuilder.11 + jbuilder.12 + jbuilder.13 + jbuilder.14 + jbuilder.15 + jbuilder.16 + jbuilder.18 + jbuilder.19 + jbuilder.20 + jbuilder.21 + jbuilder.22 + jbuilder.23 + jbuilder.24 + jbuilder.25)))) + +(assert (> 0 (+ (ite (or dune.3 + dune.4 + dune.6 + dune.7 + dune.9 + dune.10 + dune.12 + dune.14 + dune.16 + dune.17 + dune.19 + dune.20 + dune.21 + dune.22 + dune.24 + dune.25 + dune.26 + dune.27 + dune.29 + dune.30 + dune.31 + dune.33 + dune.34 + dune.35 + dune.36 + dune.38 + dune.40 + dune.41 + dune.42 + dune.43 + dune.44 + dune.48 + dune.50 + dune.51 + dune.52 + dune.54 + dune.56 + dune.57 + dune.59 + dune.61 + dune.62 + dune.64 + dune.65 + dune.66 + dune.68 + dune.69 + dune.71 + dune.72) + 0 + 1) + (ite (or ocamlbuild.1 + ocamlbuild.2 + ocamlbuild.3 + ocamlbuild.4 + ocamlbuild.5 + ocamlbuild.6 + ocamlbuild.7 + ocamlbuild.8) + 0 + 1) + (ite (or result.1 result.2 result.3 result.4 result.5 result.6) 0 1) + (ite dose3.5 0 1) + (ite (or base-bytes.1 base-bytes.2) 0 1) + (ite conf-zlib.1 0 1) + (ite (or lablgtk.3 + lablgtk.6 + lablgtk.7 + lablgtk.8 + lablgtk.9 + lablgtk.10 + lablgtk.11 + lablgtk.12 + lablgtk.13 + lablgtk.14 + lablgtk.15) + 0 + 1) + (ite biniou.9 0 1) + (ite base-unix.1 0 1) + (ite (or ocamlfind.3 + ocamlfind.4 + ocamlfind.5 + ocamlfind.6 + ocamlfind.7 + ocamlfind.10 + ocamlfind.11 + ocamlfind.12 + ocamlfind.13 + ocamlfind.14 + ocamlfind.15 + ocamlfind.17 + ocamlfind.18 + ocamlfind.21 + ocamlfind.22 + ocamlfind.23 + ocamlfind.24 + ocamlfind.25 + ocamlfind.26) + 0 + 1) + (ite (or conf-pkg-config.1 + conf-pkg-config.2 + conf-pkg-config.3 + conf-pkg-config.4) + 0 + 1) + (ite conf-autoconf.1 0 1) + (ite conf-emacs.1 0 1) + (ite (or alt-ergo-lib.1 alt-ergo-lib.2 alt-ergo-lib.3 alt-ergo-lib.4) 0 1) + (ite mccs.9 0 1) + (ite ocaml-base-compiler.36 0 1) + (ite (or ocplib-simplex.1 ocplib-simplex.2) 0 1) + (ite (or camlzip.1 + camlzip.2 + camlzip.3 + camlzip.4 + camlzip.5 + camlzip.6 + camlzip.7) + 0 + 1) + (ite (or alt-ergo-parsers.1 + alt-ergo-parsers.2 + alt-ergo-parsers.3 + alt-ergo-parsers.4) + 0 + 1) + (ite dot-merlin-reader.3 0 1) + (ite %3dopam-invariant.1 0 1) + (ite (or conf-gmp.1 conf-gmp.2 conf-gmp.3) 0 1) + (ite (or num.1 num.2 num.3 num.4 num.5 num.6) 0 1) + (ite (or cppo.1 + cppo.2 + cppo.3 + cppo.4 + cppo.5 + cppo.6 + cppo.7 + cppo.8 + cppo.10 + cppo.11 + cppo.12 + cppo.13 + cppo.14 + cppo.15 + cppo.16 + cppo.17 + cppo.18 + cppo.19 + cppo.20 + cppo.21 + cppo.22) + 0 + 1) + (ite (or ocamlgraph.4 + ocamlgraph.5 + ocamlgraph.6 + ocamlgraph.7 + ocamlgraph.8 + ocamlgraph.9 + ocamlgraph.12) + 0 + 1) + (ite user-setup.7 0 1) + (ite yojson.18 0 1) + (ite (or zarith.1 + zarith.2 + zarith.3 + zarith.4 + zarith.5 + zarith.6 + zarith.7 + zarith.8 + zarith.9 + zarith.12 + zarith.13 + zarith.14) + 0 + 1) + (ite (or ocaml-config.1 ocaml-config.2) 0 1) + (ite (or ocaml-secondary-compiler.1 ocaml-secondary-compiler.2) 0 1) + (ite conf-which.1 0 1) + (ite base-bigarray.1 0 1) + (ite merlin.46 0 1) + (ite easy-format.7 0 1) + (ite z3.10 0 1) + (ite cudf.5 0 1) + (ite re.23 0 1) + (ite opam-file-format.11 0 1) + (ite (or dune-configurator.2 + dune-configurator.3 + dune-configurator.5 + dune-configurator.6 + dune-configurator.7 + dune-configurator.8 + dune-configurator.9 + dune-configurator.10 + dune-configurator.11 + dune-configurator.12 + dune-configurator.13 + dune-configurator.14 + dune-configurator.16 + dune-configurator.17 + dune-configurator.18 + dune-configurator.20 + dune-configurator.21 + dune-configurator.22 + dune-configurator.23) + 0 + 1) + (ite (or csexp.7 csexp.8) 0 1) + (ite ocaml.60 0 1) + (ite stdlib-shims.2 0 1) + (ite ocp-indent.28 0 1) + (ite cmdliner.14 0 1) + (ite (or psmt2-frontend.1 psmt2-frontend.2 psmt2-frontend.3 psmt2-frontend.4) + 0 + 1) + (ite tuareg.6 0 1) + (ite conf-python-2-7.2 0 1) + (ite extlib.14 0 1) + (ite (or seq.1 seq.2 seq.3 seq.4 seq.5) 0 1) + (ite (or menhirLib.1 + menhirLib.2 + menhirLib.3 + menhirLib.4 + menhirLib.5 + menhirLib.6 + menhirLib.7 + menhirLib.8 + menhirLib.9 + menhirLib.10) + 0 + 1) + (ite conf-perl.1 0 1) + (ite (or menhirSdk.1 + menhirSdk.2 + menhirSdk.3 + menhirSdk.4 + menhirSdk.5 + menhirSdk.6 + menhirSdk.7 + menhirSdk.8 + menhirSdk.9 + menhirSdk.10) + 0 + 1) + (ite base-threads.1 0 1) + (ite (or alt-ergo.2 + alt-ergo.3 + alt-ergo.4 + alt-ergo.5 + alt-ergo.6 + alt-ergo.7 + alt-ergo.8 + alt-ergo.9 + alt-ergo.10 + alt-ergo.11 + alt-ergo.12) + 0 + 1) + (ite conf-gtk2.1 0 1) + (ite conf-m4.1 0 1) + (ite ocamlfind-secondary.1 0 1) + (ite (or menhir.2 + menhir.3 + menhir.4 + menhir.6 + menhir.8 + menhir.11 + menhir.12 + menhir.13 + menhir.14 + menhir.15 + menhir.16 + menhir.17 + menhir.18 + menhir.19 + menhir.20 + menhir.21 + menhir.22 + menhir.23 + menhir.24 + menhir.25 + menhir.26 + menhir.27 + menhir.28 + menhir.29 + menhir.30 + menhir.31 + menhir.32 + menhir.33 + menhir.34 + menhir.36 + menhir.37 + menhir.38 + menhir.39 + menhir.40 + menhir.41 + menhir.42 + menhir.43 + menhir.44 + menhir.45 + menhir.46 + menhir.47 + menhir.48 + menhir.49 + menhir.50 + menhir.51 + menhir.52 + menhir.53 + menhir.54 + menhir.55 + menhir.56) + 0 + 1))) + ) + +(check-sat) diff --git a/examples/optim-examples/optmization_with_applications.ae b/examples/optim-examples/optmization_with_applications.ae new file mode 100644 index 000000000..da04b69e0 --- /dev/null +++ b/examples/optim-examples/optmization_with_applications.ae @@ -0,0 +1,14 @@ +logic x : int +logic y : int + +logic f : int -> int + +goal g : + +minimize(x,1) -> +maximize(f(y),2) -> +maximize(f(x),4) -> + +x >= 10 -> + f(x) + 2 * x <= 0 -> + f(y) <= 0 -> false diff --git a/examples/optim-examples/pb-unconstrained-variables.ae b/examples/optim-examples/pb-unconstrained-variables.ae new file mode 100644 index 000000000..f5a9a0920 --- /dev/null +++ b/examples/optim-examples/pb-unconstrained-variables.ae @@ -0,0 +1,14 @@ +logic x : int +logic y : int +logic z : int + +(* Here, we don't see that "y" is unbounded. We even don't print any model for it (with or without optimization *) +(** => fixed with the new syntax to provide optimization constraints *) +goal g : +maximize(x,1) -> +minimize(y,2) -> +minimize(z,3) -> + +10 <= x <= 100 -> + 10 <= z <= 100 -> + false diff --git a/examples/optim-examples/petit.ae b/examples/optim-examples/petit.ae new file mode 100644 index 000000000..7092ca94b --- /dev/null +++ b/examples/optim-examples/petit.ae @@ -0,0 +1,13 @@ +logic z : int +logic x : int +logic y : int + +goal g : +minimize(z,1) -> +minimize(y,3) -> +maximize(x,2) -> +(y <= x) -> +(0 <= (y - (3 * z))) -> +(10 <= z) -> +false +(* min(z) = 10, max(x)= +infinity, min(y) not relevant since x doesn't has a max *) \ No newline at end of file diff --git a/examples/optim-examples/petit_2.ae b/examples/optim-examples/petit_2.ae new file mode 100644 index 000000000..9cc5d79b9 --- /dev/null +++ b/examples/optim-examples/petit_2.ae @@ -0,0 +1,16 @@ +logic z : int +logic x : int +logic y : int + +goal g : +minimize(z,1) -> +minimize(x,2) -> +minimize(y,3) -> + +(y <= x) -> +(0 <= (y - (3 * z))) -> +(10 <= z) -> +false +(* min of x is 30, but solving without optmizing returns a model where + x= 35, y = 34 and z = 11 +*) \ No newline at end of file diff --git a/rsc/extra/pre-commit--git-hook b/rsc/extra/pre-commit--git-hook index 675724fc9..f0dbd550e 100755 --- a/rsc/extra/pre-commit--git-hook +++ b/rsc/extra/pre-commit--git-hook @@ -13,7 +13,7 @@ exec 1>&2 # Reindent files using ocp-indent errors=0 -files=$(git diff --cached --name-only --diff-filter=ACMR -z HEAD | grep -Ez '\.ml[ily]?$' | xargs -0) +files=$(git diff --cached --name-only --diff-filter=ACMR -z HEAD | grep -Ez '\.ml[i]?$' | xargs -0) for f in $files; do cmp -s <(git show ":$f") <(git show ":$f" | ocp-indent) if [[ $? -ne 0 ]]; then diff --git a/src/bin/common/parse_command.ml b/src/bin/common/parse_command.ml index 04a2c61b4..ca45cbc87 100644 --- a/src/bin/common/parse_command.ml +++ b/src/bin/common/parse_command.ml @@ -366,8 +366,9 @@ let mk_limit_opt age_bound fm_cross_limit timelimit_interpretation `Ok() let mk_output_opt - interpretation use_underscore unsat_core output_format model_type - () () () + interpretation use_underscore + objectives_in_interpretation all_models show_prop_model + timeout_as_unknown unsat_core output_format model_type () () () = set_infer_output_format (Option.is_none output_format); let output_format = match output_format with @@ -380,6 +381,10 @@ let mk_output_opt in set_interpretation interpretation; set_interpretation_use_underscore use_underscore; + set_objectives_in_interpretation objectives_in_interpretation; + set_all_models all_models; + set_show_prop_model show_prop_model; + set_timeout_as_unknown timeout_as_unknown; set_unsat_core unsat_core; set_output_format output_format; set_model_type model_type; @@ -1032,12 +1037,46 @@ let parse_output_opt = let docv = "VAL" in Arg.(value & flag & info ["interpretation-use-underscore";"use-underscore"] - ~docv ~docs:s_models ~doc ~deprecated) in + ~docv ~docs:s_models ~doc ~deprecated) + in + let objectives_in_interpretation = + let doc = "Inline pretty-printing of optimized expressions in the \ + model instead of a dedicated section '(objectives \ + ...)'. Be aware that a part of the model may be shrunk \ + or not accurate if some expressions to optimize are \ + unbounded." in + let docv = "VAL" in + Arg.(value & flag & info + ["objectives-in-interpretation";"objectives-in-model"; + "obj-in-interpretation";"obj-in-model"] ~docv ~docs ~doc) in + + let all_models = + let doc = "Enable all-models (or all-sat) feature, in which case, \ + all possible boolean models will be explored. If \ + --interpretation is also set, an interpretation for \ + each boolean model will also be displayed. Note that \ + timeouts are set per model/SAT branch in this case." in + let docv = "VAL" in + Arg.(value & flag & info + ["all-models"; "all-sat"] ~docv ~docs ~doc) in + + let show_prop_model = + let doc = "Also show the propositional if a model is requested \ + (with --interpretation or with --all-models options)." in + let docv = "VAL" in + Arg.(value & flag & info + ["show-prop-model"; "show-propositional-model"] ~docv ~docs ~doc) in + + let timeout_as_unknown = + let doc = "Returns unknown status instead of timeout" in + let docv = "VAL" in + Arg.(value & flag & info + ["timeout-as-unknown"; "to-as-unknown"] ~docv ~docs ~doc) in let unsat_core = let doc = "Experimental support for computing and printing unsat-cores." in - Arg.(value & flag & info ["u"; "unsat-core"] ~doc ~docs) in - + Arg.(value & flag & info ["u"; "unsat-core"] ~doc ~docs) + in let output_format = let doc = Format.sprintf @@ -1078,11 +1117,11 @@ let parse_output_opt = in Term.(ret (const mk_output_opt $ - interpretation $ use_underscore $ unsat_core $ - output_format $ model_type $ + interpretation $ use_underscore $ + objectives_in_interpretation $ all_models $ show_prop_model $ + timeout_as_unknown $unsat_core $ output_format $ model_type $ set_dump_models $ set_sat_options $ - set_frontend - )) + set_frontend)) let parse_profiling_opt = diff --git a/src/bin/common/solving_loop.ml b/src/bin/common/solving_loop.ml index 326892135..a0b74b93f 100644 --- a/src/bin/common/solving_loop.ml +++ b/src/bin/common/solving_loop.ml @@ -121,7 +121,7 @@ let main () = | Ty.Cut -> { state with solver_ctx = { state.solver_ctx with local = []}} - | Ty.Thm | Ty.Sat -> + | Ty.Thm | Ty.Sat | Ty.AllSat _ -> { state with solver_ctx = { state.solver_ctx with global = []; local = []}} end @@ -489,7 +489,17 @@ let main () = | {contents = `Get_model; _ } -> if Options.get_interpretation () then match State.get partial_model_key st with - | Some partial_model -> SAT.get_model partial_model; st + | Some partial_model -> + begin + match SAT.get_model partial_model with + | Some (lazy model) -> + Models.output_concrete_model ~pp_prop_model:false + (Options.Output.get_fmt_regular ()) model; + st + | _ -> + (* TODO: is it reachable? *) + st + end | None -> (* TODO: add the location of the statement. *) Printer.print_smtlib_err "No model produced."; diff --git a/src/bin/js/worker_js.ml b/src/bin/js/worker_js.ml index 4442500ec..86cbd643d 100644 --- a/src/bin/js/worker_js.ml +++ b/src/bin/js/worker_js.ml @@ -145,7 +145,107 @@ let main worker_id content = begin match kind with | Ty.Check | Ty.Cut -> { state with local = []; } - | Ty.Thm | Ty.Sat -> { state with global = []; local = []; } + | Ty.Thm | Ty.Sat | Ty.AllSat _ -> + { state with global = []; local = []; } + end + | Typed.TAxiom (_, s, _, _) when Ty.is_global_hyp s -> + let cnf = Cnf.make state.global td in + { state with global = cnf; } + | Typed.TAxiom (_, s, _, _) when Ty.is_local_hyp s -> + let cnf = Cnf.make state.local td in + { state with local = cnf; } + | _ -> + let cnf = Cnf.make state.ctx td in + { state with ctx = cnf; } + in + + let (module I : Input.S) = Input.find (Options.get_frontend ()) in + let parsed () = + try + Options.Time.start (); + I.parse_file ~content ~format:None + with + | Parsing.Parse_error -> + Printer.print_err "%a" Errors.report + (Syntax_error ((Lexing.dummy_pos,Lexing.dummy_pos),"")); + raise Exit + | Errors.Error e -> + begin match e with + | Errors.Run_error r -> begin + match r with + | Steps_limit _ -> + returned_status := + Worker_interface.LimitReached "Steps limit" + | _ -> returned_status := Worker_interface.Error "Run error" + end + | _ -> returned_status := Worker_interface.Error "Error" + end; + Printer.print_err "%a" Errors.report e; + raise Exit + in + let all_used_context = FE.init_all_used_context () in + let assertion_stack = Stack.create () in + let typing_loop state p = + try + let l, env = I.type_parsed state.env assertion_stack p in + List.fold_left (typed_loop all_used_context) { state with env; } l + with Errors.Error e -> + Printer.print_err "%a" Errors.report e; + raise Exit + in + + let state = { + env = I.empty_env; + ctx = []; + local = []; + global = []; + } in + + begin + try let _ : _ state = + Seq.fold_left typing_loop state (parsed ()) in () + with Exit -> () end; + + let get_status_and_print status n = + returned_status := + begin match status with + | FE.Unsat _ -> Worker_interface.Unsat n + | FE.Inconsistent _ -> Worker_interface.Inconsistent n + | FE.Sat _ -> Worker_interface.Sat n + | FE.Unknown _ -> Worker_interface.Unknown n + | FE.Timeout _ -> Worker_interface.LimitReached "timeout" + | FE.Preprocess -> Worker_interface.Unknown n + end; + FE.print_status status n + in + + let solve all_context (cnf, goal_name) = + let used_context = FE.choose_used_context all_context ~goal_name in + let consistent_dep_stack = Stack.create () in + SAT.reset_refs (); + let env = SAT.empty_with_inst add_inst in + let _,_,dep = + List.fold_left + (FE.process_decl + get_status_and_print used_context consistent_dep_stack) + (env, `Unknown env, Explanation.empty) cnf in + + if Options.get_unsat_core () then begin + unsat_core := Explanation.get_unsat_core dep; + end; + in + + let typed_loop all_context state td = + match td.Typed.c with + | Typed.TGoal (_, kind, name, _) -> + let l = state.local @ state.global @ state.ctx in + let cnf = List.rev @@ Cnf.make l td in + let () = solve all_context (cnf, name) in + begin match kind with + | Ty.Check + | Ty.Cut -> { state with local = []; } + | Ty.Thm | Ty.Sat | Ty.AllSat _ -> + { state with global = []; local = []; } end | Typed.TAxiom (_, s, _, _) when Ty.is_global_hyp s -> let cnf = Cnf.make state.global td in @@ -224,13 +324,11 @@ let main worker_id content = end | Some r -> let b,e = r.loc in - (r.name,b.Lexing.pos_lnum,e.Lexing.pos_lnum, - !nb,Worker_interface.Used) + (r.name,b.Lexing.pos_lnum,e.Lexing.pos_lnum,!nb,Worker_interface.Used) :: acc ) tbl [] in - (* returns a records with compatible worker_interface fields *) { Worker_interface.worker_id = worker_id; diff --git a/src/bin/text/main_text.ml b/src/bin/text/main_text.ml index 708c4eef1..2aee75f14 100644 --- a/src/bin/text/main_text.ml +++ b/src/bin/text/main_text.ml @@ -40,6 +40,7 @@ let parse_cmdline () = try Parse_command.parse_cmdline_arguments () with Parse_command.Exit_parse_command i -> exit i + let () = register_input (); parse_cmdline (); diff --git a/src/lib/frontend/frontend.ml b/src/lib/frontend/frontend.ml index cf407df99..90558f997 100644 --- a/src/lib/frontend/frontend.ml +++ b/src/lib/frontend/frontend.ml @@ -154,7 +154,44 @@ module Make(SAT : Sat_solver_sig.S) : S with type sat_env = SAT.t = struct if Options.get_unsat_core () then Ex.singleton (Ex.RootDep {name;f;loc}) else Ex.empty - let process_decl print_status used_context consistent_dep_stack + let timeout_reason_to_string = function + | None -> "(?)" + | Some SAT.NoTimeout -> "NoTimeout" + | Some SAT.Assume -> "Assume" + | Some SAT.ProofSearch -> "ProofSearch" + | Some SAT.ModelGen -> "ModelGen" + + let print_model ?(all_sat=false) model_opt timeout = + let pp_prop_model = all_sat || Options.get_show_prop_model () in + let get_m = Options.get_interpretation () || pp_prop_model in + let s = timeout_reason_to_string timeout in + match model_opt with + | None -> + if get_m then + Printer.print_fmt (Options.Output.get_fmt_diagnostic ()) + "@[It seems that no model has been computed so \ + far. You may need to change your model generation strategy \ + or to increase your timeouts. Returned timeout reason = %s@]" s + + | Some m -> + assert (get_m); + if get_m then + Printer.print_fmt + (Options.Output.get_fmt_diagnostic ()) + "@[; Returned timeout reason = %s@]" s; + let m = Lazy.force m in + Models.output_concrete_model ~pp_prop_model + (Options.Output.get_fmt_regular ()) m + + let filter_by_all_sat propositional filter = + if filter == E.Set.empty then propositional + else + E.Set.filter + (fun t -> + E.Set.mem t filter || E.Set.mem (E.neg t) filter + )propositional + + let rec process_decl print_status used_context consistent_dep_stack ((env, consistent, dep) as acc) d = try match d.st_decl with @@ -246,8 +283,10 @@ module Make(SAT : Sat_solver_sig.S) : S with type sat_env = SAT.t = struct (* This case should mainly occur when a query has a non-unsat result, so we want to print the status in this case. *) print_status (Sat (d,t)) (Steps.get_steps ()); - (*if get_model () then SAT.print_model ~header:true (get_fmt_mdl ()) t;*) - env, `Sat t, dep + process_unknown + print_status used_context consistent_dep_stack + env dep d SAT.NoTimeout + | SAT.Unsat dep' -> (* This case should mainly occur when a new assumption results in an unsat env, in which case we do not want to print status, since the correct @@ -255,20 +294,120 @@ module Make(SAT : Sat_solver_sig.S) : S with type sat_env = SAT.t = struct let dep = Ex.union dep dep' in if get_debug_unsat_core () then check_produced_unsat_core dep; (* print_status (Inconsistent d) (Steps.get_steps ()); *) - env, `Unsat, dep - | SAT.I_dont_know t -> - (* In this case, it's not clear whether we want to print the status. - Instead, it'd be better to accumulate in `consistent` a 3-case adt - and not a simple bool. *) - print_status (Unknown (d, t)) (Steps.get_steps ()); - (*if get_model () then SAT.print_model ~header:true (get_fmt_mdl ()) t;*) - env, `Unknown t, dep + env , `Unsat, dep + | SAT.I_dont_know {env; timeout} -> + (* TODO: always print Unknown for why3 ? *) + let status = + if timeout != NoTimeout && (not (get_timeout_as_unknwon ())) then + (Timeout (Some d)) + else (Unknown (d, env)) + in + print_status status (Steps.get_steps ()); + process_unknown + print_status used_context consistent_dep_stack + env dep d timeout + | Util.Timeout as e -> - (* In this case, we obviously want to print the status, - since we exit right after *) - print_status (Timeout (Some d)) (Steps.get_steps ()); + print_status ( + if get_timeout_as_unknwon () then + (Unknown (d, env)) + else Timeout (Some d)) + (Steps.get_steps ()); + (* dont call 'process_unknown' in this case. Timeout stops + all-models listing *) + print_model (SAT.get_model env) None; raise e + and process_unknown + print_status used_context consistent_dep_stack env dep d timeout_kind = + match d.st_decl with + | Assume _ | PredDef _ | RwtDef _ | Push _ | Pop _ | ThAssume _-> + (* cannot raise Sat or Unknown in this case *) + assert false + + | Query (n, _, sort) -> + (* 1. check if we are in all-sat mode, and build the filter + that'll be applied on the boolean model *) + let all_sat_mode = + match sort with + | AllSat l -> + (* 1.A SMT command check-all-sat *) + Some (List.fold_left + (fun acc s -> + (*transform string to propositional vars (E.t)*) + let t = E.mk_term (Symbols.name s) [] Ty.Tbool in + E.Set.add t acc + )E.Set.empty l) + + | Thm | Sat -> + (* 1.B if user rather set option --all-models: empty + filter. Otherwise, all_sat_mode = None *) + if Options.get_all_models () then Some E.Set.empty + else None + + | Cut | Check -> + (* 1.3 all_sat_mode = None for cut and check *) + None + in + let m = match SAT.get_model env with + | None -> + if all_sat_mode != None then + (* all-sat enabled but interpretation disabled. No timeout + here! Return a model with just the propositional part + *) + Some (lazy { + Models.propositional = SAT.get_propositional_model env; + constants = ModelMap.empty; + functions = ModelMap.empty; + arrays = ModelMap.empty; + objectives = Util.MI.empty; + terms_values = Expr.Map.empty + }) + else + None + | Some _ as md -> md + in + match m, all_sat_mode with + | Some m, Some filter -> + (* 1. case where all-bool-models wrt. given filter is + requested *) + let m = Lazy.force m in + let propositional = filter_by_all_sat m.propositional filter in + let m = { m with propositional } in + print_model ~all_sat:true (Some (lazy m)) (Some timeout_kind); + (* we build the conjunction that corresponds to the current + filtered model *) + let f = + Expr.Set.fold + (fun e acc -> E.mk_and e acc false) propositional E.vrai + in + if E.equal f E.vrai then + begin + (* this may happen if current propositional model is empty + (for instance, in case of timeout and no model computed + so far). We should stop to avoid infinite loop *) + if timeout_kind != NoTimeout then raise Util.Timeout; + (* TODO: is it the appropriate status? *) + env , `Unknown env, dep + end + else + (* we negate and propagate the current filtered boolean model + to force the SAT to explore other branches *) + let d = { d with st_decl = Query (n, E.neg f, sort) } in + (* re-set timelimit *) + Options.Time.set_timeout (Options.get_timelimit ()); + let env = SAT.reset_last_saved_model env in + process_decl + print_status used_context consistent_dep_stack + (env, `Unknown env, dep) d + + | _ -> + (* 2. default case + case where a simple interpretation is + requested *) + print_model m (Some timeout_kind); + (* TODO: is it the appropriate status? *) + env , `Unknown env, dep + let print_status status steps = let check_status_consistency s = let known_status = get_status () in @@ -331,23 +470,34 @@ module Make(SAT : Sat_solver_sig.S) : S with type sat_env = SAT.t = struct (Some loc) (Some time) (Some steps) (get_goal_name d); | Timeout (Some d) -> - let loc = d.st_loc in - Printer.print_status_timeout ~validity_mode - (Some loc) (Some time) (Some steps) (get_goal_name d); + if Options.get_interpretation () && + Options.get_output_format () == Why3 then begin + Printer.print_wrn "Timeout"; + let loc = d.st_loc in + Printer.print_status_unknown ~validity_mode + (Some loc) (Some time) (Some steps) (get_goal_name d); + end + else + let loc = d.st_loc in + Printer.print_status_timeout ~validity_mode + (Some loc) (Some time) (Some steps) (get_goal_name d); | Timeout None -> - Printer.print_status_timeout ~validity_mode - None (Some time) (Some steps) None; + if Options.get_interpretation () && + Options.get_output_format () == Why3 then begin + Printer.print_wrn "Timeout"; + Printer.print_status_unknown ~validity_mode + None (Some time) (Some steps) None; + end + else + Printer.print_status_timeout ~validity_mode + None (Some time) (Some steps) None; | Preprocess -> Printer.print_status_preprocess ~validity_mode (Some time) (Some steps) - - - - let init_with_replay_used acc f = assert (Sys.file_exists f); let cin = open_in f in diff --git a/src/lib/frontend/models.ml b/src/lib/frontend/models.ml index 7f4ffcec8..cd16d55cf 100644 --- a/src/lib/frontend/models.ml +++ b/src/lib/frontend/models.ml @@ -45,6 +45,24 @@ module MX = Shostak.MXH let constraints = ref MS.empty +type objective_value = + | Obj_pinfty + | Obj_minfty + | Obj_val of string + | Obj_unk + +type t = { + propositional : Expr.Set.t; + constants : ModelMap.t; + functions : ModelMap.t; + arrays : ModelMap.t; + objectives : (Expr.t * objective_value) Util.MI.t; + terms_values : (X.r * string) ME.t (* a map from terms to their values + in the model (as a + representative of type X.r and + as a string *) +} + module Pp_smtlib_term = struct let to_string_type t = @@ -304,7 +322,7 @@ module SmtlibCounterExample = struct add_record_constr records rep r xs_values | _ -> records - let print_fun_def fmt name args ty t = + let print_fun_def ~is_array fmt name args ty t = let print_args fmt (ty,name) = Format.fprintf fmt "(%s %a)" name Ty.pp_smtlib ty in let defined_value = @@ -315,7 +333,8 @@ module SmtlibCounterExample = struct in Format.fprintf fmt - "@ (@[define-fun %a (%a) %a@ %t)@]" + "@ (@[define-%s %a (%a) %a@ %t)@]" + (if is_array then "array" else "fun") Sy.print name (Printer.pp_list_space (print_args)) args Ty.pp_smtlib ty @@ -335,11 +354,12 @@ module SmtlibCounterExample = struct | _ -> dprintf "%a" pp rep in - print_fun_def fmt f [] ty rep - | _ -> assert false) + print_fun_def ~is_array:false fmt f [] ty rep + | _ -> assert false + ) - let output_functions_counterexample pp fmt records fprofs = - let records = ref records in + let output_functions_counterexample ?(is_array=false) pp fmt records fprofs = + let records = ref records in ModelMap.iter (fun (f, xs_ty, ty) st -> let xs_ty_named = List.mapi (fun i ty -> @@ -412,19 +432,50 @@ module SmtlibCounterExample = struct because they could be record accessors that must be added to the `records` reference *) match f with - | Sy.Name (_, _, false) -> print_fun_def fmt f xs_ty_named ty rep + | Sy.Name (_, _, false) -> + print_fun_def ~is_array fmt f xs_ty_named ty rep | _ -> () ) fprofs; !records + + let output_arrays_counterexample pp fmt arrays = + let _records = output_functions_counterexample + ~is_array:true pp fmt MS.empty arrays in + () + + let output_objectives fmt objectives = + (* TODO: we can decide to print objectives to stderr if + Options.get_objectives_in_interpretation() is enabled *) + if not (Options.get_objectives_in_interpretation()) && + not (Util.MI.is_empty objectives) + then begin + Format.fprintf fmt "@[; (objectives"; + Util.MI.iter + (fun _i (e, x) -> + Format.fprintf fmt "@ ; (%a %a)" + E.print e + (fun fmt () -> + match x with + | Obj_pinfty -> Format.fprintf fmt "+oo" + | Obj_minfty -> Format.fprintf fmt "-oo" + | Obj_val s -> Format.fprintf fmt "%s" s + | Obj_unk -> Format.fprintf fmt "; (interval -oo +oo)" + ) () + )objectives; + Printer.print_fmt fmt "@]@ ; )" + end + end (* of module SmtlibCounterExample *) module Why3CounterExample = struct let output_constraints fmt prop_model = - let assertions = SE.fold (fun e acc -> - (dprintf "%t(assert %a)@ " acc SmtlibCounterExample.pp_term e) - ) prop_model (dprintf "") in + let assertions = + SE.fold (fun e acc -> + (dprintf "%t;(assert %a)@ " acc SmtlibCounterExample.pp_term e) + ) prop_model (dprintf "") + in Format.fprintf fmt "@ ; constraints@ "; MS.iter (fun _ (name,ty,args_ty) -> match args_ty with @@ -477,55 +528,58 @@ let rec pp_value ppk ppf = function let pp_constant ppf (_sy, t) = Fmt.pf ppf "%a" SmtlibCounterExample.pp_abstract_value_of_type t -let output_concrete_model fmt props ~functions ~constants ~arrays = - if ModelMap.(is_suspicious functions || is_suspicious constants - || is_suspicious arrays) then - Format.fprintf fmt "; This model is a best-effort. It includes symbols - for which model generation is known to be incomplete. @."; - - Format.fprintf fmt "@[("; - if Options.get_model_type_constraints () then - begin - Why3CounterExample.output_constraints fmt props; - Format.fprintf fmt "@ ; values" - end; - - let values = Hashtbl.create 17 in - (* Add the constants *) - ModelMap.iter (fun (f, xs_ty, _) st -> - assert (Lists.is_empty xs_ty); - - ModelMap.V.iter (fun (keys, (value_r, value_s)) -> - assert (Lists.is_empty keys); - Hashtbl.add values f (value (value_r, value_s))) - st) constants; - - (* Add the arrays values, when applicable *) - ModelMap.iter (fun (f, xs_ty, ty) st -> - let root = - try Hashtbl.find values f - with Not_found -> Constant (f, Tfarray (List.hd xs_ty, ty)) - in - Hashtbl.replace values f @@ - ModelMap.V.fold (fun (keys, rs) acc -> - Store (acc, value (snd (List.hd keys)), value rs)) - st root) - arrays; - - let pp_value = - pp_value (fun ppf (sy, _) -> - pp_value pp_constant ppf (Hashtbl.find values sy)) - in - - let pp_x ppf xs = pp_value ppf (value xs) in - - (* Functions *) - let records = SmtlibCounterExample.output_functions_counterexample - pp_x fmt MS.empty functions - in - - (* Constants *) - SmtlibCounterExample.output_constants_counterexample - pp_x fmt records constants; - - Printer.print_fmt fmt "@]@,)"; +let output_concrete_model ~pp_prop_model:_ fmt m = + if Options.get_interpretation () then begin + (* TODO: does we need to check also m.propositional ? *) + if ModelMap.(is_suspicious m.functions || is_suspicious m.constants + || is_suspicious m.arrays) then + Format.fprintf fmt "; This model is a best-effort. It includes symbols + for which model generation is known to be incomplete. @."; + + Format.fprintf fmt "@[("; + Why3CounterExample.output_constraints fmt m.propositional; + + let values = Hashtbl.create 17 in + (* Add the constants *) + ModelMap.iter (fun (f, xs_ty, _) st -> + assert (Lists.is_empty xs_ty); + ModelMap.V.iter (fun (keys, (value_r, value_s)) -> + assert (Lists.is_empty keys); + Hashtbl.add values f (value (value_r, value_s)) + ) st + ) m.constants; + + (* Add the arrays values, when applicable *) + ModelMap.iter (fun (f, xs_ty, ty) st -> + let root = + try Hashtbl.find values f + with Not_found -> Constant (f, Tfarray (List.hd xs_ty, ty)) + in + Hashtbl.replace values f @@ + ModelMap.V.fold (fun (keys, rs) acc -> + Store (acc, value (snd (List.hd keys)), value rs)) st root + ) m.arrays; + + let pp_value = + pp_value (fun ppf (sy, _) -> + pp_value pp_constant ppf (Hashtbl.find values sy)) + in + + let pp_x ppf xs = pp_value ppf (value xs) in + + (* Functions *) + let records = + SmtlibCounterExample.output_functions_counterexample + ~is_array:false pp_x fmt MS.empty m.functions + in + + (* Constants *) + SmtlibCounterExample.output_constants_counterexample + pp_x fmt records m.constants; + + (* Arrays *) + SmtlibCounterExample.output_arrays_counterexample pp_x fmt m.arrays; + + Printer.print_fmt fmt "@]@,)"; + SmtlibCounterExample.output_objectives fmt m.objectives + end diff --git a/src/lib/frontend/models.mli b/src/lib/frontend/models.mli index dcbe944a3..b86e36701 100644 --- a/src/lib/frontend/models.mli +++ b/src/lib/frontend/models.mli @@ -30,16 +30,28 @@ (** {1 Models module} *) +type objective_value = + | Obj_pinfty + | Obj_minfty + | Obj_val of string + | Obj_unk + +type t = { + propositional : Expr.Set.t; + constants : ModelMap.t; + functions : ModelMap.t; + arrays : ModelMap.t; + objectives : (Expr.t * objective_value) Util.MI.t; + + terms_values : (Shostak.Combine.r * string) Expr.Map.t + (* a map from terms to their values in the model (as a + representative of type X.r and as a string *) +} + (** Print the given counterexample on the given formatter with the - corresponding format set with Options.get_output_format. - - functions: the functions of the model; - - constants: the variables of the model; - - arrays: (experimental) the arrays of the model. -*) + corresponding format setted with Options.get_output_format. *) val output_concrete_model : + pp_prop_model:bool -> Format.formatter -> - Expr.Set.t -> - functions:ModelMap.t -> - constants:ModelMap.t -> - arrays:ModelMap.t -> + t -> unit diff --git a/src/lib/frontend/parsed_interface.ml b/src/lib/frontend/parsed_interface.ml index 8e831e4b5..379006877 100644 --- a/src/lib/frontend/parsed_interface.ml +++ b/src/lib/frontend/parsed_interface.ml @@ -92,6 +92,9 @@ let mk_goal loc name expr = let mk_check_sat loc name expr = Check_sat (loc, name, expr) +let mk_check_all_sat loc name llexpr = + Check_all_sat (loc, name, llexpr) + (** Declaration of theories, generic axioms and rewriting rules **) let mk_theory loc name ext expr = @@ -334,3 +337,9 @@ let mk_algebraic_test loc expr cstr = let mk_algebraic_project loc ~guarded expr cstr = mk_localized loc (PPproject (guarded, expr, cstr)) + +let mk_maximize loc expr order = + mk_localized loc (PPoptimize {order; expr; is_max = true}) + +let mk_minimize loc expr order = + mk_localized loc (PPoptimize {order; expr; is_max = false}) diff --git a/src/lib/frontend/parsed_interface.mli b/src/lib/frontend/parsed_interface.mli index 3b1f965a1..8b8e38c6b 100644 --- a/src/lib/frontend/parsed_interface.mli +++ b/src/lib/frontend/parsed_interface.mli @@ -79,6 +79,8 @@ val mk_goal : Loc.t -> string -> lexpr -> decl val mk_check_sat : Loc.t -> string -> lexpr -> decl +val mk_check_all_sat : Loc.t -> string -> string list -> decl + (** Declaration of theories, generic axioms and rewriting rules **) val mk_theory : Loc.t -> string -> string -> decl list -> decl @@ -255,3 +257,7 @@ val mk_match : Loc.t -> lexpr -> (pattern * lexpr) list -> lexpr val mk_algebraic_test : Loc.t -> lexpr -> string -> lexpr val mk_algebraic_project : Loc.t -> guarded:bool -> lexpr -> string -> lexpr + +val mk_maximize: Loc.t -> lexpr -> string -> lexpr + +val mk_minimize: Loc.t -> lexpr -> string -> lexpr diff --git a/src/lib/frontend/typechecker.ml b/src/lib/frontend/typechecker.ml index 7caf6d2c4..4853b15ba 100644 --- a/src/lib/frontend/typechecker.ml +++ b/src/lib/frontend/typechecker.ml @@ -1394,6 +1394,20 @@ and type_form ?(in_theory=false) env f = check_pattern_matching missing dead f.pp_loc; TFmatch (e, filtered_pats) + | PPoptimize {expr; order; is_max} -> + Options.tool_req 1 "TR-Typing-Optmize$_F$"; + let e = type_term env expr in + let order = + try int_of_string order + with _ -> Errors.typing_error (ShouldBeIntLiteral order) f.pp_loc + in + let term = TTapp(Symbols.Op (Symbols.Optimize {order; is_max}), [e]) in + let t1 = { + c = {tt_desc=term; tt_ty=Ty.Tbool}; + annot=new_id (); } + in + TFatom { c = TApred (t1, false); annot=new_id () } + | _ -> let te1 = type_term env f in let ty = te1.c.tt_ty in @@ -1662,6 +1676,8 @@ let rec no_alpha_renaming_b ((up, m) as s) f = | PPproject (_, e, _) -> no_alpha_renaming_b s e + | PPoptimize {expr; order=_; is_max=_} -> + no_alpha_renaming_b s expr let rec alpha_renaming_b ((up, m) as s) f = match f.pp_desc with @@ -1920,6 +1936,11 @@ let rec alpha_renaming_b ((up, m) as s) f = if f1 == ff1 then f else {f with pp_desc = PPisConstr(ff1, a)} + | PPoptimize {expr; order; is_max} -> + let e' = alpha_renaming_b s expr in + if expr == e' then f + else {f with pp_desc = PPoptimize {expr=e'; order; is_max}} + let alpha_renaming_b s f = try no_alpha_renaming_b s f; f @@ -2213,6 +2234,7 @@ let type_one_th_decl env e = | Rewriting(loc, _, _) | Goal(loc, _, _) | Check_sat(loc, _, _) + | Check_all_sat(loc, _, _) | Predicate_def(loc,_,_,_) | Function_def(loc,_,_,_,_) | MutRecDefs ((loc,_,_,_,_) :: _) @@ -2370,12 +2392,10 @@ let type_user_defined_type_body ~is_recursive env acc (loc, ls, s, body) = let declare_fun env loc n ?(defined=false) ?ret_ty l = check_duplicate_params l; let infix, ty = - let l = List.map (fun (_,_,x) -> x) l in + let l = List.map (fun (_ ,_ , x) -> x) l in match ret_ty with - | None | Some PPTbool -> - PPiff, PPredicate l - | Some ty -> - PPeq, PFunction(l,ty) + | None | Some PPTbool -> PPiff, PPredicate l + | Some ty -> PPeq, PFunction(l,ty) in let mk_symb hs = Symbols.name hs ~defined ~kind:Symbols.Other in let tlogic, env = Env.add_logics env mk_symb [n] ty loc in (* TODO *) @@ -2503,6 +2523,14 @@ let rec type_decl (acc, env) d assertion_stack = | Function_def(loc,n,l,ret_ty,e) -> type_fun (acc, env) loc n l ~ret_ty e + | Check_all_sat(loc, n, l) -> + Options.tool_req 1 "TR-Typing-CheckAllSatDecl$_F$"; + let f = { pp_loc = loc; pp_desc = PPconst ConstFalse} in + List.iter (fun s -> + ignore (type_form env {pp_desc = PPapp(s,[]); pp_loc = loc}) + ) l; + type_and_intro_goal acc env (AllSat l) n f, env + | TypeDecl [] -> assert false diff --git a/src/lib/reasoners/ac.ml b/src/lib/reasoners/ac.ml index e9bdf4bb9..c23a4d6a0 100644 --- a/src/lib/reasoners/ac.ml +++ b/src/lib/reasoners/ac.ml @@ -75,6 +75,10 @@ module type S = sig val abstract_selectors : t -> (r * r) list -> r * (r * r) list val compact : (r * int) list -> (r * int) list + + val assign_value : + r -> r list -> (Expr.t * r) list -> (Expr.t * bool) option + end module Make (X : Sig.X) = struct @@ -300,10 +304,55 @@ module Make (X : Sig.X) = struct let xac = X.ac_embed {ac with l = compact args} in xac, acc - (* Ne suffit pas. Il faut aussi prevoir le collapse ? *) - (*try List.assoc xac acc, acc - with Not_found -> - let v = X.term_embed (Expr.fresh_name ac.t) in - v, (xac, v) :: acc*) - + let assign_value _r _distincts _eq = + None + (* Models Gen for AC symbols is not done yet. The code below would + work, but the way models are currently generated makes the result + of 'assign_value' not visible in the printed models, because we + inspect the 'make : Expr.t -> X.r' to extract the + model. Unfortunately, some AC expressions introduced by the AC(X) + algorithm don't have their corresponding terms and don't appear + in the 'make' map *) + + (* + let is_fresh (r, _) = + match X.term_extract r with + | Some t, true -> Expr.is_fresh t + | _ -> false + + let assign_value = + let cache = ref Ty.Map.empty in + let module SX = Set.Make(struct type t=r let compare = X.hash_cmp end) in + let exception Found of Expr.t in + fun r distincts eq -> + if List.exists (fun (t,(_:r)) -> Expr.const_term t) eq then + None + else + (*match X.ac_extract r with + | None -> assert false + | Some ac -> + if List.for_all is_fresh ac.Sig.l then None + else*) begin + let ty = X.type_info r in + let q = ref (Queue.create ()) in + try + let qc = Ty.Map.find ty !cache in + let sdist = + List.fold_left (fun s r -> SX.add r s) SX.empty distincts in + Queue.iter + (fun (kt, kx) -> + if not (SX.mem kx sdist) then raise (Found kt) + )qc; + q := qc; + raise Not_found + with + | Found kt -> + Some (kt , true) + | Not_found -> + let fresh = Expr.fresh_name ty in + Queue.push (fresh, X.term_embed fresh) !q; + cache := Ty.Map.add ty !q !cache; + Some (fresh , false) + end +*) end diff --git a/src/lib/reasoners/ac.mli b/src/lib/reasoners/ac.mli index 10811bb7a..8ae80ccb7 100644 --- a/src/lib/reasoners/ac.mli +++ b/src/lib/reasoners/ac.mli @@ -73,6 +73,9 @@ module type S = sig val compact : (r * int) list -> (r * int) list + val assign_value : + r -> r list -> (Expr.t * r) list -> (Expr.t * bool) option + end module Make (X : Sig.X) : S with type r = X.r diff --git a/src/lib/reasoners/adt_rel.ml b/src/lib/reasoners/adt_rel.ml index bba93eae2..f48c4728d 100644 --- a/src/lib/reasoners/adt_rel.ml +++ b/src/lib/reasoners/adt_rel.ml @@ -387,7 +387,7 @@ let count_splits env la = List.fold_left (fun nb (_,_,_,i) -> match i with - | Th_util.CS (Th_util.Th_sum, n) -> Numbers.Q.mult nb n + | Th_util.CS (_, Th_util.Th_sum, n) -> Numbers.Q.mult nb n | _ -> nb )env.size_splits la in @@ -682,8 +682,11 @@ let assume env uf la = let two = Numbers.Q.from_int 2 -let case_split env _ ~for_model = - if Options.get_disable_adts () || not (Options.get_enable_adts_cs()) then [] +let case_split env _ ~for_model ~to_optimize = + if to_optimize != None || Options.get_disable_adts () || + not (Options.get_enable_adts_cs()) + then + Sig_rel.Split [] else begin assert (not for_model); @@ -700,10 +703,10 @@ let case_split env _ ~for_model = "found hs = %a" Hs.print hs; (* cs on negative version would be better in general *) let cs = LR.mkv_builtin false (Sy.IsConstr hs) [r] in - [ cs, true, Th_util.CS(Th_util.Th_adt, two) ] + Sig_rel.Split [ cs, true, Th_util.CS(None, Th_util.Th_adt, two) ] with Not_found -> Debug.no_case_split (); - [] + Sig_rel.Split [] end let query env uf (ra, _, ex, _) = diff --git a/src/lib/reasoners/arith.ml b/src/lib/reasoners/arith.ml index 92b7a4398..ed8323355 100644 --- a/src/lib/reasoners/arith.ml +++ b/src/lib/reasoners/arith.ml @@ -843,7 +843,12 @@ module Shostak | [] -> (* We do this, because terms of some semantic values created by CS are not created and added to UF *) - assert (P.is_const (embed r) != None); + if (P.is_const (embed r) == None) then begin + Printer.print_dbg + ~module_name:"Arith" ~function_name:"choose_adequate_model" + "no adequate model found for %a" X.print r; + assert false + end; r | (_,r)::l -> diff --git a/src/lib/reasoners/arrays_rel.ml b/src/lib/reasoners/arrays_rel.ml index 5622ce62e..98b8314e8 100644 --- a/src/lib/reasoners/arrays_rel.ml +++ b/src/lib/reasoners/arrays_rel.ml @@ -384,24 +384,28 @@ let new_equalities env eqs la class_of = (* choisir une egalite sur laquelle on fait un case-split *) let two = Numbers.Q.from_int 2 -let case_split env _ ~for_model:_ = +let case_split env _ ~for_model:_ ~to_optimize = (*if Numbers.Q.compare (Numbers.Q.mult two env.size_splits) (max_split ()) <= 0 || Numbers.Q.sign (max_split ()) < 0 then*) - try - let a = LR.neg (LRset.choose env.split) in - Debug.case_split a; - [LR.view a, true, Th_util.CS (Th_util.Th_arrays, two)] - with Not_found -> - Debug.case_split_none (); - [] + if to_optimize != None then + (* no classical splits if we have something to optimize *) + Sig_rel.Split [] + else + try + let a = LR.neg (LRset.choose env.split) in + Debug.case_split a; + Sig_rel.Split [LR.view a, true, Th_util.CS (None, Th_util.Th_arrays, two)] + with Not_found -> + Debug.case_split_none (); + Sig_rel.Split [] let count_splits env la = let nb = List.fold_left (fun nb (_,_,_,i) -> match i with - | Th_util.CS (Th_util.Th_arrays, n) -> Numbers.Q.mult nb n + | Th_util.CS (_, Th_util.Th_arrays, n) -> Numbers.Q.mult nb n | _ -> nb )env.size_splits la in diff --git a/src/lib/reasoners/bitv_rel.ml b/src/lib/reasoners/bitv_rel.ml index b390ba936..84f16dd6a 100644 --- a/src/lib/reasoners/bitv_rel.ml +++ b/src/lib/reasoners/bitv_rel.ml @@ -34,7 +34,7 @@ let empty _ = () let assume _ _ _ = (), { Sig_rel.assume = []; remove = []} let query _ _ _ = None -let case_split _ _ ~for_model:_ = [] +let case_split _ _ ~for_model:_ ~to_optimize:_ = Sig_rel.Split [] let add env _ _ _ = env, [] let new_terms _ = Expr.Set.empty let instantiate ~do_syntactic_matching:_ _ env _ _ = env, [] diff --git a/src/lib/reasoners/ccx.ml b/src/lib/reasoners/ccx.ml index 11cbabc15..2be3c5e74 100644 --- a/src/lib/reasoners/ccx.ml +++ b/src/lib/reasoners/ccx.ml @@ -68,7 +68,8 @@ module type S = sig val case_split : t -> for_model:bool -> - (r Xliteral.view * bool * Th_util.lit_origin) list * t + to_optimize: Th_util.optimized_split option -> + Sig_rel.case_split * t val query : t -> E.t -> Th_util.answer val new_terms : t -> Expr.Set.t val class_of : t -> Expr.t -> Expr.Set.t @@ -85,11 +86,12 @@ module type S = sig Matching_types.info Expr.Map.t * Expr.t list Expr.Map.t Symbols.Map.t -> t -> (Expr.t -> Expr.t -> bool) -> t * Sig_rel.instances - val output_concrete_model : - Format.formatter -> + val extract_concrete_model : prop_model:Expr.Set.t -> + optimized_splits:Th_util.optimized_split Util.MI.t -> t -> - unit + Models.t Lazy.t option + end module Main : S = struct @@ -688,14 +690,16 @@ module Main : S = struct (* End: new implementation of add, add_term, assume_literals and all that *) - let case_split env ~for_model = - match Rel.case_split env.relation env.uf ~for_model with - | [] when for_model -> + let case_split env ~for_model ~to_optimize = + let cs = Rel.case_split env.relation env.uf ~for_model ~to_optimize in + match cs with + | Sig_rel.Split [] when for_model -> let l, uf = Uf.assign_next env.uf in (* try to not to modify uf in the future. It's currently done only to add fresh terms in UF to avoid loops *) - l, {env with uf} - | l -> l, env + Sig_rel.Split l, {env with uf} + | Sig_rel.Split _ -> cs, env + | Sig_rel.Optimized_split _ -> cs, env let query env a = let ra, ex_ra = term_canonical_view env a Ex.empty in @@ -738,7 +742,7 @@ module Main : S = struct in Uf.term_repr env.uf t - let output_concrete_model fmt ~prop_model env = - Uf.output_concrete_model fmt ~prop_model env.uf + let extract_concrete_model ~prop_model ~optimized_splits env = + Uf.extract_concrete_model ~prop_model ~optimized_splits env.uf end diff --git a/src/lib/reasoners/ccx.mli b/src/lib/reasoners/ccx.mli index c49af116e..d6622f050 100644 --- a/src/lib/reasoners/ccx.mli +++ b/src/lib/reasoners/ccx.mli @@ -60,7 +60,8 @@ module type S = sig val case_split : t -> for_model:bool -> - (r Xliteral.view * bool * Th_util.lit_origin) list * t + to_optimize: Th_util.optimized_split option -> + Sig_rel.case_split * t val query : t -> Expr.t -> Th_util.answer val new_terms : t -> Expr.Set.t val class_of : t -> Expr.t -> Expr.Set.t @@ -76,11 +77,11 @@ module type S = sig Matching_types.info Expr.Map.t * Expr.t list Expr.Map.t Symbols.Map.t -> t -> (Expr.t -> Expr.t -> bool) -> t * Sig_rel.instances - val output_concrete_model : - Format.formatter -> + val extract_concrete_model : prop_model:Expr.Set.t -> + optimized_splits:Th_util.optimized_split Util.MI.t -> t -> - unit + Models.t Lazy.t option end module Main : S diff --git a/src/lib/reasoners/enum_rel.ml b/src/lib/reasoners/enum_rel.ml index 55544da10..a2829850d 100644 --- a/src/lib/reasoners/enum_rel.ml +++ b/src/lib/reasoners/enum_rel.ml @@ -189,7 +189,7 @@ let count_splits env la = List.fold_left (fun nb (_,_,_,i) -> match i with - | Th_util.CS (Th_util.Th_sum, n) -> Numbers.Q.mult nb n + | Th_util.CS (_, Th_util.Th_sum, n) -> Numbers.Q.mult nb n | _ -> nb )env.size_splits la in @@ -244,33 +244,40 @@ let assume env uf la = let add env _ r _ = add_aux env r, [] -let case_split env uf ~for_model = - let acc = MX.fold - (fun r (hss, _) acc -> - let x, _ = Uf.find_r uf r in - match Sh.embed x with - | Cons _ -> acc (* already bound to an Enum const *) - | _ -> (* cs even if sz below is equal to 1 *) - let sz = HSS.cardinal hss in - match acc with - | Some (n,_,_) when n <= sz -> acc - | _ -> Some (sz, r, HSS.choose hss) - ) env.mx None - in - match acc with - | Some (n,r,hs) -> - let n = Numbers.Q.from_int n in - if for_model || - Numbers.Q.compare - (Numbers.Q.mult n env.size_splits) (Options.get_max_split ()) <= 0 || - Numbers.Q.sign (Options.get_max_split ()) < 0 then - let r' = Sh.is_mine (Cons(hs,X.type_info r)) in - Debug.case_split r r'; - [LR.mkv_eq r r', true, Th_util.CS(Th_util.Th_sum, n)] - else [] - | None -> - Debug.no_case_split (); - [] +let case_split env uf ~for_model ~to_optimize = + if to_optimize != None then + (* no classical splits if we have something to optimize *) + Sig_rel.Split [] + else + let acc = MX.fold + (fun r (hss, _) acc -> + let x, _ = Uf.find_r uf r in + match Sh.embed x with + | Cons _ -> acc (* already bound to an Enum const *) + | _ -> (* cs even if sz below is equal to 1 *) + let sz = HSS.cardinal hss in + match acc with + | Some (n,_,_) when n <= sz -> acc + | _ -> Some (sz, r, HSS.choose hss) + ) env.mx None + in + match acc with + | Some (n,r,hs) -> + let n = Numbers.Q.from_int n in + if for_model || + Numbers.Q.compare + (Numbers.Q.mult n env.size_splits) (Options.get_max_split ()) <= 0 + || Numbers.Q.sign (Options.get_max_split ()) < 0 + then + let r' = Sh.is_mine (Cons(hs,X.type_info r)) in + Debug.case_split r r'; + Sig_rel.Split + [LR.mkv_eq r r', true, Th_util.CS (None, Th_util.Th_sum, n)] + else + Sig_rel.Split [] + | None -> + Debug.no_case_split (); + Sig_rel.Split [] let query env uf a_ex = try ignore(assume env uf [a_ex]); None diff --git a/src/lib/reasoners/fun_sat.ml b/src/lib/reasoners/fun_sat.ml index fb2cfb874..036c94162 100644 --- a/src/lib/reasoners/fun_sat.ml +++ b/src/lib/reasoners/fun_sat.ml @@ -171,18 +171,14 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct unit_tbox : Th.t; (* theory env of facts at level 0 *) inst : Inst.t; heuristics : Heuristics.t ref; - model_gen_mode : bool ref; + model_gen_phase : bool ref; guards : guards; add_inst: E.t -> bool; unit_facts_cache : (E.gformula * Ex.t) ME.t ref; + last_saved_model : Models.t Lazy.t option ref; } - let latest_saved_env = ref None - let terminated_normally = ref false - let reset_refs () = - latest_saved_env := None; - terminated_normally := false; Steps.reset_steps () let save_guard_and_refs env new_guard = @@ -196,9 +192,15 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct { env with unit_facts_cache = ref refs.unit_facts}, guard + type timeout_reason = + | NoTimeout + | Assume + | ProofSearch + | ModelGen + exception Sat of t - exception Unsat of Ex.t - exception I_dont_know of t + exception Unsat of Explanation.t + exception I_dont_know of { env : t; timeout : timeout_reason } exception IUnsat of Ex.t * SE.t list @@ -437,22 +439,6 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct env.heuristics := Heuristics.bump_activity !(env.heuristics) expl; raise (IUnsat (expl, classes)) - let is_literal f = - match E.form_view f with - | E.Literal _ -> true - | E.Unit _ | E.Clause _ | E.Lemma _ | E.Skolem _ - | E.Let _ | E.Iff _ | E.Xor _ -> false - - let extract_prop_model ~complete_model t = - let s = ref SE.empty in - ME.iter - (fun f _ -> - if complete_model && is_literal f then - s := SE.add f !s - ) - t.gamma; - !s - (* sat-solver *) let mk_gf f name mf gf = @@ -626,22 +612,20 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct )(Ex.formulas_of exp) let do_case_split env origin = - if Options.get_case_split_policy () == origin then - try - if Options.get_debug_sat () then - Printer.print_dbg - ~module_name:"Fun_sat" ~function_name:"do_case_split" - "performing case-split"; - let tbox, new_terms = Th.do_case_split env.tbox in - let inst = - Inst.add_terms env.inst new_terms (mk_gf E.vrai "" false false) in - {env with tbox = tbox; inst = inst} - with Ex.Inconsistent (expl, classes) -> - Debug.inconsistent expl env; - Options.tool_req 2 "TR-Sat-Conflict-2"; - env.heuristics := Heuristics.bump_activity !(env.heuristics) expl; - raise (IUnsat (expl, classes)) - else env + try + if Options.get_debug_sat () then + Printer.print_dbg + ~module_name:"Fun_sat" ~function_name:"do_case_split" + "performing case-split"; + let tbox, new_terms = Th.do_case_split env.tbox origin in + let inst = + Inst.add_terms env.inst new_terms (mk_gf E.vrai "" false false) in + {env with tbox = tbox; inst = inst} + with Ex.Inconsistent (expl, classes) -> + Debug.inconsistent expl env; + Options.tool_req 2 "TR-Sat-Conflict-2"; + env.heuristics := Heuristics.bump_activity !(env.heuristics) expl; + raise (IUnsat (expl, classes)) let b_elim f env = try @@ -1133,21 +1117,17 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct ignore (update_instances_cache (Some [])); env, true - let compute_concrete_model env compute = + let may_update_last_saved_model env compute = let compute = - if Options.get_first_interpretation () then - match !latest_saved_env with - | Some _ -> false - | None -> true - else compute + if not (Options.get_first_interpretation ()) then compute + else !(env.last_saved_model) == None in if not compute then env else begin try - (* to push pending stuff *) - let env = do_case_split env (Options.get_case_split_policy ()) in - let env = {env with tbox = Th.compute_concrete_model env.tbox} in - latest_saved_env := Some env; + (* also performs case-split and pushes pending atoms to CS *) + let model = Th.compute_concrete_model env.tbox in + env.last_saved_model := model; env with Ex.Inconsistent (expl, classes) -> Debug.inconsistent expl env; @@ -1156,69 +1136,34 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct raise (IUnsat (expl, classes)) end - let return_cached_model return_function = - let i = Options.get_interpretation () in - assert i; - assert (not !terminated_normally); - terminated_normally := true; (* to avoid loops *) - begin - match !latest_saved_env with - | None -> - Printer.print_wrn - "[FunSat]@, @[\ - It seems that no model has been computed so far.@,\ - You may need to change your model generation strategy@,\ - or to increase your timeout.@]" - | Some env -> - Printer.print_wrn - "[FunSat]@, @[\ - A model has been computed. However, I failed \ - while computing it so may be incorrect.@]"; - let prop_model = extract_prop_model ~complete_model:true env in - Th.output_concrete_model (Options.Output.get_fmt_regular ()) ~prop_model - env.tbox; - end; - return_function () - - (* let () = - * at_exit - * (fun () -> - * if not !terminated_normally && (get_interpretation ()) then - * return_cached_model (fun () -> ()) - * ) *) - - let return_answer env compute return_function = - let env = compute_concrete_model env compute in - Options.Time.unset_timeout (); - - let prop_model = extract_prop_model ~complete_model:true env in - if Options.(get_interpretation () && get_dump_models ()) then - Th.output_concrete_model (Options.Output.get_fmt_regular ()) ~prop_model - env.tbox; - - terminated_normally := true; - return_function env - - - let switch_to_model_gen env = - not !terminated_normally && - not !(env.model_gen_mode) && - Options.get_interpretation () - - - let do_switch_to_model_gen env = + let update_model_and_return_unknown env compute_model ~timeout = + try + let env = may_update_last_saved_model env compute_model in + Options.Time.unset_timeout (); + raise (I_dont_know {env; timeout }) + with Util.Timeout when !(env.model_gen_phase) -> + (* In this case, timeout reason becomes 'ModelGen' *) + raise (I_dont_know {env; timeout = ModelGen }) + + let model_gen_on_timeout env = let i = Options.get_interpretation () in - assert i; - if not !(env.model_gen_mode) && - Stdlib.(<>) (Options.get_timelimit_interpretation ()) 0. then + let ti = Options.get_timelimit_interpretation () in + if not i || (* not asked to gen a model *) + !(env.model_gen_phase) || (* we timeouted in model-gen-phase *) + Stdlib.(=) ti 0. (* no time allocated for extra model search *) + then + raise (I_dont_know {env; timeout = ProofSearch}) + else begin + (* Beware: models generated on timeout of ProofSearch phase may + be incohrent wrt. the ground part of the pb (ie. if delta + is not empty ? *) + env.model_gen_phase := true; Options.Time.unset_timeout (); - Options.Time.set_timeout (Options.get_timelimit_interpretation ()); - env.model_gen_mode := true; - return_answer env i (fun _ -> raise Util.Timeout) + Options.Time.set_timeout ti; + update_model_and_return_unknown + env i ~timeout:ProofSearch (* may becomes ModelGen *) end - else - return_cached_model (fun () -> raise Util.Timeout) let reduce_hypotheses tcp_cache tmp_cache env acc (hyp, gf, dep) = Debug.print_theory_instance hyp gf; @@ -1326,12 +1271,14 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct let greedy_instantiation env = match Options.get_instantiation_heuristic () with | INormal -> + (* TODO: check if this test still produces a wrong model. *) (* S: This seems spurious! On example UFDT/20170428-Barrett/cdt-cade2015/data/gandl/cotree/ x2015_09_10_16_49_52_978_1009894.smt_in.smt2, this returns a wrong model. *) - return_answer env (Options.get_last_interpretation ()) - (fun e -> raise (I_dont_know e)) + update_model_and_return_unknown + env (Options.get_last_interpretation ()) + ~timeout:NoTimeout (* may becomes ModelGen *) | IAuto | IGreedy -> let gre_inst = ME.fold @@ -1357,37 +1304,33 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct let env = do_case_split env Util.AfterMatching in if ok1 || ok2 || ok3 || ok4 then env else - return_answer env (Options.get_last_interpretation ()) - (fun e -> raise (I_dont_know e)) + update_model_and_return_unknown + env (Options.get_last_interpretation ()) + ~timeout:NoTimeout (* may becomes ModelGen *) let normal_instantiation env try_greedy = - try - Debug.print_nb_related env; - let env = do_case_split env Util.BeforeMatching in - let env = compute_concrete_model env - (Options.get_every_interpretation ()) - in - let env = new_inst_level env in - let mconf = - {Util.nb_triggers = Options.get_nb_triggers (); - no_ematching = Options.get_no_ematching(); - triggers_var = Options.get_triggers_var (); - use_cs = false; - backward = Util.Normal; - greedy = Options.get_greedy (); - } - in - let env, ok1 = inst_and_assume mconf env inst_predicates env.inst in - let env, ok2 = inst_and_assume mconf env inst_lemmas env.inst in - let env, ok3 = syntactic_th_inst env env.inst ~rm_clauses:false in - let env, ok4 = semantic_th_inst env env.inst ~rm_clauses:false ~loop:4 in - let env = do_case_split env Util.AfterMatching in - if ok1 || ok2 || ok3 || ok4 then env - else if try_greedy then greedy_instantiation env else env - with | Util.Not_implemented s -> - Printer.print_err "Feature %s is not implemented. \ - I can't conclude." s; - raise (I_dont_know env) + Debug.print_nb_related env; + let env = do_case_split env Util.BeforeMatching in + let env = + may_update_last_saved_model env (Options.get_every_interpretation ()) + in + let env = new_inst_level env in + let mconf = + {Util.nb_triggers = Options.get_nb_triggers (); + no_ematching = Options.get_no_ematching(); + triggers_var = Options.get_triggers_var (); + use_cs = false; + backward = Util.Normal; + greedy = Options.get_greedy (); + } + in + let env, ok1 = inst_and_assume mconf env inst_predicates env.inst in + let env, ok2 = inst_and_assume mconf env inst_lemmas env.inst in + let env, ok3 = syntactic_th_inst env env.inst ~rm_clauses:false in + let env, ok4 = semantic_th_inst env env.inst ~rm_clauses:false ~loop:4 in + let env = do_case_split env Util.AfterMatching in + if ok1 || ok2 || ok3 || ok4 then env + else if try_greedy then greedy_instantiation env else env (* should be merged with do_bcp/red/elim ? calls to debug hooks are missing *) @@ -1475,7 +1418,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct with No_suitable_decision -> back_tracking (normal_instantiation env true) with - | Util.Timeout when switch_to_model_gen env -> do_switch_to_model_gen env + | Util.Timeout -> model_gen_on_timeout env and make_one_decision env = try @@ -1713,9 +1656,8 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct (mk_gf (E.neg guard_to_neg) "" true true,Ex.empty) acc.guards.guards in - acc.model_gen_mode := false; - latest_saved_env := None; - terminated_normally := false; + acc.model_gen_phase := false; + env.last_saved_model := None; {acc with inst; guards = { acc.guards with @@ -1726,7 +1668,21 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct ~elt:() ~init:env + (* in case of all-models and/or call to solver with old + unbacktracked decisions *) + let check_no_decision_in_env env = + if env.dlevel > 0 then + Errors.run_error + (Errors.Unsupported_feature + "Some of the enabled features are not provided by the \ + Fun_SAT solver. Please consider switching to \ + CDCL(Tableaux) instead." + ) + let unsat env gf = + (* in case of all-models and/or call to solver with old + unbacktracked decisions *) + check_no_decision_in_env env; Debug.is_it_unsat gf; try let guards_to_assume = @@ -1788,32 +1744,35 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct let d = back_tracking env in assert (Ex.has_no_bj d); - terminated_normally := true; d with | IUnsat (dep, classes) -> Debug.bottom classes; Debug.unsat (); - terminated_normally := true; assert (Ex.has_no_bj dep); dep - | Util.Timeout when switch_to_model_gen env -> do_switch_to_model_gen env + | Util.Timeout -> model_gen_on_timeout env let add_guard env gf = let current_guard = env.guards.current_guard in {gf with E.ff = E.mk_imp current_guard gf.E.ff} let assume env fg dep = + (* in case of all-models and/or call to solver with old + unbacktracked decisions *) + check_no_decision_in_env env; try if Options.get_tableaux_cdcl () then cdcl_assume false env [add_guard env fg,dep]; assume env [add_guard env fg,dep] with | IUnsat (d, classes) -> - terminated_normally := true; Debug.bottom classes; raise (Unsat d) - | Util.Timeout when switch_to_model_gen env -> do_switch_to_model_gen env + | Util.Timeout -> + (* don't attempt to compute a model if timeout before + calling unsat function *) + raise (I_dont_know {env; timeout = Assume}) let pred_def env f name dep _loc = @@ -1887,10 +1846,11 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct unit_tbox = tbox; inst = inst; heuristics = ref (Heuristics.empty ()); - model_gen_mode = ref false; + model_gen_phase = ref false; unit_facts_cache = ref ME.empty; guards = init_guards (); - add_inst = fun _ -> true; + add_inst = (fun _ -> true); + last_saved_model = ref None; } in assume env gf_true Ex.empty @@ -1902,10 +1862,13 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct let assume_th_elt env th_elt dep = {env with tbox = Th.assume_th_elt env.tbox th_elt dep} + (** returns the latest model stored in the env if any *) + let get_model env = !(env.last_saved_model) + let reinit_ctx () = (* all_models_sat_env := None; *) - latest_saved_env := None; - terminated_normally := false; + (* latest_saved_env := None; + terminated_normally := false; *) Steps.reinit_steps (); clear_instances_cache (); Th.reinit_cpt (); @@ -1921,15 +1884,6 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct Shostak.Combine.reinit_cache (); Uf.reinit_cache () - let get_model env = - assert (Options.get_interpretation ()); - let env = compute_concrete_model env true in - Options.Time.unset_timeout (); - let prop_model = extract_prop_model ~complete_model:true env in - Th.output_concrete_model (Options.Output.get_fmt_regular ()) ~prop_model - env.tbox; - terminated_normally := true - let () = Steps.save_steps (); Var.save_cnt (); @@ -1938,4 +1892,10 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct Shostak.Combine.save_cache (); Uf.save_cache () + let get_propositional_model env = + ME.fold (fun f _ acc -> E.Set.add f acc) env.gamma E.Set.empty + + let reset_last_saved_model env = + { env with last_saved_model = ref None} + end diff --git a/src/lib/reasoners/intervalCalculus.ml b/src/lib/reasoners/intervalCalculus.ml index 2ad4c06ba..16689af12 100644 --- a/src/lib/reasoners/intervalCalculus.ml +++ b/src/lib/reasoners/intervalCalculus.ml @@ -242,7 +242,7 @@ module Sim_Wrap = struct let ty = X.type_info x in let r1 = x in let r2 = alien_of (P.create [] n ty) in - [LR.mkv_eq r1 r2, true, Th_util.CS (Th_util.Th_arith, s)] + [LR.mkv_eq r1 r2, true, Th_util.CS (None, Th_util.Th_arith, s)] in let aux_1 uf x (info,_) acc = assert (X.type_info x == Ty.Tint); @@ -1353,6 +1353,9 @@ let fm (module Oracle : S with type p = P.t) uf are_eq rclass_of env eqs = let is_num r = let ty = X.type_info r in ty == Ty.Tint || ty == Ty.Treal +let is_num_term r = + let ty = E.type_info r in ty == Ty.Tint || ty == Ty.Treal + let add_disequality are_eq env eqs p expl = let ty = P.type_info p in match P.to_list p with @@ -1498,7 +1501,7 @@ let count_splits env la = List.fold_left (fun nb (_,_,_,i) -> match i with - | Th_util.CS (Th_util.Th_arith, n) -> Numbers.Q.mult nb n + | Th_util.CS (_, Th_util.Th_arith, n) -> Numbers.Q.mult nb n | _ -> nb )env.size_splits la in @@ -1790,7 +1793,7 @@ let case_split_polynomes env = let r1 = alien_of p in let r2 = alien_of (P.create [] n (P.type_info p)) in Debug.case_split r1 r2; - [LR.mkv_eq r1 r2, true, Th_util.CS (Th_util.Th_arith, s)], s + [LR.mkv_eq r1 r2, true, Th_util.CS (None, Th_util.Th_arith, s)], s | None -> Debug.no_case_split "polynomes"; [], Q.zero @@ -1816,7 +1819,7 @@ let case_split_monomes env = let r1 = x in let r2 = alien_of (P.create [] n ty) in Debug.case_split r1 r2; - [LR.mkv_eq r1 r2, true, Th_util.CS (Th_util.Th_arith, s)], s + [LR.mkv_eq r1 r2, true, Th_util.CS (None, Th_util.Th_arith, s)], s | None -> Debug.no_case_split "monomes"; [], Q.zero @@ -1826,7 +1829,7 @@ let check_size for_model env res = else match res with | [] -> res - | [_, _, Th_util.CS (Th_util.Th_arith, s)] -> + | [_, _, Th_util.CS (_, Th_util.Th_arith, s)] -> if Numbers.Q.compare (Q.mult s env.size_splits) (get_max_split ()) <= 0 || Numbers.Q.sign (get_max_split ()) < 0 then res else [] @@ -1930,7 +1933,7 @@ let case_split_union_of_intervals = if Q.is_zero eps then L.LE else (assert (Q.is_m_one eps); L.LT) in [LR.mkv_builtin true pred [r1; r2], true, - Th_util.CS (Th_util.Th_arith, Q.one)] + Th_util.CS (None, Th_util.Th_arith, Q.one)] (*****) @@ -2068,7 +2071,7 @@ let model_from_simplex sim is_int env uf = let model_from_unbounded_domains = let mk_cs acc (x, v, _ex) = ((LR.view (LR.mk_eq x v)), true, - Th_util.CS (Th_util.Th_arith, Q.from_int 2)) :: acc + Th_util.CS (None, Th_util.Th_arith, Q.from_int 2)) :: acc in fun env uf -> assert (env.int_sim.Sim.Core.status == Sim.Core.SAT); @@ -2082,20 +2085,95 @@ let model_from_unbounded_domains = let l2 = model_from_simplex int_sim true env uf in List.fold_left mk_cs (List.fold_left mk_cs [] l1) l2 +let mk_const_term c ty = + let c = Q.to_string c in + match ty with + | Ty.Tint -> E.int c + | Ty.Treal -> E.real c + | _ -> assert false + +let optimizing_split env uf opt = + (* soundness: if there are expressions to optmize, this should be + done without waiting for ~for_model flag to be true *) + let {Th_util.order; r = r; is_max = to_max; e; value } = opt in + assert (match value with + | Unknown -> true + | _ -> false + ); + let repr, _ = Uf.find uf e in + let ty = E.type_info e in + let r1 = r in (* instead of repr, which may be a constant *) + let p = poly_of repr in + match P.is_const p with + | Some optim -> + Format.eprintf + "%a has a %s: %a@." + E.print e + (if to_max then "maximum" else "minimum") + Q.print optim; + let r2 = alien_of (P.create [] optim ty) in + let t2 = mk_const_term optim ty in + Debug.case_split r1 r2; + let o = Some {Th_util.opt_ord = order; opt_val = Th_util.Value t2} in + let s = LR.mkv_eq r1 r2, true, Th_util.CS (o, Th_util.Th_arith, Q.one) in + Sig_rel.Optimized_split { opt with value = Value s; } -let case_split env uf ~for_model = - let res = default_case_split env uf ~for_model in - match res with - | [] -> - if not for_model then [] + | None -> + let sim = if ty == Ty.Tint then env.int_sim else env.rat_sim in + let p = if to_max then p else P.mult_const Q.m_one p in + let l, c = P.to_list p in + let l = List.rev_map (fun (x, y) -> y, x) (List.rev l) in + let sim, mx_res = Sim.Solve.maximize sim (Sim.Core.P.from_list l) in + match Sim.Result.get mx_res sim with + | Sim.Core.Unknown -> assert false + | Sim.Core.Sat _ -> assert false (* because we maximized *) + | Sim.Core.Unsat _ -> assert false (* we know sim is SAT *) + | Sim.Core.Unbounded _ -> + Printer.print_dbg + "%a is unbounded. Let other methods assign a value for it@." + E.print e; + let value = if to_max then Th_util.Pinfinity else Th_util.Minfinity in + Sig_rel.Optimized_split { opt with value } + + | Sim.Core.Max(mx,_sol) -> + let {Sim.Core.max_v; _} = Lazy.force mx in + let max_p = Q.add max_v.bvalue.v c in + let optim = if to_max then max_p else Q.mult Q.m_one max_p in + Printer.print_dbg + "%a has a %s: %a@." + E.print e + (if to_max then "maximum" else "minimum") + Q.print optim; + + let r2 = alien_of (P.create [] optim ty) in + Debug.case_split r1 r2; + let t2 = mk_const_term optim ty in + let o = Some {Th_util.opt_ord = order; opt_val = Th_util.Value t2} in + let s = LR.mkv_eq r1 r2, true, Th_util.CS (o, Th_util.Th_arith, Q.one) in + Sig_rel.Optimized_split { opt with value = Value s; } + + +let case_split env uf ~for_model ~to_optimize = + match to_optimize with + | Some x -> + if is_num_term x.Th_util.e then + optimizing_split env uf x else - begin - match case_split_union_of_intervals env uf with - | [] -> model_from_unbounded_domains env uf - | l -> l - end - | _ -> res + (* Some other theory should find an optimium for e *) + Sig_rel.Split [] + | None -> + let res = default_case_split env uf ~for_model in + match res with + | [] -> + if not for_model then Sig_rel.Split [] + else + begin + match case_split_union_of_intervals env uf with + | [] -> Sig_rel.Split (model_from_unbounded_domains env uf) + | l -> Sig_rel.Split l + end + | _ -> Sig_rel.Split res (*** part dedicated to FPA reasoning ************************************) diff --git a/src/lib/reasoners/ite_rel.ml b/src/lib/reasoners/ite_rel.ml index 8e3036bb7..e43258ec5 100644 --- a/src/lib/reasoners/ite_rel.ml +++ b/src/lib/reasoners/ite_rel.ml @@ -221,7 +221,7 @@ let assume env uf la = raise e else assume env uf la -let case_split _ _ ~for_model:_ = [] +let case_split _ _ ~for_model:_ ~to_optimize:_ = Sig_rel.Split [] let query _ _ _ = None diff --git a/src/lib/reasoners/records_rel.ml b/src/lib/reasoners/records_rel.ml index c9dfb9d9b..61e16539a 100644 --- a/src/lib/reasoners/records_rel.ml +++ b/src/lib/reasoners/records_rel.ml @@ -34,7 +34,7 @@ let empty _ = () let assume _ _ _ = (), { Sig_rel.assume = []; remove = []} let query _ _ _ = None -let case_split _ _ ~for_model:_ = [] +let case_split _ _ ~for_model:_ ~to_optimize:_ = Sig_rel.Split [] let add env _ _ _ = env, [] let new_terms _ = Expr.Set.empty let instantiate ~do_syntactic_matching:_ _ env _ _ = env, [] diff --git a/src/lib/reasoners/relation.ml b/src/lib/reasoners/relation.ml index ce130d36a..7396478be 100644 --- a/src/lib/reasoners/relation.ml +++ b/src/lib/reasoners/relation.ml @@ -122,23 +122,40 @@ let query env uf a = | Some _ as ans -> ans | None -> Rel7.query env.r7 uf a -let case_split env uf ~for_model = +let case_split env uf ~for_model ~to_optimize = Options.exec_thread_yield (); - let seq1 = Rel1.case_split env.r1 uf ~for_model in - let seq2 = Rel2.case_split env.r2 uf ~for_model in - let seq3 = Rel3.case_split env.r3 uf ~for_model in - let seq4 = Rel4.case_split env.r4 uf ~for_model in - let seq5 = Rel5.case_split env.r5 uf ~for_model in - let seq6 = Rel6.case_split env.r6 uf ~for_model in - let seq7 = Rel7.case_split env.r7 uf ~for_model in - let l = seq1 |@| seq2 |@| seq3 |@| seq4 |@| seq5 |@| seq6 |@| seq7 in - List.sort - (fun (_,_,sz1) (_,_,sz2) -> - match sz1, sz2 with - | Th_util.CS(_,sz1), Th_util.CS(_,sz2) -> Numbers.Q.compare sz1 sz2 - | _ -> assert false - )l - + let seq1 = Rel1.case_split env.r1 uf ~for_model ~to_optimize in + let seq2 = Rel2.case_split env.r2 uf ~for_model ~to_optimize in + let seq3 = Rel3.case_split env.r3 uf ~for_model ~to_optimize in + let seq4 = Rel4.case_split env.r4 uf ~for_model ~to_optimize in + let seq5 = Rel5.case_split env.r5 uf ~for_model ~to_optimize in + let seq6 = Rel6.case_split env.r6 uf ~for_model ~to_optimize in + let seq7 = Rel7.case_split env.r7 uf ~for_model ~to_optimize in + let splits, unbounded = + Lists.partition_map ~keep_ordering:false (function + | Sig_rel.Split l -> Ok l + | Optimized_split res -> Error res + ) [ seq1; seq2; seq3; seq4; seq5; seq6; seq7 ] + in + let unbounded = + List.fast_sort (fun a b -> a .Th_util.order - b.Th_util.order) unbounded in + match unbounded with + | [] -> + assert (to_optimize == None); + let splits = List.fold_left (|@|) [] splits in + Sig_rel.Split ( + List.fast_sort + (fun (_,_,sz1) (_,_,sz2) -> + match sz1, sz2 with + | Th_util.CS(_,_,sz1), Th_util.CS(_,_,sz2) -> + Numbers.Q.compare sz1 sz2 + | _ -> assert false + )splits + ) + | [u] -> + assert (to_optimize != None); + Sig_rel.Optimized_split u + | _ -> assert false (* optimize one expr per call *) let add env uf r t = Options.exec_thread_yield (); diff --git a/src/lib/reasoners/sat_solver_sig.ml b/src/lib/reasoners/sat_solver_sig.ml index 10d3f1376..ab2bf3d8e 100644 --- a/src/lib/reasoners/sat_solver_sig.ml +++ b/src/lib/reasoners/sat_solver_sig.ml @@ -34,9 +34,15 @@ module type S = sig type t + type timeout_reason = + | NoTimeout + | Assume + | ProofSearch + | ModelGen + exception Sat of t exception Unsat of Explanation.t - exception I_dont_know of t + exception I_dont_know of { env : t; timeout : timeout_reason } (* the empty sat-solver context *) val empty : unit -> t @@ -74,7 +80,14 @@ module type S = sig val reinit_ctx : unit -> unit (** [get_model t] produces the current model. *) - val get_model : t -> unit + val get_model: t -> Models.t Lazy.t option + + (** returns the latest solver's boolean assignation for literals + that is validated by the theories *) + val get_propositional_model: t -> Expr.Set.t + + (** reset last saved model, if any *) + val reset_last_saved_model: t -> t end diff --git a/src/lib/reasoners/sat_solver_sig.mli b/src/lib/reasoners/sat_solver_sig.mli index 4d01811c0..f25137ed8 100644 --- a/src/lib/reasoners/sat_solver_sig.mli +++ b/src/lib/reasoners/sat_solver_sig.mli @@ -31,9 +31,15 @@ module type S = sig type t + type timeout_reason = + | NoTimeout + | Assume + | ProofSearch + | ModelGen + exception Sat of t exception Unsat of Explanation.t - exception I_dont_know of t + exception I_dont_know of { env : t; timeout : timeout_reason } (** the empty sat-solver context *) val empty : unit -> t @@ -75,7 +81,14 @@ module type S = sig val reinit_ctx : unit -> unit (** [get_model t] produces the current model. *) - val get_model : t -> unit + val get_model: t -> Models.t Lazy.t option + + (** returns the latest solver's boolean assignation for literals + that is validated by the theories *) + val get_propositional_model: t -> Expr.Set.t + + (** reset last saved model, if any *) + val reset_last_saved_model: t -> t end diff --git a/src/lib/reasoners/satml.ml b/src/lib/reasoners/satml.ml index a946f88e7..6cdb5e6fb 100644 --- a/src/lib/reasoners/satml.ml +++ b/src/lib/reasoners/satml.ml @@ -95,6 +95,8 @@ module type SAT_ML = sig val assume_simple : t -> Atom.atom list list -> unit + val do_case_split : t -> Util.case_split_policy -> conflict_origin + val decide : t -> Atom.atom -> unit val conflict_analyze_and_fix : t -> conflict_origin -> unit @@ -476,6 +478,8 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct a.var.vpremise <- [] let enqueue_assigned env (a : Atom.atom) = + if Options.get_debug_sat () then + Printer.print_dbg "[satml] enqueue_assigned: %a@." Atom.pr_atom a; if a.neg.is_guard then begin (* if the negation of a is (still) a guard, it should be forced to true during the first decisions. @@ -504,6 +508,9 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct (* annule tout jusqu'a lvl *exclu* *) let cancel_until env lvl = + if Options.get_debug_sat () then + Printer.print_dbg + "[satml] cancel until %d (current is %d)@." lvl (decision_level env); cancel_ff_lvls_until env lvl; let repush = ref [] in if decision_level env > lvl then begin @@ -607,8 +614,8 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct a.is_true <- true; a.var.level <- lvl; a.var.reason <- reason; - (* Printer.print_dbg - "enqueue: %a@." Debug.atom a; *) + if Options.get_debug_sat () then + Printer.print_dbg "[satml] enqueue: %a@." Atom.pr_atom a; Vec.push env.trail a; a.var.index <- Vec.size env.trail; if Options.get_enable_assertions() then debug_enqueue_level a lvl reason @@ -703,17 +710,13 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct let do_case_split env origin = - if Options.get_case_split_policy () != Util.AfterTheoryAssume then - failwith - "Only AfterTheoryAssume case-split policy is supported by satML"; - if Options.get_case_split_policy () == origin then - try - let tenv, _ = Th.do_case_split env.tenv in - env.tenv <- tenv; - C_none - with Ex.Inconsistent (expl, _) -> - C_theory expl - else C_none + try + let tenv, _terms = Th.do_case_split env.tenv origin in + (* TODO: terms not added to matching !!! *) + env.tenv <- tenv; + C_none + with Ex.Inconsistent (expl, _) -> + C_theory expl module SA = Atom.Set @@ -812,16 +815,21 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct (* Some dep *) let unit_theory_propagate env _full_q lazy_q = + let nb_f = ref 0 in let facts = Queue.fold (fun acc (ta : Atom.atom) -> assert (ta.is_true); assert (ta.var.level >= 0); - if ta.var.level = 0 then + if ta.var.level = 0 then begin + incr nb_f; (ta.lit, Ex.empty, 0, env.cpt_current_propagations) :: acc + end else acc )[] lazy_q in + if Options.get_debug_sat () then + Printer.print_dbg "[satml] Unit theory_propagate of %d atoms@." !nb_f; if facts == [] then C_none else try @@ -856,8 +864,10 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct | C_theory _ as res -> res | C_bool _ -> assert false | C_none -> + let nb_f = ref 0 in while not (Queue.is_empty tatoms_queue) do let a = Queue.pop tatoms_queue in + incr nb_f; let ta = if a.is_true then a else if a.neg.is_true then a.neg (* TODO: useful ?? *) @@ -886,6 +896,8 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct facts := (ta.lit, ex, dlvl,env.cpt_current_propagations) :: !facts; env.cpt_current_propagations <- env.cpt_current_propagations + 1 done; + if Options.get_debug_sat () then + Printer.print_dbg "[satml] Theory_propagate of %d atoms@." !nb_f; Queue.clear env.tatoms_queue; Queue.clear env.th_tableaux; if !facts == [] then C_none @@ -915,6 +927,8 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct (*assert (Queue.is_empty env.tqueue);*) while env.qhead < Vec.size env.trail do let a = Vec.get env.trail env.qhead in + if Options.get_debug_sat () then + Printer.print_dbg "[satml] propagate atom %a@." Atom.pr_atom a; env.qhead <- env.qhead + 1; incr num_props; propagate_atom env a res; @@ -1475,8 +1489,8 @@ module Make (Th : Theory.S) : SAT_ML with type th = Th.t = struct let current_level = decision_level env in env.cpt_current_propagations <- 0; assert (next.var.level < 0); - (* Printer.print_dbg - "decide: %a" Atom.pr_atom next; *) + if Options.get_debug_sat () then + Printer.print_dbg "[satml] decide: %a" Atom.pr_atom next; enqueue env next current_level None | Some(c,sz) -> record_learnt_clause env ~is_T_learn:true (decision_level env) c [] sz diff --git a/src/lib/reasoners/satml.mli b/src/lib/reasoners/satml.mli index f33c635a0..9eaf97f76 100644 --- a/src/lib/reasoners/satml.mli +++ b/src/lib/reasoners/satml.mli @@ -89,6 +89,7 @@ module type SAT_ML = sig val reason_of_deduction: Atom.atom -> Atom.Set.t val assume_simple : t -> Atom.atom list list -> unit + val do_case_split : t -> Util.case_split_policy -> conflict_origin val decide : t -> Atom.atom -> unit val conflict_analyze_and_fix : t -> conflict_origin -> unit @@ -99,4 +100,3 @@ module type SAT_ML = sig end module Make (Th : Theory.S) : SAT_ML with type th = Th.t - diff --git a/src/lib/reasoners/satml_frontend.ml b/src/lib/reasoners/satml_frontend.ml index 11e20ad9d..2691dde9f 100644 --- a/src/lib/reasoners/satml_frontend.ml +++ b/src/lib/reasoners/satml_frontend.ml @@ -60,6 +60,9 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct skolems : E.gformula ME.t; (* key <-> f *) add_inst : E.t -> bool; guards : guards; + last_saved_model : Models.t Lazy.t option ref; + model_gen_phase : bool ref; + objectives : Th_util.optimized_split Util.MI.t option ref } let empty_guards () = { @@ -86,15 +89,24 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct inst = Inst.empty; skolems = ME.empty; guards = init_guards (); - add_inst = fun _ -> true; + add_inst = (fun _ -> true); + last_saved_model = ref None; + model_gen_phase = ref false; + objectives = ref None } let empty_with_inst add_inst = { (empty ()) with add_inst = add_inst } + type timeout_reason = + | NoTimeout + | Assume + | ProofSearch + | ModelGen + exception Sat of t exception Unsat of Explanation.t - exception I_dont_know of t + exception I_dont_know of { env : t; timeout : timeout_reason } exception IUnsat of t * Explanation.t @@ -972,13 +984,137 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct [ greedy_mconf (), "greedy-inst", true , false; greedier_mconf (), "greedier-inst", true, false]) + let do_case_split env policy = + match SAT.do_case_split env.satml policy with + | C_none -> env + | C_bool _ -> assert false + | C_theory expl -> raise (Ex.Inconsistent (expl, [])) + + let may_update_last_saved_model env compute = + let compute = + if not (Options.get_first_interpretation ()) then compute + else !(env.last_saved_model) == None + in + if not compute then env + else begin + try + (* also performs case-split and pushes pending atoms to CS *) + let model = Th.compute_concrete_model (SAT.current_tbox env.satml) in + env.last_saved_model := model; + env + with Ex.Inconsistent (_expl, _classes) as e -> + raise e + + end + + let update_model_and_return_unknown env compute_model ~timeout = + try + let env = may_update_last_saved_model env compute_model in + Options.Time.unset_timeout (); + raise (I_dont_know {env; timeout }) + with Util.Timeout when !(env.model_gen_phase) -> + (* In this case, timeout reason becomes 'ModelGen' *) + raise (I_dont_know {env; timeout = ModelGen }) + + + let model_gen_on_timeout env = + let i = Options.get_interpretation () in + let ti = Options.get_timelimit_interpretation () in + if not i || (* not asked to gen a model *) + !(env.model_gen_phase) || (* we timeouted in model-gen-phase *) + Stdlib.(=) ti 0. (* no time allocated for extra model search *) + then + raise (I_dont_know {env; timeout = ProofSearch}) + else + begin + (* Beware: models generated on timeout of ProofSearch phase may + be incohrent wrt. the ground part of the pb (ie. if delta + is not empty ? *) + env.model_gen_phase := true; + Options.Time.unset_timeout (); + Options.Time.set_timeout ti; + update_model_and_return_unknown + env i ~timeout:ProofSearch (* may becomes ModelGen *) + end + + + let [@inline always] gt a b = E.mk_builtin ~is_pos:false Symbols.LE [a;b] + let [@inline always] lt a b = E.mk_builtin ~is_pos:true Symbols.LT [a;b] + + let analyze_unknown_for_objectives env unknown_exn unsat_rec_prem : unit = + let obj = Th.get_objectives (SAT.current_tbox env.satml) in + if Util.MI.is_empty obj then raise unknown_exn; + env.objectives := Some obj; + let seen_infinity = ref false in + let acc = + Util.MI.fold + (fun _ {Th_util.e; value; r=_; is_max; order=_} acc -> + if !seen_infinity then acc + else + match value with + | Pinfinity -> + seen_infinity := true; acc + | Minfinity -> + seen_infinity := true; acc + | Value (_,_, Th_util.CS (Some {opt_val = Value v; _},_,_)) -> + (* hack-ish to get the value of type expr *) + (e, v, is_max) :: acc + | Value _ -> + assert false + | Unknown -> + assert false + ) obj [] + in + begin match acc with + | [] -> + (* first objective is infinity *) + assert (!seen_infinity); + raise unknown_exn; + + | (e,tv, is_max)::l -> + let neg = + List.fold_left + (fun acc (e, tv, is_max) -> + let eq = E.mk_eq e tv ~iff: false in + let and_ = E.mk_and acc eq false in + E.mk_or and_ ((if is_max then gt else lt) e tv) false + )((if is_max then gt else lt) e tv) l + in + Format.eprintf + "Obj %a has an optimum. Should continue beyond SAT to try to \ + find a better opt than v = %a@." + Expr.print e Expr.print tv; + Format.eprintf "neg is %a@." E.print neg; + let l = [mk_gf neg] in + Format.eprintf + "TODO: can we add the clause without 'cancel_until 0' ?"; + SAT.cancel_until env.satml 0; + let env, updated = assume_aux ~dec_lvl:0 env l in + if not updated then begin + Format.eprintf + "env not updated after injection of neg! termination \ + issue.@.@."; + assert false + end; + Options.Time.unset_timeout (); + Options.Time.set_timeout (Options.get_timelimit ()); + unsat_rec_prem env ~first_call:false + end + + let rec unsat_rec env ~first_call:_ : unit = try SAT.solve env.satml; assert false with | Satml.Unsat lc -> raise (IUnsat (env, make_explanation lc)) + | Util.Timeout -> model_gen_on_timeout env + | Satml.Sat -> try - (*if first_call then SAT.cancel_until 0;*) + let env = do_case_split env Util.BeforeMatching in + let env = + may_update_last_saved_model env + (Options.get_every_interpretation ()) + in let env = {env with nb_mrounds = env.nb_mrounds + 1} [@ocaml.ppwarning "TODO: first intantiation a la DfsSAT before searching ..."] @@ -993,6 +1129,7 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct (*let strat = Auto in*) let dec_lvl = SAT.decision_level env.satml in let env, updated = instantiation env strat dec_lvl in + let env = do_case_split env Util.AfterMatching in let env, updated = if not updated && strat != Auto then instantiation env Auto dec_lvl else env, updated @@ -1006,15 +1143,46 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct else env in - if not updated then raise (I_dont_know env); + if not updated then + update_model_and_return_unknown + env (Options.get_last_interpretation ()) + ~timeout:NoTimeout; (* may becomes ModelGen *) unsat_rec env ~first_call:false - with Ex.Inconsistent (expl, _cls) -> (*may be raised during matching*) - try - SAT.conflict_analyze_and_fix env.satml (Satml.C_theory expl); - unsat_rec env ~first_call:false with + | Util.Timeout -> model_gen_on_timeout env | Satml.Unsat lc -> raise (IUnsat (env, make_explanation lc)) + | Ex.Inconsistent (expl, _cls) -> (*may be raised during matching or CS*) + begin + try + SAT.conflict_analyze_and_fix env.satml (Satml.C_theory expl); + unsat_rec env ~first_call:false + with + | Satml.Unsat lc -> raise (IUnsat (env, make_explanation lc)) + | Util.Timeout -> model_gen_on_timeout env + end + + + let rec unsat_rec_prem env ~first_call : unit = + try + unsat_rec env ~first_call + with + | I_dont_know {env; timeout=_} as e -> + begin + try analyze_unknown_for_objectives env e unsat_rec_prem + with + | IUnsat (env, _) -> + assert (!(env.objectives) != None); + (* objectives is a ref, it's necessiraly updated as a + side-effect to best value *) + raise (I_dont_know {env; timeout=NoTimeout}) + end + | Util.Timeout as e -> raise e + + | IUnsat (env, _) as e -> + if !(env.objectives) == None then raise e; + (* TODO: put the correct objectives *) + raise (I_dont_know {env; timeout=NoTimeout}) (* copied from sat_solvers.ml *) let max_term_depth_in_sat env = @@ -1033,7 +1201,6 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct Errors.run_error (Errors.Unsupported_feature msg) in let open Options in - if get_interpretation () then fails "interpretation"; if get_save_used_context () then fails "save_used_context"; if get_unsat_core () then fails "unsat_core" @@ -1078,6 +1245,8 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct assert (not (Stack.is_empty acc.guards.stack_guard)); let b = Stack.top acc.guards.stack_guard in Steps.pop_steps (); + acc.model_gen_phase := false; + env.last_saved_model := None; {acc with inst; guards = { acc.guards with @@ -1102,13 +1271,15 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct (E.max_ground_terms_rec_of_form gf.E.ff) gf} in try + SAT.cancel_until env.satml 0; assert (SAT.decision_level env.satml == 0); let env, _updated = assume_aux ~dec_lvl:0 env [gf] in let max_t = max_term_depth_in_sat env in let env = {env with inst = Inst.register_max_term_depth env.inst max_t} in - unsat_rec env ~first_call:true; + unsat_rec_prem env ~first_call:true; assert false - with IUnsat (_env, dep) -> + with + | IUnsat (_env, dep) -> assert begin Ex.fold_atoms (fun e b -> match e with @@ -1118,12 +1289,22 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct )dep true end; dep + | (Util.Timeout | I_dont_know _ | Assert_failure _ ) as e -> raise e + | e -> + Printer.print_dbg + ~module_name:"Satml_frontend" ~function_name:"unsat" + "%s" (Printexc.to_string e); + assert false let assume env gf _dep = (* dep currently not used. No unsat-cores in satML yet *) assert (SAT.decision_level env.satml == 0); try fst (assume_aux ~dec_lvl:0 env [add_guard env gf]) - with IUnsat (_env, dep) -> raise (Unsat dep) + with | IUnsat (_env, dep) -> raise (Unsat dep) + | Util.Timeout -> + (* don't attempt to compute a model if timeout before + calling unsat function *) + raise (I_dont_know {env; timeout = Assume}) (* instrumentation of relevant exported functions for profiling *) let assume t ff dep = @@ -1154,6 +1335,15 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct SAT.assume_th_elt env.satml th_elt dep; env + let get_model env = !(env.last_saved_model) + + let get_propositional_model env = + let tbox = SAT.current_tbox env.satml in + Th.get_assumed tbox + + let reset_last_saved_model env = + { env with last_saved_model = ref None} + let reinit_ctx () = Steps.reinit_steps (); Th.reinit_cpt (); @@ -1169,8 +1359,6 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct Shostak.Combine.reinit_cache (); Uf.reinit_cache () - let get_model _env = failwith "not yet supported" - let () = Steps.save_steps (); Var.save_cnt (); diff --git a/src/lib/reasoners/shostak.ml b/src/lib/reasoners/shostak.ml index d2f02b2bb..95938cdfb 100644 --- a/src/lib/reasoners/shostak.ml +++ b/src/lib/reasoners/shostak.ml @@ -635,7 +635,7 @@ struct if Expr.const_term t || List.exists (fun (t,_) -> Expr.const_term t) eq then None else Some (Expr.fresh_name ty, false) (* false <-> not a case-split *) - | _ -> assert false + | _ -> AC.assign_value r distincts eq in if Options.get_debug_interpretation () then Printer.print_dbg diff --git a/src/lib/reasoners/sig_rel.mli b/src/lib/reasoners/sig_rel.mli index e6c4d395b..515874833 100644 --- a/src/lib/reasoners/sig_rel.mli +++ b/src/lib/reasoners/sig_rel.mli @@ -49,6 +49,10 @@ type 'a result = { remove: Expr.t list; } +type case_split = + | Split of Th_util.split_info list + | Optimized_split of Th_util.optimized_split + module type RELATION = sig type t @@ -61,7 +65,8 @@ module type RELATION = sig val case_split : t -> Uf.t -> for_model:bool -> - (Shostak.Combine.r Xliteral.view * bool * Th_util.lit_origin) list + to_optimize: Th_util.optimized_split option -> + case_split (** case_split env returns a list of equalities *) val add : t -> Uf.t -> Shostak.Combine.r -> Expr.t -> diff --git a/src/lib/reasoners/th_util.ml b/src/lib/reasoners/th_util.ml index e57cb7cf2..103e0c048 100644 --- a/src/lib/reasoners/th_util.ml +++ b/src/lib/reasoners/th_util.ml @@ -38,8 +38,27 @@ type theory = | Th_arrays | Th_UF +type 'a optimized_split_value = + | Minfinity + | Value of 'a + | Pinfinity + | Unknown + +type optimization = + { opt_ord : int; opt_val : Expr.t optimized_split_value } + type lit_origin = | Subst - | CS of theory * Numbers.Q.t + | CS of optimization option * theory * Numbers.Q.t | NCS of theory * Numbers.Q.t | Other + +type split_info = Shostak.Combine.r Xliteral.view * bool * lit_origin + +type optimized_split = + { r : Shostak.Combine.r; + e : Expr.t; + value : split_info optimized_split_value; + is_max : bool; (* for linear arithmetic: is_max <-> (opt = maximize) *) + order : int (* ordering assigned by the user for this variable *) + } diff --git a/src/lib/reasoners/th_util.mli b/src/lib/reasoners/th_util.mli index e57cb7cf2..103e0c048 100644 --- a/src/lib/reasoners/th_util.mli +++ b/src/lib/reasoners/th_util.mli @@ -38,8 +38,27 @@ type theory = | Th_arrays | Th_UF +type 'a optimized_split_value = + | Minfinity + | Value of 'a + | Pinfinity + | Unknown + +type optimization = + { opt_ord : int; opt_val : Expr.t optimized_split_value } + type lit_origin = | Subst - | CS of theory * Numbers.Q.t + | CS of optimization option * theory * Numbers.Q.t | NCS of theory * Numbers.Q.t | Other + +type split_info = Shostak.Combine.r Xliteral.view * bool * lit_origin + +type optimized_split = + { r : Shostak.Combine.r; + e : Expr.t; + value : split_info optimized_split_value; + is_max : bool; (* for linear arithmetic: is_max <-> (opt = maximize) *) + order : int (* ordering assigned by the user for this variable *) + } diff --git a/src/lib/reasoners/theory.ml b/src/lib/reasoners/theory.ml index 04ebaa1e6..a902fe8db 100644 --- a/src/lib/reasoners/theory.ml +++ b/src/lib/reasoners/theory.ml @@ -58,9 +58,11 @@ module type S = sig val extract_ground_terms : t -> Expr.Set.t val get_real_env : t -> Ccx.Main.t val get_case_split_env : t -> Ccx.Main.t - val do_case_split : t -> t * Expr.Set.t + val do_case_split : t -> Util.case_split_policy -> t * Expr.Set.t val add_term : t -> Expr.t -> add_in_cs:bool -> t - val compute_concrete_model : t -> t + val compute_concrete_model : + t -> + Models.t Lazy.t option val assume_th_elt : t -> Expr.th_elt -> Explanation.t -> t val theories_instances : @@ -70,15 +72,8 @@ module type S = sig int -> int -> t * Sig_rel.instances val get_assumed : t -> E.Set.t - - val output_concrete_model : - Format.formatter -> - prop_model:Expr.Set.t -> - t -> - unit - val reinit_cpt : unit -> unit - + val get_objectives : t -> Th_util.optimized_split Util.MI.t end module Main_Default : S = struct @@ -272,9 +267,13 @@ module Main_Default : S = struct List.iter (fun (rx, lit_orig, _, ex) -> match lit_orig with - | Th_util.CS(k, _) -> + | Th_util.CS(None, k, _) -> Format.fprintf fmt " > %s cs: %a (because %a)@ " (theory_of k) LR.print (LR.make rx) Ex.print ex + | Th_util.CS(Some o, k, _) -> + Format.fprintf fmt " > %s Optim-cs(ord=%d): %a (because %a)@ " + (theory_of k) o.Th_util.opt_ord + LR.print (LR.make rx) Ex.print ex | Th_util.NCS(k, _) -> Format.fprintf fmt " > %s ncs: %a (because %a)@ " (theory_of k) LR.print (LR.make rx) Ex.print ex @@ -359,38 +358,120 @@ module Main_Default : S = struct terms : Expr.Set.t; gamma : CC_X.t; gamma_finite : CC_X.t; - choices : choice list + choices : choice list; + objectives : Th_util.optimized_split Util.MI.t; } - let look_for_sat ?(bad_last=None) ch t base_env l ~for_model = - let rec aux ch bad_last dl base_env li = + let add_explanations_to_splits l = + List.map + (fun (c, is_cs, size) -> + Steps.incr_cs_steps(); + let exp = Ex.fresh_exp () in + let ex_c_exp = + if is_cs then Ex.add_fresh exp Ex.empty else Ex.empty + in + (* A new explanation in order to track the choice *) + (c, size, CPos exp, ex_c_exp)) l + + let register_optimized_split objectives u = + try + let x = Util.MI.find u.Th_util.order objectives in + assert (E.equal x.Th_util.e u.Th_util.e); (* and its Value ... *) + Util.MI.add u.Th_util.order u objectives + with Not_found -> + assert false + + + exception Found of Th_util.optimized_split + + (* TODO: this function could be optimized if "objectives" structure + is coded differently *) + let next_optimization env ~for_model = + try + Util.MI.iter (fun _ x -> + match x.Th_util.value with + | Value _ -> + () + | Pinfinity | Minfinity -> + (* We should block case-split at infinite values. + Otherwise. Otherwise, we may have soundness issues. We + may think an objective is unbounded, but some late + constraints may make it bounded. + + An alternative is to only allow further splits when we + know that no extra-assumpptions will be propagated to + the env. Hence the test 'if for_model' *) + if for_model then () + else + raise (Found { x with Th_util.value = Unknown }) + + | Unknown -> + raise (Found { x with Th_util.value = Unknown }) + )env.objectives; + None + with Found x -> + Some x + + (* TODO: this function could be optimized if "objectives" structure + is coded differently *) + let partial_objectives_reset objectives to_flip = + match to_flip with + | None -> objectives + | Some {Th_util.opt_ord; _} -> + Util.MI.fold + (fun ord v acc -> + if ord < opt_ord then + (*don't change older optims that are still valid splits*) + acc + else + match v.Th_util.value with + | Th_util.Unknown -> acc (* not optimized yet *) + | Value _ -> Util.MI.add ord {v with value = Unknown} acc + | Pinfinity | Minfinity -> assert false (* may happen? *) + )objectives objectives + + let look_for_sat ?(bad_last=None) ch env l ~for_model = + let rec aux ch bad_last dl env li = Options.exec_thread_yield (); match li, bad_last with | [], _ -> begin Options.tool_req 3 "TR-CCX-CS-Case-Split"; - let l, base_env = CC_X.case_split base_env ~for_model in + let to_optimize = next_optimization ~for_model env in + let l, base_env = CC_X.case_split + env.gamma_finite ~for_model ~to_optimize in + let env = {env with gamma_finite = base_env} in match l with - | [] -> - { t with gamma_finite = base_env; choices = List.rev dl }, ch - | l -> - let l = - List.map - (fun (c, is_cs, size) -> - Steps.incr_cs_steps(); - let exp = Ex.fresh_exp () in - let ex_c_exp = - if is_cs then Ex.add_fresh exp Ex.empty else Ex.empty - in - (* A new explanation in order to track the choice *) - (c, size, CPos exp, ex_c_exp)) l in - aux ch None dl base_env l + | Sig_rel.Split [] -> + { env with choices = List.rev dl }, ch + + | Sig_rel.Split new_splits -> + let new_splits = add_explanations_to_splits new_splits in + aux ch None dl env new_splits + + | Sig_rel.Optimized_split u -> + let to_opt = register_optimized_split env.objectives u in + let env = {env with objectives = to_opt} in + begin + match u.value with + | Value v -> + let splits = add_explanations_to_splits [v] in + aux ch None dl env splits + | Pinfinity | Minfinity -> + if for_model then + aux ch None dl env [] + else + { env with choices = List.rev dl }, ch + | Unknown -> assert false + end + end | ((c, lit_orig, CNeg, ex_c) as a)::l, _ -> let facts = CC_X.empty_facts () in CC_X.add_fact facts (LSem c,ex_c,lit_orig); - let base_env, ch = CC_X.assume_literals base_env ch facts in - aux ch bad_last (a::dl) base_env l + let base_env, ch = CC_X.assume_literals env.gamma_finite ch facts in + let env = { env with gamma_finite = base_env} in + aux ch bad_last (a::dl) env l (* This optimisation is not correct with the current explanation *) (* | [(c, lit_orig, CPos exp, ex_c)], Yes (dep,_) -> *) @@ -404,9 +485,10 @@ module Main_Default : S = struct Debug.split_assume c ex_c_exp; let facts = CC_X.empty_facts () in CC_X.add_fact facts (LSem c, ex_c_exp, lit_orig); - let base_env, ch = CC_X.assume_literals base_env ch facts in + let base_env, ch = CC_X.assume_literals env.gamma_finite ch facts in + let env = { env with gamma_finite = base_env} in Options.tool_req 3 "TR-CCX-CS-Normal-Run"; - aux ch bad_last (a::dl) base_env l + aux ch bad_last (a::dl) env l with Ex.Inconsistent (dep, classes) -> match Ex.remove_fresh exp dep with | None -> @@ -418,8 +500,8 @@ module Main_Default : S = struct Options.tool_req 3 "TR-CCX-CS-Case-Split-Progress"; (* The choice participates to the inconsistency *) let neg_c = LR.view (LR.neg (LR.make c)) in - let lit_orig = match lit_orig with - | Th_util.CS(k, sz) -> Th_util.NCS(k, sz) + let lit_orig, is_opt = match lit_orig with + | Th_util.CS(is_opt, k, sz) -> Th_util.NCS(k, sz), is_opt | _ -> assert false in Debug.split_backtrack neg_c dep; @@ -427,9 +509,12 @@ module Main_Default : S = struct Printer.print_dbg "bottom (case-split):%a" Expr.print_tagged_classes classes; - aux ch None dl base_env [neg_c, lit_orig, CNeg, dep] + let env = + { env with objectives = + partial_objectives_reset env.objectives is_opt } in + aux ch None dl env [neg_c, lit_orig, CNeg, dep] in - aux ch bad_last (List.rev t.choices) base_env l + aux ch bad_last (List.rev env.choices) env l (* remove old choices involving fresh variables that are no longer in UF *) let filter_valid_choice uf (ra,_,_,_) = @@ -479,25 +564,60 @@ module Main_Default : S = struct )candidates_to_keep + let reset_objectives objectives = + Util.MI.map (fun x -> Th_util.({ x with value = Unknown }) ) objectives + + let reset_case_split_env t = + { t with + objectives = reset_objectives t.objectives; + cs_pending_facts = []; (* be sure it's always correct when this + function is called *) + gamma_finite = t.gamma; (* we'll take gamma directly *) + choices = []; (* we'll not be able to attempt to replay + choices. We're not in try-it *) + } + + let has_no_infinity objectives = + Util.MI.for_all + (fun _ {Th_util.value; _} -> + match value with + | Pinfinity | Minfinity -> false + | Value _ | Unknown -> true + )objectives + let try_it t facts ~for_model = Options.exec_thread_yield (); Debug.begin_case_split t.choices; let r = try - if t.choices == [] then look_for_sat [] t t.gamma [] ~for_model + if t.choices == [] then + (* no splits yet: init gamma_finite with gamma *) + let t = reset_case_split_env t in + look_for_sat [] t [] ~for_model else try - let env, ch = CC_X.assume_literals t.gamma_finite [] facts in - look_for_sat ch t env [] ~for_model + let base_env, ch = CC_X.assume_literals t.gamma_finite [] facts in + let t = { t with gamma_finite = base_env } in + look_for_sat ch t [] ~for_model with Ex.Inconsistent (dep, classes) -> Options.tool_req 3 "TR-CCX-CS-Case-Split-Erase-Choices"; (* we replay the conflict in look_for_sat, so we can safely ignore the explanation which is not useful *) let uf = CC_X.get_union_find t.gamma in let filt_choices = filter_choices uf t.choices in + let filt_choices = + if Util.MI.is_empty t.objectives || + has_no_infinity t.objectives + (* otherwise, we may be unsound because infty optims + are not propagated *) + then filt_choices + else [] + in Debug.split_sat_contradicts_cs filt_choices; + (* re-init gamma_finite with gamma *) + let t = reset_case_split_env t in look_for_sat ~bad_last:(Some (dep, classes)) - [] { t with choices = []} t.gamma filt_choices ~for_model + [] { t with choices = []} filt_choices ~for_model with Ex.Inconsistent (d, cl) -> Debug.end_case_split t.choices; Options.tool_req 3 "TR-CCX-CS-Conflict"; @@ -547,7 +667,7 @@ module Main_Default : S = struct let _, d2, p2 = e2 in (d1 > d2 || d1 = d2 && p1 > p2) && is_ordered_list ((e2::l)::r) - let do_case_split t = + let do_case_split_aux t ~for_model = let in_facts_l = t.cs_pending_facts in let t = {t with cs_pending_facts = []} in let facts = CC_X.empty_facts () in @@ -557,12 +677,57 @@ module Main_Default : S = struct CC_X.add_fact facts (LTerm a, ex, Th_util.Other)) ) in_facts_l; - let t, ch = try_it t facts ~for_model:false in + let t, ch = try_it t facts ~for_model in let choices = extract_terms_from_choices SE.empty t.choices in let choices_terms = extract_terms_from_assumed choices ch in {t with terms = Expr.Set.union t.terms choices_terms}, choices_terms + let do_case_split t origin = + if Options.get_case_split_policy () == origin then + do_case_split_aux t ~for_model:false + else + t, SE.empty + + let update_objectives objectives assumed gamma = + let uf = CC_X.get_union_find gamma in + let reset_cs_env = ref false in + let res = + List.fold_left + (fun objectives (a, _, _) -> + match E.term_view a with + | {E.f = Sy.Op Sy.Optimize {order;is_max}; xs = [e]; _} -> + let r = + try Uf.make uf e + with Not_found -> + (* gamma is already initialized with fresh terms *) + assert false + in + let x = Th_util.{ r; e; value = Unknown; is_max; order } in + begin + try + let y = Util.MI.find order objectives in + if not (X.equal r y.Th_util.r) then begin + Printer.print_fmt ~flushed:true + (Options.Output.get_fmt_diagnostic ()) + "Optimization problem illformed. %a and %a have \ + the same order %d@." + X.print r X.print y.Th_util.r order; + assert false + end; + objectives + with Not_found -> + reset_cs_env := true; + Util.MI.add order x objectives + end + | {E.f = Sy.Op Sy.Optimize _; xs = _; _} -> assert false + | _ -> objectives + (* | Not_a_term {is_lit = true} -> objectives + | Not_a_term {is_lit = false} -> assert false *) + ) objectives assumed + in + res, !reset_cs_env + (* facts are sorted in decreasing order with respect to (dlvl, plvl) *) let assume ordered in_facts t = let facts = CC_X.empty_facts () in @@ -589,9 +754,16 @@ module Main_Default : S = struct assert (not ordered || is_ordered_list t.assumed); let gamma, _ = CC_X.assume_literals t.gamma [] facts in + (* update to optimize with the new gamma *) + let objectives, reset_cs_env = + update_objectives t.objectives assumed gamma in let new_terms = CC_X.new_terms gamma in - {t with gamma = gamma; terms = Expr.Set.union t.terms new_terms}, - new_terms, cpt + let t = {t with + gamma = gamma; terms = Expr.Set.union t.terms new_terms; + objectives } + in + let t = if reset_cs_env then reset_case_split_env t else t in + t, new_terms, cpt let get_debug_theories_instances th_instances ilvl dlvl = let module MF = Expr.Map in @@ -653,37 +825,40 @@ module Main_Default : S = struct { t with gamma = gamma } in fun a t -> - if Options.get_profiling() then Profiling.query(); - Options.exec_thread_yield (); - Debug.query a; - try - match E.lit_view a with - | E.Eq (t1, t2) -> - let t = add_and_process_conseqs a t in - CC_X.are_equal t.gamma t1 t2 ~init_terms:false - - | E.Distinct [t1; t2] -> - let na = E.neg a in - let t = add_and_process_conseqs na t in (* na ? *) - CC_X.are_distinct t.gamma t1 t2 - - | E.Distinct _ | E.Eql _ -> - (* we only assume toplevel distinct with more that one arg. - not interesting to do a query in this case ?? or query ? *) - None - - | E.Pred (t1,b) -> - let t = add_and_process_conseqs a t in - if b - then CC_X.are_distinct t.gamma t1 Expr.vrai - else CC_X.are_equal t.gamma t1 Expr.vrai ~init_terms:false - - | _ -> - let na = E.neg a in - let t = add_and_process_conseqs na t in - CC_X.query t.gamma na - with Ex.Inconsistent (d, classes) -> - Some (d, classes) + if Options.get_no_tcp () then None + else begin + if Options.get_profiling() then Profiling.query(); + Options.exec_thread_yield (); + Debug.query a; + try + match E.lit_view a with + | E.Eq (t1, t2) -> + let t = add_and_process_conseqs a t in + CC_X.are_equal t.gamma t1 t2 ~init_terms:false + + | E.Distinct [t1; t2] -> + let na = E.neg a in + let t = add_and_process_conseqs na t in (* na ? *) + CC_X.are_distinct t.gamma t1 t2 + + | E.Distinct _ | E.Eql _ -> + (* we only assume toplevel distinct with more that one arg. + not interesting to do a query in this case ?? or query ? *) + None + + | E.Pred (t1,b) -> + let t = add_and_process_conseqs a t in + if b + then CC_X.are_distinct t.gamma t1 Expr.vrai + else CC_X.are_equal t.gamma t1 Expr.vrai ~init_terms:false + + | _ -> + let na = E.neg a in + let t = add_and_process_conseqs na t in + CC_X.query t.gamma na + with Ex.Inconsistent (d, classes) -> + Some (d, classes) + end let add_term_in_gm gm t = let facts = CC_X.empty_facts() in @@ -706,7 +881,9 @@ module Main_Default : S = struct assumed_set = E.Set.empty; assumed = []; cs_pending_facts = []; - terms = Expr.Set.empty } + terms = Expr.Set.empty; + objectives = Util.MI.empty; + } in let a = E.mk_distinct ~iff:false [E.vrai; E.faux] in let t, _, _ = assume true [a, Ex.empty, 0, -1] t in @@ -744,20 +921,22 @@ module Main_Default : S = struct let get_case_split_env t = t.gamma_finite let compute_concrete_model env = - fst (try_it env (CC_X.empty_facts ()) ~for_model:true) - + let {gamma_finite; objectives; _}, _ = + do_case_split_aux env ~for_model:true in + CC_X.extract_concrete_model + ~prop_model:env.assumed_set + ~optimized_splits:objectives + gamma_finite let assume_th_elt t th_elt dep = { t with gamma = CC_X.assume_th_elt t.gamma th_elt dep } let get_assumed env = env.assumed_set - let output_concrete_model fmt ~prop_model env = - CC_X.output_concrete_model fmt ~prop_model env.gamma_finite - let reinit_cpt () = Debug.reinit_cpt () + let get_objectives env = env.objectives end module Main_Empty : S = struct @@ -785,13 +964,15 @@ module Main_Empty : S = struct let empty_ccx = CC_X.empty () let get_real_env _ = empty_ccx let get_case_split_env _ = empty_ccx - let do_case_split env = env, E.Set.empty + let do_case_split env _ = env, E.Set.empty let add_term env _ ~add_in_cs:_ = env - let compute_concrete_model e = e + let compute_concrete_model _env = None let assume_th_elt e _ _ = e let theories_instances ~do_syntactic_matching:_ _ e _ _ _ = e, [] let get_assumed env = env.assumed_set - let output_concrete_model _fmt ~prop_model:_ _env = () + let reinit_cpt () = () + + let get_objectives _env = Util.MI.empty end diff --git a/src/lib/reasoners/theory.mli b/src/lib/reasoners/theory.mli index 9a47dac9e..85a8ee3a3 100644 --- a/src/lib/reasoners/theory.mli +++ b/src/lib/reasoners/theory.mli @@ -46,10 +46,12 @@ module type S = sig val extract_ground_terms : t -> Expr.Set.t val get_real_env : t -> Ccx.Main.t val get_case_split_env : t -> Ccx.Main.t - val do_case_split : t -> t * Expr.Set.t + val do_case_split : t -> Util.case_split_policy -> t * Expr.Set.t val add_term : t -> Expr.t -> add_in_cs:bool -> t - val compute_concrete_model : t -> t + val compute_concrete_model : + t -> + Models.t Lazy.t option val assume_th_elt : t -> Expr.th_elt -> Explanation.t -> t val theories_instances : @@ -59,16 +61,8 @@ module type S = sig int -> int -> t * Sig_rel.instances val get_assumed : t -> Expr.Set.t - - val output_concrete_model : - Format.formatter -> - prop_model:Expr.Set.t -> - t -> - unit - val reinit_cpt : unit -> unit - (** reinitializes the counter to zero *) - + val get_objectives : t -> Th_util.optimized_split Util.MI.t end module Main_Default : S diff --git a/src/lib/reasoners/uf.ml b/src/lib/reasoners/uf.ml index b16f6a854..358067fda 100644 --- a/src/lib/reasoners/uf.ml +++ b/src/lib/reasoners/uf.ml @@ -994,7 +994,7 @@ let assign_next env = *) let env, _ = add env s in (* important for termination *) let eq = LX.view (LX.mk_eq rep (make env s)) in - [eq, is_cs, Th_util.CS (Th_util.Th_UF, Numbers.Q.one)], env + [eq, is_cs, Th_util.CS (None, Th_util.Th_UF, Numbers.Q.one)], env in Debug.check_invariants "assign_next" env; res, env @@ -1006,82 +1006,195 @@ let is_a_good_model_value (x, _) = | [y] -> X.equal x y | _ -> false -let model_repr_of_term t env mrepr = +let is_const_term (x, _) = + match X.term_extract x with + | Some t, _ -> + E.const_term t + | _ -> + (*cannot test for theories which don't implement term_extract*) + true + +let model_repr_of_term t env mrepr unbounded = try ME.find t mrepr, mrepr with Not_found -> let mk = try ME.find t env.make with Not_found -> assert false in let rep,_ = try MapX.find mk env.repr with Not_found -> assert false in - let cls = - try SE.elements (MapX.find rep env.classes) - with Not_found -> assert false - in - let cls = - try List.rev_map (fun s -> s, ME.find s env.make) cls - with Not_found -> assert false + match unbounded with + | Some string_repr -> (rep, string_repr), mrepr + | None -> + let cls = + try SE.elements (MapX.find rep env.classes) + with Not_found -> assert false + in + let cls = + try List.rev_map (fun s -> s, ME.find s env.make) cls + with Not_found -> assert false + in + let e = X.choose_adequate_model t rep cls in + e, ME.add t e mrepr + +let is_optimization_op = function + | Sy.Op Sy.Optimize _ -> true + | _ -> false + +let compute_concrete_model_of_val + env t ((fprofs, cprofs, carrays, mrepr) as acc) unbounded = + let { E.f; xs; ty; _ } = E.term_view t in + (* Keep record constructors because models.ml expects them to be there *) + if (X.is_solvable_theory_symbol f ty + && not (Shostak.Records.is_mine_symb f ty)) + || E.is_fresh t || E.is_fresh_skolem t + || E.equal t E.vrai || E.equal t E.faux + || is_optimization_op f + then + acc + else + let xs, tys, mrepr = + List.fold_left + (fun (xs, tys, mrepr) x -> + let rep_x, mrepr = model_repr_of_term x env mrepr None in + assert (is_const_term rep_x); + (x, rep_x)::xs, + (E.type_info x)::tys, + mrepr + ) ([],[], mrepr) (List.rev xs) in - let e = X.choose_adequate_model t rep cls in - e, ME.add t e mrepr - -let compute_concrete_model ({ make; _ } as env) = - ME.fold - (fun t _mk ((fprofs, cprofs, carrays, mrepr) as acc) -> - let { E.f; xs; ty; _ } = E.term_view t in - (* Keep record constructors because models.ml expects them to be there *) - if (X.is_solvable_theory_symbol f ty - && not (Shostak.Records.is_mine_symb f ty)) - || E.is_fresh t || E.is_fresh_skolem t - || E.equal t E.vrai || E.equal t E.faux - then - acc - else - let xs, tys, mrepr = - List.fold_left - (fun (xs, tys, mrepr) x -> - let rep_x, mrepr = model_repr_of_term x env mrepr in - assert (is_a_good_model_value rep_x); - (x, rep_x)::xs, - (E.type_info x)::tys, - mrepr - ) ([],[], mrepr) (List.rev xs) - in - let rep, mrepr = model_repr_of_term t env mrepr in - assert (is_a_good_model_value rep); - match f, xs, ty with - | Sy.Op Sy.Set, _, _ -> acc - - | Sy.Op Sy.Get, [(_,(a,_));((_,(i,_)) as e)], _ -> - begin - match X.term_extract a with - | Some ta, true -> - let { E.f = f_ta; xs=xs_ta; _ } = E.term_view ta in - assert (xs_ta == []); - fprofs, - cprofs, - ModelMap.add (f_ta,[X.type_info i], ty) ([e], rep) carrays, - mrepr - - | _ -> assert false - end - - | _ -> - if tys == [] then - fprofs, ModelMap.add (f, tys, ty) (xs, rep) cprofs, carrays, - mrepr - else - ModelMap.add (f, tys, ty) (xs, rep) fprofs, cprofs, carrays, - mrepr + let rep, mrepr = model_repr_of_term t env mrepr unbounded in + assert (is_a_good_model_value rep); + assert (is_const_term rep); + match f, xs, ty with + | Sy.Op Sy.Set, _, _ -> acc + + | Sy.Op Sy.Get, [(_,(a,_));((_,(i,_)) as e)], _ -> + begin + match X.term_extract a with + | Some ta, true -> + let { E.f = f_ta; xs=xs_ta; _ } = E.term_view ta in + assert (xs_ta == []); + fprofs, + cprofs, + ModelMap.add (f_ta,[X.type_info i], ty) ([e], rep) carrays, + mrepr + + | _ -> assert false + end - ) make - (ModelMap.empty, ModelMap.empty, ModelMap.empty, ME.empty) + | _ -> + if tys == [] then + fprofs, ModelMap.add (f, tys, ty) (xs, rep) cprofs, carrays, + mrepr + else + ModelMap.add (f, tys, ty) (xs, rep) fprofs, cprofs, carrays, + mrepr -let output_concrete_model fmt ~prop_model env = - if Options.get_interpretation () then - let functions, constants, arrays, _ = - compute_concrete_model env in - Models.output_concrete_model fmt prop_model ~functions ~constants ~arrays -let save_cache () = - LX.save_cache () +(* A map of expressions / terms, ordered by depth first, and then by + Expr.compare for expressions with same depth. This structure will + be used to build a model, by starting with the inner/smaller terms + first. The values associated to the key will be their make *) +module MED = Map.Make + (struct + type t = Expr.t + let compare a b = + let c = Expr.depth a - Expr.depth b in + if c <> 0 then c + else Expr.compare a b + end) -let reinit_cache () = - LX.reinit_cache () +let terms env = ME.fold MED.add env.make MED.empty + +let compute_concrete_model ?(inline_obj_in_model=Util.MI.empty) env = + let bounded, pinfty, minfty = + Util.MI.fold + (fun _ord v ((bounded, pinfty, minfty) as acc) -> + let {Th_util.value; r; order = _; is_max = _; e=_} = v in + match value with + | Value _ -> + SetX.add v.Th_util.r bounded, pinfty, minfty + | Pinfinity -> bounded, SetX.add r pinfty, minfty + | Minfinity -> bounded, pinfty, SetX.add r minfty + | Unknown -> acc + ) inline_obj_in_model (SetX.empty, SetX.empty, SetX.empty) + in + let not_unbounded = pinfty == SetX.empty && minfty == SetX.empty in + (* Here, we fold on each term that appears in the 'make' map, + starting from those with smaller depth, and we compute a concrete + model for it. For the objectives (if any), we check if it should + be +/- infinity *) + MED.fold + (fun t mk acc -> + if SetX.mem mk pinfty then + (* mk's optimum is +infinity *) + compute_concrete_model_of_val env t acc (Some "+oo") + else + if SetX.mem mk minfty then + (* mk's optimum is -infinity *) + compute_concrete_model_of_val env t acc (Some "-oo") + else + if not_unbounded || SetX.mem mk bounded then + (* either the pb is bounded (or it isn't an optimization pb) + or we have an optimum for mk *) + compute_concrete_model_of_val env t acc None + else + acc + ) (terms env) + ( + ModelMap.empty, (* functions profile *) + ModelMap.empty, (* constants profile *) + ModelMap.empty, (* arrays profile *) + (Expr.Map.empty : (r * string) Expr.Map.t) (* a mapping from terms to + representatives/values in + model as a semantic value and + as a string *) + ) + +let save_cache () = LX.save_cache () + +let reinit_cache () = LX.reinit_cache () + +let compute_objectives optimized_splits env mrepr = + let seen_infinity = ref false in + Util.MI.map + (fun {Th_util.e; value; r=_; is_max=_; order=_} -> + e, + (if !seen_infinity then begin + (* every objective after 'oo' is printed as ]-oo, +oo[ *) + Models.Obj_unk + end + else + match value with + | Pinfinity -> seen_infinity := true; Obj_pinfty + | Minfinity -> seen_infinity := true; Obj_minfty + | Value _ -> + let (_r_x, r_s), _mrepr = model_repr_of_term e env mrepr None in + Obj_val r_s + | Unknown -> + (* in this case, we should have !seen_infinity == true. + Which is handled in the if branch. Moreover, we + continue optimization now even if infinity is + encountered. *) + assert false + ) + ) optimized_splits + +let extract_concrete_model ~prop_model ~optimized_splits env = + if Options.get_interpretation () then + Some (lazy ( + let inline_obj_in_model = + if Options.get_objectives_in_interpretation() then + (* take optimized_splits into account for model, but don't + print it in a separate section *) + optimized_splits + else + Util.MI.empty + in + let functions, constants, arrays, mrepr = + compute_concrete_model env ~inline_obj_in_model + in + let objectives = compute_objectives optimized_splits env mrepr in + { Models.propositional = prop_model; + functions; constants; arrays; objectives; + terms_values = mrepr } + )) + else + None diff --git a/src/lib/reasoners/uf.mli b/src/lib/reasoners/uf.mli index ddd80b567..7485e7b7a 100644 --- a/src/lib/reasoners/uf.mli +++ b/src/lib/reasoners/uf.mli @@ -71,14 +71,12 @@ val assign_next : t -> (r Xliteral.view * bool * Th_util.lit_origin) list * t (** {2 Counterexample function} *) -(** Compute a counterexample using the Uf environment and then print it on the - given formatter with the corresponding format setted with - Options.get_output_format *) -val output_concrete_model : - Format.formatter -> +(** Compute a counterexample using the Uf environment *) +val extract_concrete_model : prop_model:Expr.Set.t -> + optimized_splits:Th_util.optimized_split Util.MI.t -> t -> - unit + Models.t Lazy.t option (** saves the module's cache *) val save_cache : unit -> unit diff --git a/src/lib/structures/errors.ml b/src/lib/structures/errors.ml index 61473b3fc..aa5d2ba19 100644 --- a/src/lib/structures/errors.ml +++ b/src/lib/structures/errors.ml @@ -77,6 +77,7 @@ type typing_error = | BadPopCommand of {pushed : int; to_pop : int} | ShouldBePositive of int | PolymorphicEnum of string + | ShouldBeIntLiteral of string type run_error = | Invalid_steps_count of int @@ -197,18 +198,15 @@ let report_typing_error fmt = function | ShouldBeADT ty -> fprintf fmt "%a is not an algebraic, a record or an enumeration datatype" Ty.print ty - | MatchNotExhaustive missing -> fprintf fmt "Pattern-matching is not exhaustive. These cases are missing: %a" (Util.print_list ~sep:" |" ~pp:Hstring.print) missing - | MatchUnusedCases dead -> fprintf fmt "Pattern-matching contains unreachable cases. These cases are\ removed: %a" (Util.print_list ~sep:" |" ~pp:Hstring.print) dead - | NotAdtConstr (lbl, ty) -> fprintf fmt "The identifiant %s is not a constructor of an algebraic data type. \ @@ -220,10 +218,12 @@ let report_typing_error fmt = function | ShouldBePositive n -> fprintf fmt "This integer : %d should be positive" n - | PolymorphicEnum n -> fprintf fmt "Polymorphic enum definition for %s is not supported" n + | ShouldBeIntLiteral s -> + fprintf fmt + "This expression : %s should be an integer constant" s let report_run_error fmt = function | Invalid_steps_count i -> diff --git a/src/lib/structures/errors.mli b/src/lib/structures/errors.mli index 60ed5ffb5..680609124 100644 --- a/src/lib/structures/errors.mli +++ b/src/lib/structures/errors.mli @@ -83,6 +83,7 @@ type typing_error = | BadPopCommand of {pushed : int; to_pop : int} | ShouldBePositive of int | PolymorphicEnum of string + | ShouldBeIntLiteral of string (** Errors that can be raised at solving*) type run_error = diff --git a/src/lib/structures/expr.ml b/src/lib/structures/expr.ml index fc816cd14..baf318ffc 100644 --- a/src/lib/structures/expr.ml +++ b/src/lib/structures/expr.ml @@ -2687,6 +2687,9 @@ module Purification = struct | _ -> failwith "unexpected expression in purify_form" end + | Sy.Op Sy.Optimize _ -> + purify_literal e + | Sy.Void | Sy.Int _ | Sy.Real _ | Sy.Bitv _ | Sy.Op _ | Sy.MapsTo _ -> failwith "unexpected expression in purify_form: not a formula" diff --git a/src/lib/structures/parsed.ml b/src/lib/structures/parsed.ml index 3fe8f12ed..63bce5893 100644 --- a/src/lib/structures/parsed.ml +++ b/src/lib/structures/parsed.ml @@ -167,6 +167,7 @@ and pp_desc = | PPmatch of lexpr * (pattern * lexpr) list | PPisConstr of lexpr * string | PPproject of bool * lexpr * string + | PPoptimize of { expr : lexpr; order : string; is_max : bool } let rec pp_lexpr fmt {pp_desc; _} = let open Format in @@ -232,6 +233,10 @@ let rec pp_lexpr fmt {pp_desc; _} = | PPmatch (_le, _plel) -> fprintf fmt "match" | PPisConstr (le, s) -> fprintf fmt "isConstr: %a %s" pp_lexpr le s | PPproject (b, le, s) -> fprintf fmt "project: %b %a %s" b pp_lexpr le s + | PPoptimize {expr; order; is_max=true} -> + fprintf fmt "maximize(%a, %s)" pp_lexpr expr order + | PPoptimize {expr; order; is_max=false} -> + fprintf fmt "minimize(%a, %s)" pp_lexpr expr order and pp_lexpr_list fmt tl = Format.fprintf fmt "@[%a@]" @@ -263,6 +268,7 @@ type decl = | Rewriting of Loc.t * string * lexpr list | Goal of Loc.t * string * lexpr | Check_sat of Loc.t * string * lexpr + | Check_all_sat of Loc.t * string * string list | Logic of Loc.t * Symbols.name_kind * (string * string) list * plogic_type | Predicate_def of Loc.t * (string * string) * diff --git a/src/lib/structures/parsed.mli b/src/lib/structures/parsed.mli index aa2e14a4d..baa7fae8c 100644 --- a/src/lib/structures/parsed.mli +++ b/src/lib/structures/parsed.mli @@ -100,6 +100,7 @@ and pp_desc = | PPmatch of lexpr * (pattern * lexpr) list | PPisConstr of lexpr * string | PPproject of bool * lexpr * string + | PPoptimize of { expr : lexpr; order : string; is_max : bool } val pp_lexpr : Format.formatter -> lexpr -> unit val pp_lexpr_list : Format.formatter -> lexpr list -> unit @@ -124,6 +125,7 @@ type decl = | Rewriting of Loc.t * string * lexpr list | Goal of Loc.t * string * lexpr | Check_sat of Loc.t * string * lexpr + | Check_all_sat of Loc.t * string * string list | Logic of Loc.t * Symbols.name_kind * (string * string) list * plogic_type | Predicate_def of Loc.t * (string * string) * diff --git a/src/lib/structures/symbols.ml b/src/lib/structures/symbols.ml index e0fa1cef6..1a5e0ecb2 100644 --- a/src/lib/structures/symbols.ml +++ b/src/lib/structures/symbols.ml @@ -55,6 +55,7 @@ type operator = | Int_floor | Int_ceil | Integer_log2 | Max_real | Max_int | Min_real | Min_int | Not_theory_constant | Is_theory_constant | Linear_dependency + | Optimize of {order : int; is_max : bool} type lit = (* literals *) @@ -143,6 +144,10 @@ let compare_operators op1 op2 = let r = Int.compare i1 i2 in if r = 0 then Int.compare j1 j2 else r | Int2BV n1, Int2BV n2 -> Int.compare n1 n2 + | Optimize {order=o1; is_max=b1}, Optimize {order=o2; is_max=b2} -> + let c = o1 - o2 in + if c <> 0 then c + else Stdlib.compare b1 b2 | _ , (Plus | Minus | Mult | Div | Modulo | Real_is_int | Concat | Extract _ | Get | Set | Fixed | Float | Reach | Access _ | Record | Sqrt_real | Abs_int | Abs_real @@ -151,7 +156,7 @@ let compare_operators op1 op2 = | Integer_log2 | Pow | Integer_round | BVnot | BVand | BVor | Int2BV _ | BV2Nat | Not_theory_constant | Is_theory_constant | Linear_dependency - | Constr _ | Destruct _ | Tite) -> assert false + | Constr _ | Destruct _ | Tite | Optimize _) -> assert false ) let compare_builtin b1 b2 = @@ -341,6 +346,9 @@ let to_string ?(show_vars=true) x = match x with | Form form -> string_of_form form | Let -> "let" + | Op (Optimize {order; is_max=true}) -> Format.sprintf "maximize(-,%d)" order + | Op (Optimize {order; is_max=false}) -> Format.sprintf "minimize(-,%d)" order + let to_string_clean s = to_string ~show_vars:false s let to_string s = to_string ~show_vars:true s diff --git a/src/lib/structures/symbols.mli b/src/lib/structures/symbols.mli index 6cf275e44..1fd2d452a 100644 --- a/src/lib/structures/symbols.mli +++ b/src/lib/structures/symbols.mli @@ -55,6 +55,7 @@ type operator = | Int_floor | Int_ceil | Integer_log2 | Max_real | Max_int | Min_real | Min_int | Not_theory_constant | Is_theory_constant | Linear_dependency + | Optimize of {order : int; is_max : bool} type lit = (* literals *) diff --git a/src/lib/structures/ty.ml b/src/lib/structures/ty.ml index 141559cca..bcbcdcf58 100644 --- a/src/lib/structures/ty.ml +++ b/src/lib/structures/ty.ml @@ -704,13 +704,14 @@ let print_full = (** Goal sort *) -type goal_sort = Cut | Check | Thm | Sat +type goal_sort = Cut | Check | Thm | Sat | AllSat of string list let print_goal_sort fmt = function | Cut -> Format.fprintf fmt "cut" | Check -> Format.fprintf fmt "check" | Thm -> Format.fprintf fmt "thm" | Sat -> Format.fprintf fmt "sat" + | AllSat _ -> Format.fprintf fmt "all-sat" let fresh_hypothesis_name = let cpt = ref 0 in diff --git a/src/lib/structures/ty.mli b/src/lib/structures/ty.mli index 895bac4e2..db36dbefd 100644 --- a/src/lib/structures/ty.mli +++ b/src/lib/structures/ty.mli @@ -286,6 +286,9 @@ type goal_sort = (** The goal to be proved valid *) | Sat (** The goal to be proved satisfiable *) + | AllSat of string list + (** Rather generate all models involving the given list of + propositional variables *) (** Goal sort. Used in typed declarations. *) val fresh_hypothesis_name : goal_sort -> string diff --git a/src/lib/util/lists.ml b/src/lib/util/lists.ml index 26c6d6233..93a65e6f1 100644 --- a/src/lib/util/lists.ml +++ b/src/lib/util/lists.ml @@ -84,3 +84,18 @@ let rec equal eq l1 l2 = | [], [] -> true | hd1 :: tl1, hd2 :: tl2 when eq hd1 hd2 -> equal eq tl1 tl2 | _ -> false + +let partition_map ?(keep_ordering=true) f l = + let rec part left right = function + | [] -> + if keep_ordering then List.rev left, List.rev right + else left, right + | x :: l -> + let left, right = + match f x with + | Ok x -> x :: left, right + | Error x -> left, x :: right + in + part left right l + in + part [] [] l diff --git a/src/lib/util/lists.mli b/src/lib/util/lists.mli index 684f0ca23..8b4dcd12e 100644 --- a/src/lib/util/lists.mli +++ b/src/lib/util/lists.mli @@ -64,3 +64,11 @@ val equal : ('a -> 'a -> bool) -> 'a list -> 'a list -> bool respectively, we have [eq ai bi]. This is a backport of List.equal from OCaml 4.12.0 *) + +val partition_map : + ?keep_ordering:bool -> + ('a -> ('b, 'c) result) -> 'a list -> 'b list * 'c list +(** Similar to List.partition, but also applies a map on the elements + of the resulting lists on the fly. Ordering of elements will not be + kept if [keep_ordering] is unset (Default value is [keep_ordering = + true]), in which case, resulting lists are reverted *) diff --git a/src/lib/util/options.ml b/src/lib/util/options.ml index bbfe77d6e..1e811a95f 100644 --- a/src/lib/util/options.ml +++ b/src/lib/util/options.ml @@ -326,17 +326,25 @@ let get_timelimit_per_goal () = !timelimit_per_goal let interpretation = ref INone let dump_models = ref false let interpretation_use_underscore = ref false +let objectives_in_interpretation = ref false +let all_models = ref false +let show_prop_model = ref false let output_format = ref Native let model_type = ref Value let infer_output_format = ref true +let timeout_as_unknown = ref false let unsat_core = ref false let set_interpretation b = interpretation := b let set_dump_models b = dump_models := b let set_interpretation_use_underscore b = interpretation_use_underscore := b +let set_objectives_in_interpretation b = objectives_in_interpretation := b +let set_all_models b = all_models := b +let set_show_prop_model b = show_prop_model := b let set_output_format b = output_format := b let set_model_type t = model_type := t let set_infer_output_format b = infer_output_format := b +let set_timeout_as_unknown b = timeout_as_unknown := b let set_unsat_core b = unsat_core := b let equal_mode a b = @@ -371,11 +379,15 @@ let get_first_interpretation () = equal_mode !interpretation IFirst let get_every_interpretation () = equal_mode !interpretation IEvery let get_last_interpretation () = equal_mode !interpretation ILast let get_interpretation_use_underscore () = !interpretation_use_underscore +let get_objectives_in_interpretation () = !objectives_in_interpretation +let get_all_models () = !all_models +let get_show_prop_model () = !show_prop_model let get_output_format () = !output_format let get_output_smtlib () = equal_output_format !output_format Smtlib2 let get_model_type () = !model_type let get_model_type_constraints () = equal_mode_type !model_type Constraints let get_infer_output_format () = !infer_output_format +let get_timeout_as_unknwon () = !timeout_as_unknown let get_unsat_core () = !unsat_core || !save_used_context || !debug_unsat_core (** Profiling options *) diff --git a/src/lib/util/options.mli b/src/lib/util/options.mli index 21d841bc7..d4e5b81a8 100644 --- a/src/lib/util/options.mli +++ b/src/lib/util/options.mli @@ -222,6 +222,18 @@ val set_dump_models : bool -> unit {!val:get_interpretation_use_underscore} *) val set_interpretation_use_underscore : bool -> unit +(** Set [objectives_in_interpretation] accessible with + {!val:get_objectives_in_interpretation} *) +val set_objectives_in_interpretation : bool -> unit + +(** Set [all_models] accessible with + {!val:get_all_models} *) +val set_all_models : bool -> unit + +(** Set [show_prop_model] accessible with + {!val:get_show_prop_model} *) +val set_show_prop_model : bool -> unit + (** Set [max_split] accessible with {!val:get_max_split} *) val set_max_split : Numbers.Q.t -> unit @@ -288,6 +300,9 @@ val set_triggers_var : bool -> unit (** Set [type_smt2] accessible with {!val:get_type_smt2} *) val set_type_smt2 : bool -> unit +(** Set [timeout_as_unknown] accessible with {!val:get_timeout_as_unknown} *) +val set_timeout_as_unknown : bool -> unit + (** Set [unsat_core] accessible with {!val:get_unsat_core} *) val set_unsat_core : bool -> unit @@ -734,6 +749,24 @@ val get_last_interpretation : unit -> bool val get_interpretation_use_underscore : unit -> bool (** Default to [false] *) +(** [true] if the objectives_in_interpretation is set to inline + pretty-printing of optimized expressions in the model instead of a + dedicated section '(objectives ...)'. Be aware that the model may + be shrunk or not accurate if some expressions to optimize are + unbounded. *) +val get_objectives_in_interpretation : unit -> bool +(** Default to [false] *) + +(** [true] if the all_models flag is set to generate all propositional + models *) +val get_all_models : unit -> bool +(** Default to [false] *) + +(** [true] if the show_prop_model flag is set to also output the + propositional model, when a model is requested *) +val get_show_prop_model : unit -> bool +(** Default to [false] *) + (** Value specifying the default output format. possible values are {ul {- native} {- smtlib2} {- why3}} . *) @@ -760,6 +793,11 @@ val get_model_type_constraints : unit -> bool val get_infer_output_format : unit -> bool (** Default to [true] *) +(** [true] if Alt-Ergo returns [unknown] instead of [timeout] when the timelimit + is reached *) +val get_timeout_as_unknwon : unit -> bool +(** Default to [false] *) + (** [true] if experimental support for unsat-cores is on. *) val get_unsat_core : unit -> bool (** Default to [false] *) diff --git a/src/lib/util/printer.ml b/src/lib/util/printer.ml index c67e670b7..e67720d03 100644 --- a/src/lib/util/printer.ml +++ b/src/lib/util/printer.ml @@ -369,10 +369,12 @@ let print_status_unknown ?(validity_mode=true) loc ("I don't know","unknown","fg_cyan") loc time steps goal +(* TODO: The timeout answer doesn't exist in the SMT-LIB standard. + We should change this function. *) let print_status_timeout ?(validity_mode=true) loc time steps goal = print_status ~validity_mode - ("Timeout","timeout","fg_orange") loc + ("Timeout","unknown","fg_orange") loc time steps goal let print_status_preprocess ?(validity_mode=true) diff --git a/src/parsers/native_lexer.mll b/src/parsers/native_lexer.mll index 1090e6329..e282e95d6 100644 --- a/src/parsers/native_lexer.mll +++ b/src/parsers/native_lexer.mll @@ -79,6 +79,8 @@ "match" , MATCH; "with" , WITH; "of" , OF; + "maximize" , MAXIMIZE; + "minimize" , MINIMIZE; ] in List.iter (fun (s, kw) -> Hashtbl.add tbl s kw) kw_list; diff --git a/src/parsers/native_parser.mly b/src/parsers/native_parser.mly index 8399a4c85..0e4664b6e 100644 --- a/src/parsers/native_parser.mly +++ b/src/parsers/native_parser.mly @@ -54,6 +54,7 @@ %token RIGHTPAR RIGHTSQ RIGHTBR %token SLASH POW POWDOT %token THEN TIMES TRUE TYPE +%token MAXIMIZE MINIMIZE /* Precedences */ @@ -379,6 +380,11 @@ lexpr: | MATCH e = lexpr WITH cases = list1_match_cases END { mk_match ($startpos, $endpos) e (List.rev cases) } +| MAXIMIZE LEFTPAR simple_expr COMMA INTEGER RIGHTPAR + { mk_maximize ($startpos, $endpos) $3 $5 } + +| MINIMIZE LEFTPAR simple_expr COMMA INTEGER RIGHTPAR + { mk_minimize ($startpos, $endpos) $3 $5 } list1_match_cases: | p = simple_pattern RIGHTARROW e = lexpr { [p, e]} diff --git a/src/parsers/psmt2_to_alt_ergo.ml b/src/parsers/psmt2_to_alt_ergo.ml index b43390874..f9cd5bd04 100644 --- a/src/parsers/psmt2_to_alt_ergo.ml +++ b/src/parsers/psmt2_to_alt_ergo.ml @@ -390,6 +390,13 @@ module Translate = struct let count_goals = ref 0 + let translate_check_all_sat command l = + let loc = pos command in + incr count_goals; + let gname = "g_" ^ (string_of_int !count_goals) in + let l = List.rev_map (fun symb -> symb.c) (List.rev l) in + mk_check_all_sat loc gname l + let translate_check_sat command l = let loc = pos command in incr count_goals; @@ -403,16 +410,39 @@ module Translate = struct in mk_goal loc gname e + let translate_optimize = + let cpt = ref 0 in + fun ~is_maximize pos term -> + Printer.print_wrn + "Warning: optimize commands only work if the file contains check-sat@."; + assert (name_of_assert term == None); + incr cpt; + let e = translate_term [] term in + let func = if is_maximize then mk_maximize else mk_minimize in + let e = func pos e (string_of_int !cpt) in + let name = Format.sprintf "unamed__assert__%d" !cpt in + mk_generic_axiom pos name e + let translate_command acc command = match command.c with | Cmd_Assert(assert_term) -> (translate_assert (pos command) assert_term) :: acc + + | Cmd_Maximize t -> + (translate_optimize ~is_maximize:true (pos command) t) :: acc + + + | Cmd_Minimize t -> + (translate_optimize ~is_maximize:false (pos command) t) :: acc + | Cmd_CheckEntailment(assert_term) -> (translate_goal (pos command) assert_term) :: acc | Cmd_CheckSat -> (translate_check_sat command []) :: acc | Cmd_CheckSatAssum l -> (translate_check_sat command l) :: acc + | Cmd_CheckAllSat l -> + (translate_check_all_sat command l) :: acc | Cmd_DeclareConst(symbol,const_dec) -> (translate_decl_fun symbol [] (translate_const_dec const_dec)) :: acc | Cmd_DeclareDataType(symbol,datatype_dec) -> @@ -452,9 +482,6 @@ module Translate = struct | Cmd_SetInfo _ -> not_supported "set-info"; acc | Cmd_Push n -> translate_push_pop mk_push n (pos command) :: acc | Cmd_Pop n -> translate_push_pop mk_pop n (pos command) :: acc - | Cmd_CheckAllSat _ -> not_supported "check-all-sat"; acc - | Cmd_Maximize _ -> not_supported "maximize"; acc - | Cmd_Minimize _ -> not_supported "minimize"; acc | Cmd_Exit -> acc let init () = @@ -483,7 +510,7 @@ module Translate = struct [] end else begin - let l = List.fold_left translate_command [] (List.rev commands) in + let l = List.rev @@ List.fold_left translate_command [] commands in (init ()) @ l end diff --git a/tests/dune.inc b/tests/dune.inc index b94a3f7f2..e6a429ad8 100644 --- a/tests/dune.inc +++ b/tests/dune.inc @@ -21,12 +21,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty085_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty085_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty085.ae)) @@ -47,12 +46,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty085_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty085.ae)) @@ -72,12 +70,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty085_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty085.ae)) @@ -96,12 +93,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty085_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty085.ae)) @@ -120,12 +116,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty085_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty085.ae)) @@ -144,12 +139,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty085_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty085_cdcl.output) (deps (:input testfile-ac_empty085.ae)) @@ -167,10 +161,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty085.expected testfile-ac_empty085_cdcl.output))) + (deps testfile-ac_empty085_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_cdcl.output))) (rule (target testfile-ac_empty085_tableaux_cdcl.output) (deps (:input testfile-ac_empty085.ae)) @@ -188,12 +183,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_tableaux_cdcl.output))) + (deps testfile-ac_empty085_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_tableaux_cdcl.output))) (rule (target testfile-ac_empty085_tableaux.output) (deps (:input testfile-ac_empty085.ae)) @@ -211,12 +205,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty085.expected - testfile-ac_empty085_tableaux.output))) + (deps testfile-ac_empty085_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_tableaux.output))) (rule (target testfile-ac_empty085_legacy.output) (deps (:input testfile-ac_empty085.ae)) @@ -233,10 +226,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty085.expected testfile-ac_empty085_legacy.output))) + (deps testfile-ac_empty085_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_legacy.output))) (rule (target testfile-ac_empty085_dolmen.output) (deps (:input testfile-ac_empty085.ae)) @@ -253,10 +247,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty085.expected testfile-ac_empty085_dolmen.output))) + (deps testfile-ac_empty085_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_dolmen.output))) (rule (target testfile-ac_empty085_fpa.output) (deps (:input testfile-ac_empty085.ae)) @@ -273,10 +268,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty085.expected testfile-ac_empty085_fpa.output))) + (deps testfile-ac_empty085_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty085.expected testfile-ac_empty085_fpa.output))) (rule (target testfile-ac_empty084_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty084.ae)) @@ -295,12 +291,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty084_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty084_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty084.ae)) @@ -321,12 +316,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty084_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty084.ae)) @@ -346,12 +340,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty084_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty084.ae)) @@ -370,12 +363,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty084_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty084.ae)) @@ -394,12 +386,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty084_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty084.ae)) @@ -418,12 +409,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty084_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty084_cdcl.output) (deps (:input testfile-ac_empty084.ae)) @@ -441,10 +431,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty084.expected testfile-ac_empty084_cdcl.output))) + (deps testfile-ac_empty084_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_cdcl.output))) (rule (target testfile-ac_empty084_tableaux_cdcl.output) (deps (:input testfile-ac_empty084.ae)) @@ -462,12 +453,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_tableaux_cdcl.output))) + (deps testfile-ac_empty084_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_tableaux_cdcl.output))) (rule (target testfile-ac_empty084_tableaux.output) (deps (:input testfile-ac_empty084.ae)) @@ -485,12 +475,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty084.expected - testfile-ac_empty084_tableaux.output))) + (deps testfile-ac_empty084_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_tableaux.output))) (rule (target testfile-ac_empty084_legacy.output) (deps (:input testfile-ac_empty084.ae)) @@ -507,10 +496,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty084.expected testfile-ac_empty084_legacy.output))) + (deps testfile-ac_empty084_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_legacy.output))) (rule (target testfile-ac_empty084_dolmen.output) (deps (:input testfile-ac_empty084.ae)) @@ -527,10 +517,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty084.expected testfile-ac_empty084_dolmen.output))) + (deps testfile-ac_empty084_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_dolmen.output))) (rule (target testfile-ac_empty084_fpa.output) (deps (:input testfile-ac_empty084.ae)) @@ -547,10 +538,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty084.expected testfile-ac_empty084_fpa.output))) + (deps testfile-ac_empty084_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty084.expected testfile-ac_empty084_fpa.output))) (rule (target testfile-ac_empty083_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty083.ae)) @@ -569,12 +561,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty083_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty083.ae)) @@ -595,12 +586,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty083.ae)) @@ -620,12 +610,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty083_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty083.ae)) @@ -644,12 +633,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty083_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty083.ae)) @@ -668,12 +656,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty083_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty083.ae)) @@ -692,12 +679,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty083_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty083_cdcl.output) (deps (:input testfile-ac_empty083.ae)) @@ -715,10 +701,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty083.expected testfile-ac_empty083_cdcl.output))) + (deps testfile-ac_empty083_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_cdcl.output))) (rule (target testfile-ac_empty083_tableaux_cdcl.output) (deps (:input testfile-ac_empty083.ae)) @@ -736,12 +723,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_tableaux_cdcl.output))) + (deps testfile-ac_empty083_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_tableaux_cdcl.output))) (rule (target testfile-ac_empty083_tableaux.output) (deps (:input testfile-ac_empty083.ae)) @@ -759,12 +745,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty083.expected - testfile-ac_empty083_tableaux.output))) + (deps testfile-ac_empty083_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_tableaux.output))) (rule (target testfile-ac_empty083_legacy.output) (deps (:input testfile-ac_empty083.ae)) @@ -781,10 +766,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty083.expected testfile-ac_empty083_legacy.output))) + (deps testfile-ac_empty083_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_legacy.output))) (rule (target testfile-ac_empty083_dolmen.output) (deps (:input testfile-ac_empty083.ae)) @@ -801,10 +787,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty083.expected testfile-ac_empty083_dolmen.output))) + (deps testfile-ac_empty083_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_dolmen.output))) (rule (target testfile-ac_empty083_fpa.output) (deps (:input testfile-ac_empty083.ae)) @@ -821,10 +808,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty083.expected testfile-ac_empty083_fpa.output))) + (deps testfile-ac_empty083_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty083.expected testfile-ac_empty083_fpa.output))) (rule (target testfile-ac_empty082_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty082.ae)) @@ -843,12 +831,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty082_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty082.ae)) @@ -869,12 +856,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty082.ae)) @@ -894,12 +880,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty082_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty082.ae)) @@ -918,12 +903,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty082_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty082.ae)) @@ -942,12 +926,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty082_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty082.ae)) @@ -966,12 +949,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty082_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty082_cdcl.output) (deps (:input testfile-ac_empty082.ae)) @@ -989,10 +971,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty082.expected testfile-ac_empty082_cdcl.output))) + (deps testfile-ac_empty082_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_cdcl.output))) (rule (target testfile-ac_empty082_tableaux_cdcl.output) (deps (:input testfile-ac_empty082.ae)) @@ -1010,12 +993,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_tableaux_cdcl.output))) + (deps testfile-ac_empty082_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_tableaux_cdcl.output))) (rule (target testfile-ac_empty082_tableaux.output) (deps (:input testfile-ac_empty082.ae)) @@ -1033,12 +1015,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty082.expected - testfile-ac_empty082_tableaux.output))) + (deps testfile-ac_empty082_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_tableaux.output))) (rule (target testfile-ac_empty082_legacy.output) (deps (:input testfile-ac_empty082.ae)) @@ -1055,10 +1036,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty082.expected testfile-ac_empty082_legacy.output))) + (deps testfile-ac_empty082_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_legacy.output))) (rule (target testfile-ac_empty082_dolmen.output) (deps (:input testfile-ac_empty082.ae)) @@ -1075,10 +1057,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty082.expected testfile-ac_empty082_dolmen.output))) + (deps testfile-ac_empty082_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_dolmen.output))) (rule (target testfile-ac_empty082_fpa.output) (deps (:input testfile-ac_empty082.ae)) @@ -1095,10 +1078,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty082.expected testfile-ac_empty082_fpa.output))) + (deps testfile-ac_empty082_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty082.expected testfile-ac_empty082_fpa.output))) (rule (target testfile-ac_empty081_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty081.ae)) @@ -1117,12 +1101,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty081_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty081.ae)) @@ -1143,12 +1126,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty081.ae)) @@ -1168,12 +1150,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty081_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty081.ae)) @@ -1192,12 +1173,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty081_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty081.ae)) @@ -1216,12 +1196,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty081_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty081.ae)) @@ -1240,12 +1219,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty081_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty081_cdcl.output) (deps (:input testfile-ac_empty081.ae)) @@ -1263,10 +1241,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty081.expected testfile-ac_empty081_cdcl.output))) + (deps testfile-ac_empty081_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_cdcl.output))) (rule (target testfile-ac_empty081_tableaux_cdcl.output) (deps (:input testfile-ac_empty081.ae)) @@ -1284,12 +1263,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_tableaux_cdcl.output))) + (deps testfile-ac_empty081_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_tableaux_cdcl.output))) (rule (target testfile-ac_empty081_tableaux.output) (deps (:input testfile-ac_empty081.ae)) @@ -1307,12 +1285,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty081.expected - testfile-ac_empty081_tableaux.output))) + (deps testfile-ac_empty081_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_tableaux.output))) (rule (target testfile-ac_empty081_legacy.output) (deps (:input testfile-ac_empty081.ae)) @@ -1329,10 +1306,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty081.expected testfile-ac_empty081_legacy.output))) + (deps testfile-ac_empty081_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_legacy.output))) (rule (target testfile-ac_empty081_dolmen.output) (deps (:input testfile-ac_empty081.ae)) @@ -1349,10 +1327,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty081.expected testfile-ac_empty081_dolmen.output))) + (deps testfile-ac_empty081_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_dolmen.output))) (rule (target testfile-ac_empty081_fpa.output) (deps (:input testfile-ac_empty081.ae)) @@ -1369,10 +1348,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty081.expected testfile-ac_empty081_fpa.output))) + (deps testfile-ac_empty081_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty081.expected testfile-ac_empty081_fpa.output))) (rule (target testfile-ac_empty080_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty080.ae)) @@ -1391,12 +1371,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty080_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty080.ae)) @@ -1417,12 +1396,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty080.ae)) @@ -1442,12 +1420,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty080_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty080.ae)) @@ -1466,12 +1443,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty080_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty080.ae)) @@ -1490,12 +1466,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty080_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty080.ae)) @@ -1514,12 +1489,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty080_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty080_cdcl.output) (deps (:input testfile-ac_empty080.ae)) @@ -1537,10 +1511,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty080.expected testfile-ac_empty080_cdcl.output))) + (deps testfile-ac_empty080_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_cdcl.output))) (rule (target testfile-ac_empty080_tableaux_cdcl.output) (deps (:input testfile-ac_empty080.ae)) @@ -1558,12 +1533,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_tableaux_cdcl.output))) + (deps testfile-ac_empty080_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_tableaux_cdcl.output))) (rule (target testfile-ac_empty080_tableaux.output) (deps (:input testfile-ac_empty080.ae)) @@ -1581,12 +1555,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty080.expected - testfile-ac_empty080_tableaux.output))) + (deps testfile-ac_empty080_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_tableaux.output))) (rule (target testfile-ac_empty080_legacy.output) (deps (:input testfile-ac_empty080.ae)) @@ -1603,10 +1576,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty080.expected testfile-ac_empty080_legacy.output))) + (deps testfile-ac_empty080_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_legacy.output))) (rule (target testfile-ac_empty080_dolmen.output) (deps (:input testfile-ac_empty080.ae)) @@ -1623,10 +1597,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty080.expected testfile-ac_empty080_dolmen.output))) + (deps testfile-ac_empty080_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_dolmen.output))) (rule (target testfile-ac_empty080_fpa.output) (deps (:input testfile-ac_empty080.ae)) @@ -1643,10 +1618,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty080.expected testfile-ac_empty080_fpa.output))) + (deps testfile-ac_empty080_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty080.expected testfile-ac_empty080_fpa.output))) (rule (target testfile-ac_empty079_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty079.ae)) @@ -1665,12 +1641,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty079_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty079.ae)) @@ -1691,12 +1666,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty079.ae)) @@ -1716,12 +1690,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty079_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty079.ae)) @@ -1740,12 +1713,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty079_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty079.ae)) @@ -1764,12 +1736,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty079_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty079.ae)) @@ -1788,12 +1759,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty079_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty079_cdcl.output) (deps (:input testfile-ac_empty079.ae)) @@ -1811,10 +1781,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty079.expected testfile-ac_empty079_cdcl.output))) + (deps testfile-ac_empty079_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_cdcl.output))) (rule (target testfile-ac_empty079_tableaux_cdcl.output) (deps (:input testfile-ac_empty079.ae)) @@ -1832,12 +1803,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_tableaux_cdcl.output))) + (deps testfile-ac_empty079_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_tableaux_cdcl.output))) (rule (target testfile-ac_empty079_tableaux.output) (deps (:input testfile-ac_empty079.ae)) @@ -1855,12 +1825,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty079.expected - testfile-ac_empty079_tableaux.output))) + (deps testfile-ac_empty079_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_tableaux.output))) (rule (target testfile-ac_empty079_legacy.output) (deps (:input testfile-ac_empty079.ae)) @@ -1877,10 +1846,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty079.expected testfile-ac_empty079_legacy.output))) + (deps testfile-ac_empty079_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_legacy.output))) (rule (target testfile-ac_empty079_dolmen.output) (deps (:input testfile-ac_empty079.ae)) @@ -1897,10 +1867,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty079.expected testfile-ac_empty079_dolmen.output))) + (deps testfile-ac_empty079_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_dolmen.output))) (rule (target testfile-ac_empty079_fpa.output) (deps (:input testfile-ac_empty079.ae)) @@ -1917,10 +1888,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty079.expected testfile-ac_empty079_fpa.output))) + (deps testfile-ac_empty079_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty079.expected testfile-ac_empty079_fpa.output))) (rule (target testfile-ac_empty078_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty078.ae)) @@ -1939,12 +1911,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty078_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty078.ae)) @@ -1965,12 +1936,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty078.ae)) @@ -1990,12 +1960,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty078_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty078.ae)) @@ -2014,12 +1983,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty078_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty078.ae)) @@ -2038,12 +2006,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty078_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty078.ae)) @@ -2062,12 +2029,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty078_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty078_cdcl.output) (deps (:input testfile-ac_empty078.ae)) @@ -2085,10 +2051,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty078.expected testfile-ac_empty078_cdcl.output))) + (deps testfile-ac_empty078_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_cdcl.output))) (rule (target testfile-ac_empty078_tableaux_cdcl.output) (deps (:input testfile-ac_empty078.ae)) @@ -2106,12 +2073,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_tableaux_cdcl.output))) + (deps testfile-ac_empty078_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_tableaux_cdcl.output))) (rule (target testfile-ac_empty078_tableaux.output) (deps (:input testfile-ac_empty078.ae)) @@ -2129,12 +2095,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty078.expected - testfile-ac_empty078_tableaux.output))) + (deps testfile-ac_empty078_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_tableaux.output))) (rule (target testfile-ac_empty078_legacy.output) (deps (:input testfile-ac_empty078.ae)) @@ -2151,10 +2116,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty078.expected testfile-ac_empty078_legacy.output))) + (deps testfile-ac_empty078_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_legacy.output))) (rule (target testfile-ac_empty078_dolmen.output) (deps (:input testfile-ac_empty078.ae)) @@ -2171,10 +2137,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty078.expected testfile-ac_empty078_dolmen.output))) + (deps testfile-ac_empty078_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_dolmen.output))) (rule (target testfile-ac_empty078_fpa.output) (deps (:input testfile-ac_empty078.ae)) @@ -2191,10 +2158,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty078.expected testfile-ac_empty078_fpa.output))) + (deps testfile-ac_empty078_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty078.expected testfile-ac_empty078_fpa.output))) (rule (target testfile-ac_empty077_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty077.ae)) @@ -2213,12 +2181,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty077_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty077.ae)) @@ -2239,12 +2206,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty077.ae)) @@ -2264,12 +2230,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty077_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty077.ae)) @@ -2288,12 +2253,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty077_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty077.ae)) @@ -2312,12 +2276,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty077_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty077.ae)) @@ -2336,12 +2299,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty077_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty077_cdcl.output) (deps (:input testfile-ac_empty077.ae)) @@ -2359,10 +2321,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty077.expected testfile-ac_empty077_cdcl.output))) + (deps testfile-ac_empty077_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_cdcl.output))) (rule (target testfile-ac_empty077_tableaux_cdcl.output) (deps (:input testfile-ac_empty077.ae)) @@ -2380,12 +2343,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_tableaux_cdcl.output))) + (deps testfile-ac_empty077_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_tableaux_cdcl.output))) (rule (target testfile-ac_empty077_tableaux.output) (deps (:input testfile-ac_empty077.ae)) @@ -2403,12 +2365,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty077.expected - testfile-ac_empty077_tableaux.output))) + (deps testfile-ac_empty077_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_tableaux.output))) (rule (target testfile-ac_empty077_legacy.output) (deps (:input testfile-ac_empty077.ae)) @@ -2425,10 +2386,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty077.expected testfile-ac_empty077_legacy.output))) + (deps testfile-ac_empty077_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_legacy.output))) (rule (target testfile-ac_empty077_dolmen.output) (deps (:input testfile-ac_empty077.ae)) @@ -2445,10 +2407,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty077.expected testfile-ac_empty077_dolmen.output))) + (deps testfile-ac_empty077_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_dolmen.output))) (rule (target testfile-ac_empty077_fpa.output) (deps (:input testfile-ac_empty077.ae)) @@ -2465,10 +2428,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty077.expected testfile-ac_empty077_fpa.output))) + (deps testfile-ac_empty077_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty077.expected testfile-ac_empty077_fpa.output))) (rule (target testfile-ac_empty076_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty076.ae)) @@ -2487,12 +2451,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty076_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty076.ae)) @@ -2513,12 +2476,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty076.ae)) @@ -2538,12 +2500,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty076_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty076.ae)) @@ -2562,12 +2523,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty076_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty076.ae)) @@ -2586,12 +2546,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty076_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty076.ae)) @@ -2610,12 +2569,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty076_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty076_cdcl.output) (deps (:input testfile-ac_empty076.ae)) @@ -2633,10 +2591,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty076.expected testfile-ac_empty076_cdcl.output))) + (deps testfile-ac_empty076_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_cdcl.output))) (rule (target testfile-ac_empty076_tableaux_cdcl.output) (deps (:input testfile-ac_empty076.ae)) @@ -2654,12 +2613,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_tableaux_cdcl.output))) + (deps testfile-ac_empty076_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_tableaux_cdcl.output))) (rule (target testfile-ac_empty076_tableaux.output) (deps (:input testfile-ac_empty076.ae)) @@ -2677,12 +2635,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty076.expected - testfile-ac_empty076_tableaux.output))) + (deps testfile-ac_empty076_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_tableaux.output))) (rule (target testfile-ac_empty076_legacy.output) (deps (:input testfile-ac_empty076.ae)) @@ -2699,10 +2656,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty076.expected testfile-ac_empty076_legacy.output))) + (deps testfile-ac_empty076_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_legacy.output))) (rule (target testfile-ac_empty076_dolmen.output) (deps (:input testfile-ac_empty076.ae)) @@ -2719,10 +2677,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty076.expected testfile-ac_empty076_dolmen.output))) + (deps testfile-ac_empty076_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_dolmen.output))) (rule (target testfile-ac_empty076_fpa.output) (deps (:input testfile-ac_empty076.ae)) @@ -2739,10 +2698,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty076.expected testfile-ac_empty076_fpa.output))) + (deps testfile-ac_empty076_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty076.expected testfile-ac_empty076_fpa.output))) (rule (target testfile-ac_empty075_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty075.ae)) @@ -2761,12 +2721,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty075_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty075.ae)) @@ -2787,12 +2746,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty075.ae)) @@ -2812,12 +2770,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty075_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty075.ae)) @@ -2836,12 +2793,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty075_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty075.ae)) @@ -2860,12 +2816,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty075_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty075.ae)) @@ -2884,12 +2839,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty075_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty075_cdcl.output) (deps (:input testfile-ac_empty075.ae)) @@ -2907,10 +2861,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty075.expected testfile-ac_empty075_cdcl.output))) + (deps testfile-ac_empty075_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_cdcl.output))) (rule (target testfile-ac_empty075_tableaux_cdcl.output) (deps (:input testfile-ac_empty075.ae)) @@ -2928,12 +2883,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_tableaux_cdcl.output))) + (deps testfile-ac_empty075_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_tableaux_cdcl.output))) (rule (target testfile-ac_empty075_tableaux.output) (deps (:input testfile-ac_empty075.ae)) @@ -2951,12 +2905,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty075.expected - testfile-ac_empty075_tableaux.output))) + (deps testfile-ac_empty075_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_tableaux.output))) (rule (target testfile-ac_empty075_legacy.output) (deps (:input testfile-ac_empty075.ae)) @@ -2973,10 +2926,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty075.expected testfile-ac_empty075_legacy.output))) + (deps testfile-ac_empty075_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_legacy.output))) (rule (target testfile-ac_empty075_dolmen.output) (deps (:input testfile-ac_empty075.ae)) @@ -2993,10 +2947,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty075.expected testfile-ac_empty075_dolmen.output))) + (deps testfile-ac_empty075_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_dolmen.output))) (rule (target testfile-ac_empty075_fpa.output) (deps (:input testfile-ac_empty075.ae)) @@ -3013,10 +2968,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty075.expected testfile-ac_empty075_fpa.output))) + (deps testfile-ac_empty075_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty075.expected testfile-ac_empty075_fpa.output))) (rule (target testfile-ac_empty074_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty074.ae)) @@ -3035,12 +2991,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty074_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty074.ae)) @@ -3061,12 +3016,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty074.ae)) @@ -3086,12 +3040,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty074_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty074.ae)) @@ -3110,12 +3063,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty074_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty074.ae)) @@ -3134,12 +3086,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty074_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty074.ae)) @@ -3158,12 +3109,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty074_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty074_cdcl.output) (deps (:input testfile-ac_empty074.ae)) @@ -3181,10 +3131,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty074.expected testfile-ac_empty074_cdcl.output))) + (deps testfile-ac_empty074_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_cdcl.output))) (rule (target testfile-ac_empty074_tableaux_cdcl.output) (deps (:input testfile-ac_empty074.ae)) @@ -3202,12 +3153,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_tableaux_cdcl.output))) + (deps testfile-ac_empty074_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_tableaux_cdcl.output))) (rule (target testfile-ac_empty074_tableaux.output) (deps (:input testfile-ac_empty074.ae)) @@ -3225,12 +3175,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty074.expected - testfile-ac_empty074_tableaux.output))) + (deps testfile-ac_empty074_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_tableaux.output))) (rule (target testfile-ac_empty074_legacy.output) (deps (:input testfile-ac_empty074.ae)) @@ -3247,10 +3196,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty074.expected testfile-ac_empty074_legacy.output))) + (deps testfile-ac_empty074_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_legacy.output))) (rule (target testfile-ac_empty074_dolmen.output) (deps (:input testfile-ac_empty074.ae)) @@ -3267,10 +3217,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty074.expected testfile-ac_empty074_dolmen.output))) + (deps testfile-ac_empty074_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_dolmen.output))) (rule (target testfile-ac_empty074_fpa.output) (deps (:input testfile-ac_empty074.ae)) @@ -3287,10 +3238,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty074.expected testfile-ac_empty074_fpa.output))) + (deps testfile-ac_empty074_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty074.expected testfile-ac_empty074_fpa.output))) (rule (target testfile-ac_empty073_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty073.ae)) @@ -3309,12 +3261,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty073_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty073.ae)) @@ -3335,12 +3286,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty073.ae)) @@ -3360,12 +3310,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty073_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty073.ae)) @@ -3384,12 +3333,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty073_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty073.ae)) @@ -3408,12 +3356,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty073_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty073.ae)) @@ -3432,12 +3379,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty073_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty073_cdcl.output) (deps (:input testfile-ac_empty073.ae)) @@ -3455,10 +3401,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty073.expected testfile-ac_empty073_cdcl.output))) + (deps testfile-ac_empty073_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_cdcl.output))) (rule (target testfile-ac_empty073_tableaux_cdcl.output) (deps (:input testfile-ac_empty073.ae)) @@ -3476,12 +3423,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_tableaux_cdcl.output))) + (deps testfile-ac_empty073_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_tableaux_cdcl.output))) (rule (target testfile-ac_empty073_tableaux.output) (deps (:input testfile-ac_empty073.ae)) @@ -3499,12 +3445,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty073.expected - testfile-ac_empty073_tableaux.output))) + (deps testfile-ac_empty073_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_tableaux.output))) (rule (target testfile-ac_empty073_legacy.output) (deps (:input testfile-ac_empty073.ae)) @@ -3521,10 +3466,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty073.expected testfile-ac_empty073_legacy.output))) + (deps testfile-ac_empty073_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_legacy.output))) (rule (target testfile-ac_empty073_dolmen.output) (deps (:input testfile-ac_empty073.ae)) @@ -3541,10 +3487,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty073.expected testfile-ac_empty073_dolmen.output))) + (deps testfile-ac_empty073_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_dolmen.output))) (rule (target testfile-ac_empty073_fpa.output) (deps (:input testfile-ac_empty073.ae)) @@ -3561,10 +3508,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty073.expected testfile-ac_empty073_fpa.output))) + (deps testfile-ac_empty073_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty073.expected testfile-ac_empty073_fpa.output))) (rule (target testfile-ac_empty072_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty072.ae)) @@ -3583,12 +3531,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty072_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty072.ae)) @@ -3609,12 +3556,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty072.ae)) @@ -3634,12 +3580,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty072_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty072.ae)) @@ -3658,12 +3603,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty072_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty072.ae)) @@ -3682,12 +3626,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty072_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty072.ae)) @@ -3706,12 +3649,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty072_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty072_cdcl.output) (deps (:input testfile-ac_empty072.ae)) @@ -3729,10 +3671,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty072.expected testfile-ac_empty072_cdcl.output))) + (deps testfile-ac_empty072_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_cdcl.output))) (rule (target testfile-ac_empty072_tableaux_cdcl.output) (deps (:input testfile-ac_empty072.ae)) @@ -3750,12 +3693,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_tableaux_cdcl.output))) + (deps testfile-ac_empty072_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_tableaux_cdcl.output))) (rule (target testfile-ac_empty072_tableaux.output) (deps (:input testfile-ac_empty072.ae)) @@ -3773,12 +3715,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty072.expected - testfile-ac_empty072_tableaux.output))) + (deps testfile-ac_empty072_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_tableaux.output))) (rule (target testfile-ac_empty072_legacy.output) (deps (:input testfile-ac_empty072.ae)) @@ -3795,10 +3736,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty072.expected testfile-ac_empty072_legacy.output))) + (deps testfile-ac_empty072_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_legacy.output))) (rule (target testfile-ac_empty072_dolmen.output) (deps (:input testfile-ac_empty072.ae)) @@ -3815,10 +3757,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty072.expected testfile-ac_empty072_dolmen.output))) + (deps testfile-ac_empty072_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_dolmen.output))) (rule (target testfile-ac_empty072_fpa.output) (deps (:input testfile-ac_empty072.ae)) @@ -3835,10 +3778,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty072.expected testfile-ac_empty072_fpa.output))) + (deps testfile-ac_empty072_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty072.expected testfile-ac_empty072_fpa.output))) (rule (target testfile-ac_empty071_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty071.ae)) @@ -3857,12 +3801,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty071_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty071.ae)) @@ -3883,12 +3826,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty071.ae)) @@ -3908,12 +3850,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty071_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty071.ae)) @@ -3932,12 +3873,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty071_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty071.ae)) @@ -3956,12 +3896,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty071_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty071.ae)) @@ -3980,12 +3919,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty071_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty071_cdcl.output) (deps (:input testfile-ac_empty071.ae)) @@ -4003,10 +3941,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty071.expected testfile-ac_empty071_cdcl.output))) + (deps testfile-ac_empty071_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_cdcl.output))) (rule (target testfile-ac_empty071_tableaux_cdcl.output) (deps (:input testfile-ac_empty071.ae)) @@ -4024,12 +3963,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_tableaux_cdcl.output))) + (deps testfile-ac_empty071_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_tableaux_cdcl.output))) (rule (target testfile-ac_empty071_tableaux.output) (deps (:input testfile-ac_empty071.ae)) @@ -4047,12 +3985,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty071.expected - testfile-ac_empty071_tableaux.output))) + (deps testfile-ac_empty071_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_tableaux.output))) (rule (target testfile-ac_empty071_legacy.output) (deps (:input testfile-ac_empty071.ae)) @@ -4069,10 +4006,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty071.expected testfile-ac_empty071_legacy.output))) + (deps testfile-ac_empty071_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_legacy.output))) (rule (target testfile-ac_empty071_dolmen.output) (deps (:input testfile-ac_empty071.ae)) @@ -4089,10 +4027,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty071.expected testfile-ac_empty071_dolmen.output))) + (deps testfile-ac_empty071_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_dolmen.output))) (rule (target testfile-ac_empty071_fpa.output) (deps (:input testfile-ac_empty071.ae)) @@ -4109,10 +4048,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty071.expected testfile-ac_empty071_fpa.output))) + (deps testfile-ac_empty071_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty071.expected testfile-ac_empty071_fpa.output))) (rule (target testfile-ac_empty070_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty070.ae)) @@ -4131,12 +4071,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty070_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty070.ae)) @@ -4157,12 +4096,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty070.ae)) @@ -4182,12 +4120,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty070_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty070.ae)) @@ -4206,12 +4143,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty070_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty070.ae)) @@ -4230,12 +4166,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty070_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty070.ae)) @@ -4254,12 +4189,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty070_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty070_cdcl.output) (deps (:input testfile-ac_empty070.ae)) @@ -4277,10 +4211,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty070.expected testfile-ac_empty070_cdcl.output))) + (deps testfile-ac_empty070_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_cdcl.output))) (rule (target testfile-ac_empty070_tableaux_cdcl.output) (deps (:input testfile-ac_empty070.ae)) @@ -4298,12 +4233,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_tableaux_cdcl.output))) + (deps testfile-ac_empty070_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_tableaux_cdcl.output))) (rule (target testfile-ac_empty070_tableaux.output) (deps (:input testfile-ac_empty070.ae)) @@ -4321,12 +4255,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty070.expected - testfile-ac_empty070_tableaux.output))) + (deps testfile-ac_empty070_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_tableaux.output))) (rule (target testfile-ac_empty070_legacy.output) (deps (:input testfile-ac_empty070.ae)) @@ -4343,10 +4276,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty070.expected testfile-ac_empty070_legacy.output))) + (deps testfile-ac_empty070_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_legacy.output))) (rule (target testfile-ac_empty070_dolmen.output) (deps (:input testfile-ac_empty070.ae)) @@ -4363,10 +4297,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty070.expected testfile-ac_empty070_dolmen.output))) + (deps testfile-ac_empty070_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_dolmen.output))) (rule (target testfile-ac_empty070_fpa.output) (deps (:input testfile-ac_empty070.ae)) @@ -4383,10 +4318,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty070.expected testfile-ac_empty070_fpa.output))) + (deps testfile-ac_empty070_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty070.expected testfile-ac_empty070_fpa.output))) (rule (target testfile-ac_empty069_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty069.ae)) @@ -4405,12 +4341,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty069_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty069.ae)) @@ -4431,12 +4366,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty069.ae)) @@ -4456,12 +4390,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty069_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty069.ae)) @@ -4480,12 +4413,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty069_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty069.ae)) @@ -4504,12 +4436,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty069_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty069.ae)) @@ -4528,12 +4459,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty069_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty069_cdcl.output) (deps (:input testfile-ac_empty069.ae)) @@ -4551,10 +4481,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty069.expected testfile-ac_empty069_cdcl.output))) + (deps testfile-ac_empty069_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_cdcl.output))) (rule (target testfile-ac_empty069_tableaux_cdcl.output) (deps (:input testfile-ac_empty069.ae)) @@ -4572,12 +4503,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_tableaux_cdcl.output))) + (deps testfile-ac_empty069_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_tableaux_cdcl.output))) (rule (target testfile-ac_empty069_tableaux.output) (deps (:input testfile-ac_empty069.ae)) @@ -4595,12 +4525,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty069.expected - testfile-ac_empty069_tableaux.output))) + (deps testfile-ac_empty069_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_tableaux.output))) (rule (target testfile-ac_empty069_legacy.output) (deps (:input testfile-ac_empty069.ae)) @@ -4617,10 +4546,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty069.expected testfile-ac_empty069_legacy.output))) + (deps testfile-ac_empty069_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_legacy.output))) (rule (target testfile-ac_empty069_dolmen.output) (deps (:input testfile-ac_empty069.ae)) @@ -4637,10 +4567,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty069.expected testfile-ac_empty069_dolmen.output))) + (deps testfile-ac_empty069_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_dolmen.output))) (rule (target testfile-ac_empty069_fpa.output) (deps (:input testfile-ac_empty069.ae)) @@ -4657,10 +4588,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty069.expected testfile-ac_empty069_fpa.output))) + (deps testfile-ac_empty069_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty069.expected testfile-ac_empty069_fpa.output))) (rule (target testfile-ac_empty068_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty068.ae)) @@ -4679,12 +4611,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty068_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty068.ae)) @@ -4705,12 +4636,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty068.ae)) @@ -4730,12 +4660,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty068_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty068.ae)) @@ -4754,12 +4683,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty068_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty068.ae)) @@ -4778,12 +4706,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty068_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty068.ae)) @@ -4802,12 +4729,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty068_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty068_cdcl.output) (deps (:input testfile-ac_empty068.ae)) @@ -4825,10 +4751,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty068.expected testfile-ac_empty068_cdcl.output))) + (deps testfile-ac_empty068_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_cdcl.output))) (rule (target testfile-ac_empty068_tableaux_cdcl.output) (deps (:input testfile-ac_empty068.ae)) @@ -4846,12 +4773,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_tableaux_cdcl.output))) + (deps testfile-ac_empty068_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_tableaux_cdcl.output))) (rule (target testfile-ac_empty068_tableaux.output) (deps (:input testfile-ac_empty068.ae)) @@ -4869,12 +4795,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty068.expected - testfile-ac_empty068_tableaux.output))) + (deps testfile-ac_empty068_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_tableaux.output))) (rule (target testfile-ac_empty068_legacy.output) (deps (:input testfile-ac_empty068.ae)) @@ -4891,10 +4816,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty068.expected testfile-ac_empty068_legacy.output))) + (deps testfile-ac_empty068_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_legacy.output))) (rule (target testfile-ac_empty068_dolmen.output) (deps (:input testfile-ac_empty068.ae)) @@ -4911,10 +4837,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty068.expected testfile-ac_empty068_dolmen.output))) + (deps testfile-ac_empty068_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_dolmen.output))) (rule (target testfile-ac_empty068_fpa.output) (deps (:input testfile-ac_empty068.ae)) @@ -4931,10 +4858,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty068.expected testfile-ac_empty068_fpa.output))) + (deps testfile-ac_empty068_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty068.expected testfile-ac_empty068_fpa.output))) (rule (target testfile-ac_empty067_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty067.ae)) @@ -4953,12 +4881,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty067_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty067.ae)) @@ -4979,12 +4906,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty067.ae)) @@ -5004,12 +4930,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty067_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty067.ae)) @@ -5028,12 +4953,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty067_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty067.ae)) @@ -5052,12 +4976,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty067_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty067.ae)) @@ -5076,12 +4999,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty067_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty067_cdcl.output) (deps (:input testfile-ac_empty067.ae)) @@ -5099,10 +5021,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty067.expected testfile-ac_empty067_cdcl.output))) + (deps testfile-ac_empty067_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_cdcl.output))) (rule (target testfile-ac_empty067_tableaux_cdcl.output) (deps (:input testfile-ac_empty067.ae)) @@ -5120,12 +5043,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_tableaux_cdcl.output))) + (deps testfile-ac_empty067_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_tableaux_cdcl.output))) (rule (target testfile-ac_empty067_tableaux.output) (deps (:input testfile-ac_empty067.ae)) @@ -5143,12 +5065,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty067.expected - testfile-ac_empty067_tableaux.output))) + (deps testfile-ac_empty067_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_tableaux.output))) (rule (target testfile-ac_empty067_legacy.output) (deps (:input testfile-ac_empty067.ae)) @@ -5165,10 +5086,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty067.expected testfile-ac_empty067_legacy.output))) + (deps testfile-ac_empty067_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_legacy.output))) (rule (target testfile-ac_empty067_dolmen.output) (deps (:input testfile-ac_empty067.ae)) @@ -5185,10 +5107,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty067.expected testfile-ac_empty067_dolmen.output))) + (deps testfile-ac_empty067_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_dolmen.output))) (rule (target testfile-ac_empty067_fpa.output) (deps (:input testfile-ac_empty067.ae)) @@ -5205,10 +5128,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty067.expected testfile-ac_empty067_fpa.output))) + (deps testfile-ac_empty067_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty067.expected testfile-ac_empty067_fpa.output))) (rule (target testfile-ac_empty066_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty066.ae)) @@ -5227,12 +5151,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty066_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty066.ae)) @@ -5253,12 +5176,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty066.ae)) @@ -5278,12 +5200,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty066_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty066.ae)) @@ -5302,12 +5223,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty066_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty066.ae)) @@ -5326,12 +5246,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty066_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty066.ae)) @@ -5350,12 +5269,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty066_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty066_cdcl.output) (deps (:input testfile-ac_empty066.ae)) @@ -5373,10 +5291,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty066.expected testfile-ac_empty066_cdcl.output))) + (deps testfile-ac_empty066_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_cdcl.output))) (rule (target testfile-ac_empty066_tableaux_cdcl.output) (deps (:input testfile-ac_empty066.ae)) @@ -5394,12 +5313,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_tableaux_cdcl.output))) + (deps testfile-ac_empty066_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_tableaux_cdcl.output))) (rule (target testfile-ac_empty066_tableaux.output) (deps (:input testfile-ac_empty066.ae)) @@ -5417,12 +5335,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty066.expected - testfile-ac_empty066_tableaux.output))) + (deps testfile-ac_empty066_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_tableaux.output))) (rule (target testfile-ac_empty066_legacy.output) (deps (:input testfile-ac_empty066.ae)) @@ -5439,10 +5356,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty066.expected testfile-ac_empty066_legacy.output))) + (deps testfile-ac_empty066_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_legacy.output))) (rule (target testfile-ac_empty066_dolmen.output) (deps (:input testfile-ac_empty066.ae)) @@ -5459,10 +5377,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty066.expected testfile-ac_empty066_dolmen.output))) + (deps testfile-ac_empty066_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_dolmen.output))) (rule (target testfile-ac_empty066_fpa.output) (deps (:input testfile-ac_empty066.ae)) @@ -5479,10 +5398,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty066.expected testfile-ac_empty066_fpa.output))) + (deps testfile-ac_empty066_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty066.expected testfile-ac_empty066_fpa.output))) (rule (target testfile-ac_empty065_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty065.ae)) @@ -5501,12 +5421,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty065_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty065.ae)) @@ -5527,12 +5446,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty065.ae)) @@ -5552,12 +5470,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty065_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty065.ae)) @@ -5576,12 +5493,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty065_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty065.ae)) @@ -5600,12 +5516,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty065_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty065.ae)) @@ -5624,12 +5539,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty065_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty065_cdcl.output) (deps (:input testfile-ac_empty065.ae)) @@ -5647,10 +5561,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty065.expected testfile-ac_empty065_cdcl.output))) + (deps testfile-ac_empty065_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_cdcl.output))) (rule (target testfile-ac_empty065_tableaux_cdcl.output) (deps (:input testfile-ac_empty065.ae)) @@ -5668,12 +5583,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_tableaux_cdcl.output))) + (deps testfile-ac_empty065_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_tableaux_cdcl.output))) (rule (target testfile-ac_empty065_tableaux.output) (deps (:input testfile-ac_empty065.ae)) @@ -5691,12 +5605,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty065.expected - testfile-ac_empty065_tableaux.output))) + (deps testfile-ac_empty065_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_tableaux.output))) (rule (target testfile-ac_empty065_legacy.output) (deps (:input testfile-ac_empty065.ae)) @@ -5713,10 +5626,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty065.expected testfile-ac_empty065_legacy.output))) + (deps testfile-ac_empty065_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_legacy.output))) (rule (target testfile-ac_empty065_dolmen.output) (deps (:input testfile-ac_empty065.ae)) @@ -5733,10 +5647,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty065.expected testfile-ac_empty065_dolmen.output))) + (deps testfile-ac_empty065_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_dolmen.output))) (rule (target testfile-ac_empty065_fpa.output) (deps (:input testfile-ac_empty065.ae)) @@ -5753,10 +5668,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty065.expected testfile-ac_empty065_fpa.output))) + (deps testfile-ac_empty065_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty065.expected testfile-ac_empty065_fpa.output))) (rule (target testfile-ac_empty064_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty064.ae)) @@ -5775,12 +5691,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty064_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty064.ae)) @@ -5801,12 +5716,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty064.ae)) @@ -5826,12 +5740,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty064_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty064.ae)) @@ -5850,12 +5763,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty064_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty064.ae)) @@ -5874,12 +5786,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty064_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty064.ae)) @@ -5898,12 +5809,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty064_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty064_cdcl.output) (deps (:input testfile-ac_empty064.ae)) @@ -5921,10 +5831,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty064.expected testfile-ac_empty064_cdcl.output))) + (deps testfile-ac_empty064_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_cdcl.output))) (rule (target testfile-ac_empty064_tableaux_cdcl.output) (deps (:input testfile-ac_empty064.ae)) @@ -5942,12 +5853,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_tableaux_cdcl.output))) + (deps testfile-ac_empty064_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_tableaux_cdcl.output))) (rule (target testfile-ac_empty064_tableaux.output) (deps (:input testfile-ac_empty064.ae)) @@ -5965,12 +5875,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty064.expected - testfile-ac_empty064_tableaux.output))) + (deps testfile-ac_empty064_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_tableaux.output))) (rule (target testfile-ac_empty064_legacy.output) (deps (:input testfile-ac_empty064.ae)) @@ -5987,10 +5896,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty064.expected testfile-ac_empty064_legacy.output))) + (deps testfile-ac_empty064_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_legacy.output))) (rule (target testfile-ac_empty064_dolmen.output) (deps (:input testfile-ac_empty064.ae)) @@ -6007,10 +5917,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty064.expected testfile-ac_empty064_dolmen.output))) + (deps testfile-ac_empty064_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_dolmen.output))) (rule (target testfile-ac_empty064_fpa.output) (deps (:input testfile-ac_empty064.ae)) @@ -6027,10 +5938,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty064.expected testfile-ac_empty064_fpa.output))) + (deps testfile-ac_empty064_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty064.expected testfile-ac_empty064_fpa.output))) (rule (target testfile-ac_empty063_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty063.ae)) @@ -6049,12 +5961,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty063_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty063.ae)) @@ -6075,12 +5986,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty063.ae)) @@ -6100,12 +6010,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty063_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty063.ae)) @@ -6124,12 +6033,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty063_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty063.ae)) @@ -6148,12 +6056,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty063_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty063.ae)) @@ -6172,12 +6079,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty063_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty063_cdcl.output) (deps (:input testfile-ac_empty063.ae)) @@ -6195,10 +6101,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty063.expected testfile-ac_empty063_cdcl.output))) + (deps testfile-ac_empty063_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_cdcl.output))) (rule (target testfile-ac_empty063_tableaux_cdcl.output) (deps (:input testfile-ac_empty063.ae)) @@ -6216,12 +6123,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_tableaux_cdcl.output))) + (deps testfile-ac_empty063_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_tableaux_cdcl.output))) (rule (target testfile-ac_empty063_tableaux.output) (deps (:input testfile-ac_empty063.ae)) @@ -6239,12 +6145,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty063.expected - testfile-ac_empty063_tableaux.output))) + (deps testfile-ac_empty063_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_tableaux.output))) (rule (target testfile-ac_empty063_legacy.output) (deps (:input testfile-ac_empty063.ae)) @@ -6261,10 +6166,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty063.expected testfile-ac_empty063_legacy.output))) + (deps testfile-ac_empty063_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_legacy.output))) (rule (target testfile-ac_empty063_dolmen.output) (deps (:input testfile-ac_empty063.ae)) @@ -6281,10 +6187,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty063.expected testfile-ac_empty063_dolmen.output))) + (deps testfile-ac_empty063_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_dolmen.output))) (rule (target testfile-ac_empty063_fpa.output) (deps (:input testfile-ac_empty063.ae)) @@ -6301,10 +6208,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty063.expected testfile-ac_empty063_fpa.output))) + (deps testfile-ac_empty063_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty063.expected testfile-ac_empty063_fpa.output))) (rule (target testfile-ac_empty062_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty062.ae)) @@ -6323,12 +6231,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty062_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty062.ae)) @@ -6349,12 +6256,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty062.ae)) @@ -6374,12 +6280,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty062_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty062.ae)) @@ -6398,12 +6303,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty062_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty062.ae)) @@ -6422,12 +6326,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty062_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty062.ae)) @@ -6446,12 +6349,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty062_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty062_cdcl.output) (deps (:input testfile-ac_empty062.ae)) @@ -6469,10 +6371,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty062.expected testfile-ac_empty062_cdcl.output))) + (deps testfile-ac_empty062_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_cdcl.output))) (rule (target testfile-ac_empty062_tableaux_cdcl.output) (deps (:input testfile-ac_empty062.ae)) @@ -6490,12 +6393,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_tableaux_cdcl.output))) + (deps testfile-ac_empty062_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_tableaux_cdcl.output))) (rule (target testfile-ac_empty062_tableaux.output) (deps (:input testfile-ac_empty062.ae)) @@ -6513,12 +6415,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty062.expected - testfile-ac_empty062_tableaux.output))) + (deps testfile-ac_empty062_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_tableaux.output))) (rule (target testfile-ac_empty062_legacy.output) (deps (:input testfile-ac_empty062.ae)) @@ -6535,10 +6436,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty062.expected testfile-ac_empty062_legacy.output))) + (deps testfile-ac_empty062_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_legacy.output))) (rule (target testfile-ac_empty062_dolmen.output) (deps (:input testfile-ac_empty062.ae)) @@ -6555,10 +6457,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty062.expected testfile-ac_empty062_dolmen.output))) + (deps testfile-ac_empty062_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_dolmen.output))) (rule (target testfile-ac_empty062_fpa.output) (deps (:input testfile-ac_empty062.ae)) @@ -6575,10 +6478,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty062.expected testfile-ac_empty062_fpa.output))) + (deps testfile-ac_empty062_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty062.expected testfile-ac_empty062_fpa.output))) (rule (target testfile-ac_empty061_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty061.ae)) @@ -6597,12 +6501,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty061_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty061.ae)) @@ -6623,12 +6526,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty061.ae)) @@ -6648,12 +6550,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty061_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty061.ae)) @@ -6672,12 +6573,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty061_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty061.ae)) @@ -6696,12 +6596,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty061_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty061.ae)) @@ -6720,12 +6619,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty061_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty061_cdcl.output) (deps (:input testfile-ac_empty061.ae)) @@ -6743,10 +6641,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty061.expected testfile-ac_empty061_cdcl.output))) + (deps testfile-ac_empty061_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_cdcl.output))) (rule (target testfile-ac_empty061_tableaux_cdcl.output) (deps (:input testfile-ac_empty061.ae)) @@ -6764,12 +6663,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_tableaux_cdcl.output))) + (deps testfile-ac_empty061_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_tableaux_cdcl.output))) (rule (target testfile-ac_empty061_tableaux.output) (deps (:input testfile-ac_empty061.ae)) @@ -6787,12 +6685,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty061.expected - testfile-ac_empty061_tableaux.output))) + (deps testfile-ac_empty061_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_tableaux.output))) (rule (target testfile-ac_empty061_legacy.output) (deps (:input testfile-ac_empty061.ae)) @@ -6809,10 +6706,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty061.expected testfile-ac_empty061_legacy.output))) + (deps testfile-ac_empty061_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_legacy.output))) (rule (target testfile-ac_empty061_dolmen.output) (deps (:input testfile-ac_empty061.ae)) @@ -6829,10 +6727,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty061.expected testfile-ac_empty061_dolmen.output))) + (deps testfile-ac_empty061_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_dolmen.output))) (rule (target testfile-ac_empty061_fpa.output) (deps (:input testfile-ac_empty061.ae)) @@ -6849,10 +6748,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty061.expected testfile-ac_empty061_fpa.output))) + (deps testfile-ac_empty061_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty061.expected testfile-ac_empty061_fpa.output))) (rule (target testfile-ac_empty060_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty060.ae)) @@ -6871,12 +6771,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty060_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty060.ae)) @@ -6897,12 +6796,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty060.ae)) @@ -6922,12 +6820,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty060_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty060.ae)) @@ -6946,12 +6843,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty060_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty060.ae)) @@ -6970,12 +6866,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty060_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty060.ae)) @@ -6994,12 +6889,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty060_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty060_cdcl.output) (deps (:input testfile-ac_empty060.ae)) @@ -7017,10 +6911,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty060.expected testfile-ac_empty060_cdcl.output))) + (deps testfile-ac_empty060_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_cdcl.output))) (rule (target testfile-ac_empty060_tableaux_cdcl.output) (deps (:input testfile-ac_empty060.ae)) @@ -7038,12 +6933,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_tableaux_cdcl.output))) + (deps testfile-ac_empty060_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_tableaux_cdcl.output))) (rule (target testfile-ac_empty060_tableaux.output) (deps (:input testfile-ac_empty060.ae)) @@ -7061,12 +6955,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty060.expected - testfile-ac_empty060_tableaux.output))) + (deps testfile-ac_empty060_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_tableaux.output))) (rule (target testfile-ac_empty060_legacy.output) (deps (:input testfile-ac_empty060.ae)) @@ -7083,10 +6976,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty060.expected testfile-ac_empty060_legacy.output))) + (deps testfile-ac_empty060_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_legacy.output))) (rule (target testfile-ac_empty060_dolmen.output) (deps (:input testfile-ac_empty060.ae)) @@ -7103,10 +6997,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty060.expected testfile-ac_empty060_dolmen.output))) + (deps testfile-ac_empty060_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_dolmen.output))) (rule (target testfile-ac_empty060_fpa.output) (deps (:input testfile-ac_empty060.ae)) @@ -7123,10 +7018,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty060.expected testfile-ac_empty060_fpa.output))) + (deps testfile-ac_empty060_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty060.expected testfile-ac_empty060_fpa.output))) (rule (target testfile-ac_empty059_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty059.ae)) @@ -7145,12 +7041,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty059_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty059.ae)) @@ -7171,12 +7066,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty059.ae)) @@ -7196,12 +7090,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty059_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty059.ae)) @@ -7220,12 +7113,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty059_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty059.ae)) @@ -7244,12 +7136,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty059_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty059.ae)) @@ -7268,12 +7159,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty059_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty059_cdcl.output) (deps (:input testfile-ac_empty059.ae)) @@ -7291,10 +7181,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty059.expected testfile-ac_empty059_cdcl.output))) + (deps testfile-ac_empty059_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_cdcl.output))) (rule (target testfile-ac_empty059_tableaux_cdcl.output) (deps (:input testfile-ac_empty059.ae)) @@ -7312,12 +7203,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_tableaux_cdcl.output))) + (deps testfile-ac_empty059_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_tableaux_cdcl.output))) (rule (target testfile-ac_empty059_tableaux.output) (deps (:input testfile-ac_empty059.ae)) @@ -7335,12 +7225,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty059.expected - testfile-ac_empty059_tableaux.output))) + (deps testfile-ac_empty059_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_tableaux.output))) (rule (target testfile-ac_empty059_legacy.output) (deps (:input testfile-ac_empty059.ae)) @@ -7357,10 +7246,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty059.expected testfile-ac_empty059_legacy.output))) + (deps testfile-ac_empty059_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_legacy.output))) (rule (target testfile-ac_empty059_dolmen.output) (deps (:input testfile-ac_empty059.ae)) @@ -7377,10 +7267,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty059.expected testfile-ac_empty059_dolmen.output))) + (deps testfile-ac_empty059_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_dolmen.output))) (rule (target testfile-ac_empty059_fpa.output) (deps (:input testfile-ac_empty059.ae)) @@ -7397,10 +7288,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty059.expected testfile-ac_empty059_fpa.output))) + (deps testfile-ac_empty059_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty059.expected testfile-ac_empty059_fpa.output))) (rule (target testfile-ac_empty058_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty058.ae)) @@ -7419,12 +7311,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty058_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty058.ae)) @@ -7445,12 +7336,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty058.ae)) @@ -7470,12 +7360,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty058_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty058.ae)) @@ -7494,12 +7383,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty058_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty058.ae)) @@ -7518,12 +7406,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty058_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty058.ae)) @@ -7542,12 +7429,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty058_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty058_cdcl.output) (deps (:input testfile-ac_empty058.ae)) @@ -7565,10 +7451,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty058.expected testfile-ac_empty058_cdcl.output))) + (deps testfile-ac_empty058_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_cdcl.output))) (rule (target testfile-ac_empty058_tableaux_cdcl.output) (deps (:input testfile-ac_empty058.ae)) @@ -7586,12 +7473,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_tableaux_cdcl.output))) + (deps testfile-ac_empty058_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_tableaux_cdcl.output))) (rule (target testfile-ac_empty058_tableaux.output) (deps (:input testfile-ac_empty058.ae)) @@ -7609,12 +7495,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty058.expected - testfile-ac_empty058_tableaux.output))) + (deps testfile-ac_empty058_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_tableaux.output))) (rule (target testfile-ac_empty058_legacy.output) (deps (:input testfile-ac_empty058.ae)) @@ -7631,10 +7516,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty058.expected testfile-ac_empty058_legacy.output))) + (deps testfile-ac_empty058_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_legacy.output))) (rule (target testfile-ac_empty058_dolmen.output) (deps (:input testfile-ac_empty058.ae)) @@ -7651,10 +7537,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty058.expected testfile-ac_empty058_dolmen.output))) + (deps testfile-ac_empty058_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_dolmen.output))) (rule (target testfile-ac_empty058_fpa.output) (deps (:input testfile-ac_empty058.ae)) @@ -7671,10 +7558,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty058.expected testfile-ac_empty058_fpa.output))) + (deps testfile-ac_empty058_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty058.expected testfile-ac_empty058_fpa.output))) (rule (target testfile-ac_empty057_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty057.ae)) @@ -7693,12 +7581,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty057_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty057.ae)) @@ -7719,12 +7606,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty057.ae)) @@ -7744,12 +7630,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty057_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty057.ae)) @@ -7768,12 +7653,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty057_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty057.ae)) @@ -7792,12 +7676,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty057_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty057.ae)) @@ -7816,12 +7699,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty057_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty057_cdcl.output) (deps (:input testfile-ac_empty057.ae)) @@ -7839,10 +7721,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty057.expected testfile-ac_empty057_cdcl.output))) + (deps testfile-ac_empty057_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_cdcl.output))) (rule (target testfile-ac_empty057_tableaux_cdcl.output) (deps (:input testfile-ac_empty057.ae)) @@ -7860,12 +7743,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_tableaux_cdcl.output))) + (deps testfile-ac_empty057_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_tableaux_cdcl.output))) (rule (target testfile-ac_empty057_tableaux.output) (deps (:input testfile-ac_empty057.ae)) @@ -7883,12 +7765,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty057.expected - testfile-ac_empty057_tableaux.output))) + (deps testfile-ac_empty057_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_tableaux.output))) (rule (target testfile-ac_empty057_legacy.output) (deps (:input testfile-ac_empty057.ae)) @@ -7905,10 +7786,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty057.expected testfile-ac_empty057_legacy.output))) + (deps testfile-ac_empty057_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_legacy.output))) (rule (target testfile-ac_empty057_dolmen.output) (deps (:input testfile-ac_empty057.ae)) @@ -7925,10 +7807,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty057.expected testfile-ac_empty057_dolmen.output))) + (deps testfile-ac_empty057_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_dolmen.output))) (rule (target testfile-ac_empty057_fpa.output) (deps (:input testfile-ac_empty057.ae)) @@ -7945,10 +7828,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty057.expected testfile-ac_empty057_fpa.output))) + (deps testfile-ac_empty057_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty057.expected testfile-ac_empty057_fpa.output))) (rule (target testfile-ac_empty056_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty056.ae)) @@ -7967,12 +7851,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty056_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty056.ae)) @@ -7993,12 +7876,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty056.ae)) @@ -8018,12 +7900,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty056_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty056.ae)) @@ -8042,12 +7923,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty056_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty056.ae)) @@ -8066,12 +7946,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty056_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty056.ae)) @@ -8090,12 +7969,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty056_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty056_cdcl.output) (deps (:input testfile-ac_empty056.ae)) @@ -8113,10 +7991,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty056.expected testfile-ac_empty056_cdcl.output))) + (deps testfile-ac_empty056_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_cdcl.output))) (rule (target testfile-ac_empty056_tableaux_cdcl.output) (deps (:input testfile-ac_empty056.ae)) @@ -8134,12 +8013,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_tableaux_cdcl.output))) + (deps testfile-ac_empty056_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_tableaux_cdcl.output))) (rule (target testfile-ac_empty056_tableaux.output) (deps (:input testfile-ac_empty056.ae)) @@ -8157,12 +8035,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty056.expected - testfile-ac_empty056_tableaux.output))) + (deps testfile-ac_empty056_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_tableaux.output))) (rule (target testfile-ac_empty056_legacy.output) (deps (:input testfile-ac_empty056.ae)) @@ -8179,10 +8056,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty056.expected testfile-ac_empty056_legacy.output))) + (deps testfile-ac_empty056_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_legacy.output))) (rule (target testfile-ac_empty056_dolmen.output) (deps (:input testfile-ac_empty056.ae)) @@ -8199,10 +8077,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty056.expected testfile-ac_empty056_dolmen.output))) + (deps testfile-ac_empty056_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_dolmen.output))) (rule (target testfile-ac_empty056_fpa.output) (deps (:input testfile-ac_empty056.ae)) @@ -8219,10 +8098,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty056.expected testfile-ac_empty056_fpa.output))) + (deps testfile-ac_empty056_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty056.expected testfile-ac_empty056_fpa.output))) (rule (target testfile-ac_empty055_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty055.ae)) @@ -8241,12 +8121,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty055_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty055.ae)) @@ -8267,12 +8146,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty055.ae)) @@ -8292,12 +8170,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty055_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty055.ae)) @@ -8316,12 +8193,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty055_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty055.ae)) @@ -8340,12 +8216,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty055_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty055.ae)) @@ -8364,12 +8239,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty055_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty055_cdcl.output) (deps (:input testfile-ac_empty055.ae)) @@ -8387,10 +8261,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty055.expected testfile-ac_empty055_cdcl.output))) + (deps testfile-ac_empty055_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_cdcl.output))) (rule (target testfile-ac_empty055_tableaux_cdcl.output) (deps (:input testfile-ac_empty055.ae)) @@ -8408,12 +8283,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_tableaux_cdcl.output))) + (deps testfile-ac_empty055_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_tableaux_cdcl.output))) (rule (target testfile-ac_empty055_tableaux.output) (deps (:input testfile-ac_empty055.ae)) @@ -8431,12 +8305,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty055.expected - testfile-ac_empty055_tableaux.output))) + (deps testfile-ac_empty055_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_tableaux.output))) (rule (target testfile-ac_empty055_legacy.output) (deps (:input testfile-ac_empty055.ae)) @@ -8453,10 +8326,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty055.expected testfile-ac_empty055_legacy.output))) + (deps testfile-ac_empty055_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_legacy.output))) (rule (target testfile-ac_empty055_dolmen.output) (deps (:input testfile-ac_empty055.ae)) @@ -8473,10 +8347,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty055.expected testfile-ac_empty055_dolmen.output))) + (deps testfile-ac_empty055_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_dolmen.output))) (rule (target testfile-ac_empty055_fpa.output) (deps (:input testfile-ac_empty055.ae)) @@ -8493,10 +8368,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty055.expected testfile-ac_empty055_fpa.output))) + (deps testfile-ac_empty055_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty055.expected testfile-ac_empty055_fpa.output))) (rule (target testfile-ac_empty054_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty054.ae)) @@ -8515,12 +8391,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty054_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty054.ae)) @@ -8541,12 +8416,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty054.ae)) @@ -8566,12 +8440,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty054_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty054.ae)) @@ -8590,12 +8463,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty054_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty054.ae)) @@ -8614,12 +8486,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty054_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty054.ae)) @@ -8638,12 +8509,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty054_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty054_cdcl.output) (deps (:input testfile-ac_empty054.ae)) @@ -8661,10 +8531,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty054.expected testfile-ac_empty054_cdcl.output))) + (deps testfile-ac_empty054_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_cdcl.output))) (rule (target testfile-ac_empty054_tableaux_cdcl.output) (deps (:input testfile-ac_empty054.ae)) @@ -8682,12 +8553,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_tableaux_cdcl.output))) + (deps testfile-ac_empty054_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_tableaux_cdcl.output))) (rule (target testfile-ac_empty054_tableaux.output) (deps (:input testfile-ac_empty054.ae)) @@ -8705,12 +8575,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty054.expected - testfile-ac_empty054_tableaux.output))) + (deps testfile-ac_empty054_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_tableaux.output))) (rule (target testfile-ac_empty054_legacy.output) (deps (:input testfile-ac_empty054.ae)) @@ -8727,10 +8596,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty054.expected testfile-ac_empty054_legacy.output))) + (deps testfile-ac_empty054_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_legacy.output))) (rule (target testfile-ac_empty054_dolmen.output) (deps (:input testfile-ac_empty054.ae)) @@ -8747,10 +8617,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty054.expected testfile-ac_empty054_dolmen.output))) + (deps testfile-ac_empty054_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_dolmen.output))) (rule (target testfile-ac_empty054_fpa.output) (deps (:input testfile-ac_empty054.ae)) @@ -8767,10 +8638,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty054.expected testfile-ac_empty054_fpa.output))) + (deps testfile-ac_empty054_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty054.expected testfile-ac_empty054_fpa.output))) (rule (target testfile-ac_empty053_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty053.ae)) @@ -8789,12 +8661,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty053_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty053.ae)) @@ -8815,12 +8686,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty053.ae)) @@ -8840,12 +8710,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty053_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty053.ae)) @@ -8864,12 +8733,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty053_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty053.ae)) @@ -8888,12 +8756,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty053_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty053.ae)) @@ -8912,12 +8779,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty053_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty053_cdcl.output) (deps (:input testfile-ac_empty053.ae)) @@ -8935,10 +8801,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty053.expected testfile-ac_empty053_cdcl.output))) + (deps testfile-ac_empty053_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_cdcl.output))) (rule (target testfile-ac_empty053_tableaux_cdcl.output) (deps (:input testfile-ac_empty053.ae)) @@ -8956,12 +8823,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_tableaux_cdcl.output))) + (deps testfile-ac_empty053_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_tableaux_cdcl.output))) (rule (target testfile-ac_empty053_tableaux.output) (deps (:input testfile-ac_empty053.ae)) @@ -8979,12 +8845,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty053.expected - testfile-ac_empty053_tableaux.output))) + (deps testfile-ac_empty053_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_tableaux.output))) (rule (target testfile-ac_empty053_legacy.output) (deps (:input testfile-ac_empty053.ae)) @@ -9001,10 +8866,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty053.expected testfile-ac_empty053_legacy.output))) + (deps testfile-ac_empty053_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_legacy.output))) (rule (target testfile-ac_empty053_dolmen.output) (deps (:input testfile-ac_empty053.ae)) @@ -9021,10 +8887,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty053.expected testfile-ac_empty053_dolmen.output))) + (deps testfile-ac_empty053_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_dolmen.output))) (rule (target testfile-ac_empty053_fpa.output) (deps (:input testfile-ac_empty053.ae)) @@ -9041,10 +8908,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty053.expected testfile-ac_empty053_fpa.output))) + (deps testfile-ac_empty053_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty053.expected testfile-ac_empty053_fpa.output))) (rule (target testfile-ac_empty052_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty052.ae)) @@ -9063,12 +8931,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty052_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty052.ae)) @@ -9089,12 +8956,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty052.ae)) @@ -9114,12 +8980,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty052_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty052.ae)) @@ -9138,12 +9003,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty052_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty052.ae)) @@ -9162,12 +9026,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty052_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty052.ae)) @@ -9186,12 +9049,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty052_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty052_cdcl.output) (deps (:input testfile-ac_empty052.ae)) @@ -9209,10 +9071,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty052.expected testfile-ac_empty052_cdcl.output))) + (deps testfile-ac_empty052_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_cdcl.output))) (rule (target testfile-ac_empty052_tableaux_cdcl.output) (deps (:input testfile-ac_empty052.ae)) @@ -9230,12 +9093,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_tableaux_cdcl.output))) + (deps testfile-ac_empty052_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_tableaux_cdcl.output))) (rule (target testfile-ac_empty052_tableaux.output) (deps (:input testfile-ac_empty052.ae)) @@ -9253,12 +9115,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty052.expected - testfile-ac_empty052_tableaux.output))) + (deps testfile-ac_empty052_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_tableaux.output))) (rule (target testfile-ac_empty052_legacy.output) (deps (:input testfile-ac_empty052.ae)) @@ -9275,10 +9136,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty052.expected testfile-ac_empty052_legacy.output))) + (deps testfile-ac_empty052_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_legacy.output))) (rule (target testfile-ac_empty052_dolmen.output) (deps (:input testfile-ac_empty052.ae)) @@ -9295,10 +9157,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty052.expected testfile-ac_empty052_dolmen.output))) + (deps testfile-ac_empty052_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_dolmen.output))) (rule (target testfile-ac_empty052_fpa.output) (deps (:input testfile-ac_empty052.ae)) @@ -9315,10 +9178,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty052.expected testfile-ac_empty052_fpa.output))) + (deps testfile-ac_empty052_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty052.expected testfile-ac_empty052_fpa.output))) (rule (target testfile-ac_empty051_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty051.ae)) @@ -9337,12 +9201,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty051_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty051.ae)) @@ -9363,12 +9226,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty051.ae)) @@ -9388,12 +9250,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty051_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty051.ae)) @@ -9412,12 +9273,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty051_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty051.ae)) @@ -9436,12 +9296,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty051_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty051.ae)) @@ -9460,12 +9319,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty051_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty051_cdcl.output) (deps (:input testfile-ac_empty051.ae)) @@ -9483,10 +9341,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty051.expected testfile-ac_empty051_cdcl.output))) + (deps testfile-ac_empty051_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_cdcl.output))) (rule (target testfile-ac_empty051_tableaux_cdcl.output) (deps (:input testfile-ac_empty051.ae)) @@ -9504,12 +9363,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_tableaux_cdcl.output))) + (deps testfile-ac_empty051_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_tableaux_cdcl.output))) (rule (target testfile-ac_empty051_tableaux.output) (deps (:input testfile-ac_empty051.ae)) @@ -9527,12 +9385,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty051.expected - testfile-ac_empty051_tableaux.output))) + (deps testfile-ac_empty051_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_tableaux.output))) (rule (target testfile-ac_empty051_legacy.output) (deps (:input testfile-ac_empty051.ae)) @@ -9549,10 +9406,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty051.expected testfile-ac_empty051_legacy.output))) + (deps testfile-ac_empty051_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_legacy.output))) (rule (target testfile-ac_empty051_dolmen.output) (deps (:input testfile-ac_empty051.ae)) @@ -9569,10 +9427,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty051.expected testfile-ac_empty051_dolmen.output))) + (deps testfile-ac_empty051_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_dolmen.output))) (rule (target testfile-ac_empty051_fpa.output) (deps (:input testfile-ac_empty051.ae)) @@ -9589,10 +9448,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty051.expected testfile-ac_empty051_fpa.output))) + (deps testfile-ac_empty051_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty051.expected testfile-ac_empty051_fpa.output))) (rule (target testfile-ac_empty050_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty050.ae)) @@ -9611,12 +9471,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty050_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty050.ae)) @@ -9637,12 +9496,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty050.ae)) @@ -9662,12 +9520,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty050_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty050.ae)) @@ -9686,12 +9543,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty050_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty050.ae)) @@ -9710,12 +9566,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty050_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty050.ae)) @@ -9734,12 +9589,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty050_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty050_cdcl.output) (deps (:input testfile-ac_empty050.ae)) @@ -9757,10 +9611,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty050.expected testfile-ac_empty050_cdcl.output))) + (deps testfile-ac_empty050_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_cdcl.output))) (rule (target testfile-ac_empty050_tableaux_cdcl.output) (deps (:input testfile-ac_empty050.ae)) @@ -9778,12 +9633,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_tableaux_cdcl.output))) + (deps testfile-ac_empty050_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_tableaux_cdcl.output))) (rule (target testfile-ac_empty050_tableaux.output) (deps (:input testfile-ac_empty050.ae)) @@ -9801,12 +9655,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty050.expected - testfile-ac_empty050_tableaux.output))) + (deps testfile-ac_empty050_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_tableaux.output))) (rule (target testfile-ac_empty050_legacy.output) (deps (:input testfile-ac_empty050.ae)) @@ -9823,10 +9676,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty050.expected testfile-ac_empty050_legacy.output))) + (deps testfile-ac_empty050_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_legacy.output))) (rule (target testfile-ac_empty050_dolmen.output) (deps (:input testfile-ac_empty050.ae)) @@ -9843,10 +9697,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty050.expected testfile-ac_empty050_dolmen.output))) + (deps testfile-ac_empty050_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_dolmen.output))) (rule (target testfile-ac_empty050_fpa.output) (deps (:input testfile-ac_empty050.ae)) @@ -9863,10 +9718,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty050.expected testfile-ac_empty050_fpa.output))) + (deps testfile-ac_empty050_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty050.expected testfile-ac_empty050_fpa.output))) (rule (target testfile-ac_empty049_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty049.ae)) @@ -9885,12 +9741,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty049_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty049.ae)) @@ -9911,12 +9766,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty049.ae)) @@ -9936,12 +9790,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty049_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty049.ae)) @@ -9960,12 +9813,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty049_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty049.ae)) @@ -9984,12 +9836,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty049_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty049.ae)) @@ -10008,12 +9859,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty049_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty049_cdcl.output) (deps (:input testfile-ac_empty049.ae)) @@ -10031,10 +9881,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty049.expected testfile-ac_empty049_cdcl.output))) + (deps testfile-ac_empty049_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_cdcl.output))) (rule (target testfile-ac_empty049_tableaux_cdcl.output) (deps (:input testfile-ac_empty049.ae)) @@ -10052,12 +9903,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_tableaux_cdcl.output))) + (deps testfile-ac_empty049_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_tableaux_cdcl.output))) (rule (target testfile-ac_empty049_tableaux.output) (deps (:input testfile-ac_empty049.ae)) @@ -10075,12 +9925,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty049.expected - testfile-ac_empty049_tableaux.output))) + (deps testfile-ac_empty049_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_tableaux.output))) (rule (target testfile-ac_empty049_legacy.output) (deps (:input testfile-ac_empty049.ae)) @@ -10097,10 +9946,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty049.expected testfile-ac_empty049_legacy.output))) + (deps testfile-ac_empty049_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_legacy.output))) (rule (target testfile-ac_empty049_dolmen.output) (deps (:input testfile-ac_empty049.ae)) @@ -10117,10 +9967,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty049.expected testfile-ac_empty049_dolmen.output))) + (deps testfile-ac_empty049_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_dolmen.output))) (rule (target testfile-ac_empty049_fpa.output) (deps (:input testfile-ac_empty049.ae)) @@ -10137,10 +9988,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty049.expected testfile-ac_empty049_fpa.output))) + (deps testfile-ac_empty049_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty049.expected testfile-ac_empty049_fpa.output))) (rule (target testfile-ac_empty048_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty048.ae)) @@ -10159,12 +10011,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty048_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty048.ae)) @@ -10185,12 +10036,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty048.ae)) @@ -10210,12 +10060,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty048_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty048.ae)) @@ -10234,12 +10083,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty048_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty048.ae)) @@ -10258,12 +10106,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty048_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty048.ae)) @@ -10282,12 +10129,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty048_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty048_cdcl.output) (deps (:input testfile-ac_empty048.ae)) @@ -10305,10 +10151,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty048.expected testfile-ac_empty048_cdcl.output))) + (deps testfile-ac_empty048_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_cdcl.output))) (rule (target testfile-ac_empty048_tableaux_cdcl.output) (deps (:input testfile-ac_empty048.ae)) @@ -10326,12 +10173,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_tableaux_cdcl.output))) + (deps testfile-ac_empty048_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_tableaux_cdcl.output))) (rule (target testfile-ac_empty048_tableaux.output) (deps (:input testfile-ac_empty048.ae)) @@ -10349,12 +10195,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty048.expected - testfile-ac_empty048_tableaux.output))) + (deps testfile-ac_empty048_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_tableaux.output))) (rule (target testfile-ac_empty048_legacy.output) (deps (:input testfile-ac_empty048.ae)) @@ -10371,10 +10216,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty048.expected testfile-ac_empty048_legacy.output))) + (deps testfile-ac_empty048_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_legacy.output))) (rule (target testfile-ac_empty048_dolmen.output) (deps (:input testfile-ac_empty048.ae)) @@ -10391,10 +10237,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty048.expected testfile-ac_empty048_dolmen.output))) + (deps testfile-ac_empty048_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_dolmen.output))) (rule (target testfile-ac_empty048_fpa.output) (deps (:input testfile-ac_empty048.ae)) @@ -10411,10 +10258,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty048.expected testfile-ac_empty048_fpa.output))) + (deps testfile-ac_empty048_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty048.expected testfile-ac_empty048_fpa.output))) (rule (target testfile-ac_empty047_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty047.ae)) @@ -10433,12 +10281,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty047_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty047.ae)) @@ -10459,12 +10306,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty047.ae)) @@ -10484,12 +10330,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty047_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty047.ae)) @@ -10508,12 +10353,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty047_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty047.ae)) @@ -10532,12 +10376,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty047_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty047.ae)) @@ -10556,12 +10399,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty047_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty047_cdcl.output) (deps (:input testfile-ac_empty047.ae)) @@ -10579,10 +10421,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty047.expected testfile-ac_empty047_cdcl.output))) + (deps testfile-ac_empty047_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_cdcl.output))) (rule (target testfile-ac_empty047_tableaux_cdcl.output) (deps (:input testfile-ac_empty047.ae)) @@ -10600,12 +10443,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_tableaux_cdcl.output))) + (deps testfile-ac_empty047_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_tableaux_cdcl.output))) (rule (target testfile-ac_empty047_tableaux.output) (deps (:input testfile-ac_empty047.ae)) @@ -10623,12 +10465,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty047.expected - testfile-ac_empty047_tableaux.output))) + (deps testfile-ac_empty047_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_tableaux.output))) (rule (target testfile-ac_empty047_legacy.output) (deps (:input testfile-ac_empty047.ae)) @@ -10645,10 +10486,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty047.expected testfile-ac_empty047_legacy.output))) + (deps testfile-ac_empty047_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_legacy.output))) (rule (target testfile-ac_empty047_dolmen.output) (deps (:input testfile-ac_empty047.ae)) @@ -10665,10 +10507,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty047.expected testfile-ac_empty047_dolmen.output))) + (deps testfile-ac_empty047_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_dolmen.output))) (rule (target testfile-ac_empty047_fpa.output) (deps (:input testfile-ac_empty047.ae)) @@ -10685,10 +10528,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty047.expected testfile-ac_empty047_fpa.output))) + (deps testfile-ac_empty047_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty047.expected testfile-ac_empty047_fpa.output))) (rule (target testfile-ac_empty046_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty046.ae)) @@ -10707,12 +10551,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty046_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty046.ae)) @@ -10733,12 +10576,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty046.ae)) @@ -10758,12 +10600,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty046_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty046.ae)) @@ -10782,12 +10623,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty046_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty046.ae)) @@ -10806,12 +10646,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty046_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty046.ae)) @@ -10830,12 +10669,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty046_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty046_cdcl.output) (deps (:input testfile-ac_empty046.ae)) @@ -10853,10 +10691,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty046.expected testfile-ac_empty046_cdcl.output))) + (deps testfile-ac_empty046_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_cdcl.output))) (rule (target testfile-ac_empty046_tableaux_cdcl.output) (deps (:input testfile-ac_empty046.ae)) @@ -10874,12 +10713,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_tableaux_cdcl.output))) + (deps testfile-ac_empty046_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_tableaux_cdcl.output))) (rule (target testfile-ac_empty046_tableaux.output) (deps (:input testfile-ac_empty046.ae)) @@ -10897,12 +10735,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty046.expected - testfile-ac_empty046_tableaux.output))) + (deps testfile-ac_empty046_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_tableaux.output))) (rule (target testfile-ac_empty046_legacy.output) (deps (:input testfile-ac_empty046.ae)) @@ -10919,10 +10756,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty046.expected testfile-ac_empty046_legacy.output))) + (deps testfile-ac_empty046_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_legacy.output))) (rule (target testfile-ac_empty046_dolmen.output) (deps (:input testfile-ac_empty046.ae)) @@ -10939,10 +10777,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty046.expected testfile-ac_empty046_dolmen.output))) + (deps testfile-ac_empty046_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_dolmen.output))) (rule (target testfile-ac_empty046_fpa.output) (deps (:input testfile-ac_empty046.ae)) @@ -10959,10 +10798,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty046.expected testfile-ac_empty046_fpa.output))) + (deps testfile-ac_empty046_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty046.expected testfile-ac_empty046_fpa.output))) (rule (target testfile-ac_empty045_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty045.ae)) @@ -10981,12 +10821,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty045_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty045.ae)) @@ -11007,12 +10846,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty045.ae)) @@ -11032,12 +10870,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty045_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty045.ae)) @@ -11056,12 +10893,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty045_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty045.ae)) @@ -11080,12 +10916,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty045_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty045.ae)) @@ -11104,12 +10939,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty045_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty045_cdcl.output) (deps (:input testfile-ac_empty045.ae)) @@ -11127,10 +10961,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty045.expected testfile-ac_empty045_cdcl.output))) + (deps testfile-ac_empty045_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_cdcl.output))) (rule (target testfile-ac_empty045_tableaux_cdcl.output) (deps (:input testfile-ac_empty045.ae)) @@ -11148,12 +10983,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_tableaux_cdcl.output))) + (deps testfile-ac_empty045_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_tableaux_cdcl.output))) (rule (target testfile-ac_empty045_tableaux.output) (deps (:input testfile-ac_empty045.ae)) @@ -11171,12 +11005,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty045.expected - testfile-ac_empty045_tableaux.output))) + (deps testfile-ac_empty045_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_tableaux.output))) (rule (target testfile-ac_empty045_legacy.output) (deps (:input testfile-ac_empty045.ae)) @@ -11193,10 +11026,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty045.expected testfile-ac_empty045_legacy.output))) + (deps testfile-ac_empty045_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_legacy.output))) (rule (target testfile-ac_empty045_dolmen.output) (deps (:input testfile-ac_empty045.ae)) @@ -11213,10 +11047,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty045.expected testfile-ac_empty045_dolmen.output))) + (deps testfile-ac_empty045_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_dolmen.output))) (rule (target testfile-ac_empty045_fpa.output) (deps (:input testfile-ac_empty045.ae)) @@ -11233,10 +11068,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty045.expected testfile-ac_empty045_fpa.output))) + (deps testfile-ac_empty045_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty045.expected testfile-ac_empty045_fpa.output))) (rule (target testfile-ac_empty044_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty044.ae)) @@ -11255,12 +11091,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty044_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty044.ae)) @@ -11281,12 +11116,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty044.ae)) @@ -11306,12 +11140,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty044_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty044.ae)) @@ -11330,12 +11163,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty044_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty044.ae)) @@ -11354,12 +11186,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty044_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty044.ae)) @@ -11378,12 +11209,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty044_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty044_cdcl.output) (deps (:input testfile-ac_empty044.ae)) @@ -11401,10 +11231,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty044.expected testfile-ac_empty044_cdcl.output))) + (deps testfile-ac_empty044_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_cdcl.output))) (rule (target testfile-ac_empty044_tableaux_cdcl.output) (deps (:input testfile-ac_empty044.ae)) @@ -11422,12 +11253,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_tableaux_cdcl.output))) + (deps testfile-ac_empty044_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_tableaux_cdcl.output))) (rule (target testfile-ac_empty044_tableaux.output) (deps (:input testfile-ac_empty044.ae)) @@ -11445,12 +11275,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty044.expected - testfile-ac_empty044_tableaux.output))) + (deps testfile-ac_empty044_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_tableaux.output))) (rule (target testfile-ac_empty044_legacy.output) (deps (:input testfile-ac_empty044.ae)) @@ -11467,10 +11296,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty044.expected testfile-ac_empty044_legacy.output))) + (deps testfile-ac_empty044_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_legacy.output))) (rule (target testfile-ac_empty044_dolmen.output) (deps (:input testfile-ac_empty044.ae)) @@ -11487,10 +11317,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty044.expected testfile-ac_empty044_dolmen.output))) + (deps testfile-ac_empty044_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_dolmen.output))) (rule (target testfile-ac_empty044_fpa.output) (deps (:input testfile-ac_empty044.ae)) @@ -11507,10 +11338,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty044.expected testfile-ac_empty044_fpa.output))) + (deps testfile-ac_empty044_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty044.expected testfile-ac_empty044_fpa.output))) (rule (target testfile-ac_empty043_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty043.ae)) @@ -11529,12 +11361,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty043_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty043.ae)) @@ -11555,12 +11386,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty043.ae)) @@ -11580,12 +11410,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty043_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty043.ae)) @@ -11604,12 +11433,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty043_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty043.ae)) @@ -11628,12 +11456,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty043_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty043.ae)) @@ -11652,12 +11479,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty043_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty043_cdcl.output) (deps (:input testfile-ac_empty043.ae)) @@ -11675,10 +11501,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty043.expected testfile-ac_empty043_cdcl.output))) + (deps testfile-ac_empty043_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_cdcl.output))) (rule (target testfile-ac_empty043_tableaux_cdcl.output) (deps (:input testfile-ac_empty043.ae)) @@ -11696,12 +11523,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_tableaux_cdcl.output))) + (deps testfile-ac_empty043_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_tableaux_cdcl.output))) (rule (target testfile-ac_empty043_tableaux.output) (deps (:input testfile-ac_empty043.ae)) @@ -11719,12 +11545,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty043.expected - testfile-ac_empty043_tableaux.output))) + (deps testfile-ac_empty043_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_tableaux.output))) (rule (target testfile-ac_empty043_legacy.output) (deps (:input testfile-ac_empty043.ae)) @@ -11741,10 +11566,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty043.expected testfile-ac_empty043_legacy.output))) + (deps testfile-ac_empty043_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_legacy.output))) (rule (target testfile-ac_empty043_dolmen.output) (deps (:input testfile-ac_empty043.ae)) @@ -11761,10 +11587,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty043.expected testfile-ac_empty043_dolmen.output))) + (deps testfile-ac_empty043_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_dolmen.output))) (rule (target testfile-ac_empty043_fpa.output) (deps (:input testfile-ac_empty043.ae)) @@ -11781,10 +11608,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty043.expected testfile-ac_empty043_fpa.output))) + (deps testfile-ac_empty043_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty043.expected testfile-ac_empty043_fpa.output))) (rule (target testfile-ac_empty042_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty042.ae)) @@ -11803,12 +11631,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty042_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty042.ae)) @@ -11829,12 +11656,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty042.ae)) @@ -11854,12 +11680,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty042_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty042.ae)) @@ -11878,12 +11703,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty042_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty042.ae)) @@ -11902,12 +11726,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty042_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty042.ae)) @@ -11926,12 +11749,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty042_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty042_cdcl.output) (deps (:input testfile-ac_empty042.ae)) @@ -11949,10 +11771,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty042.expected testfile-ac_empty042_cdcl.output))) + (deps testfile-ac_empty042_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_cdcl.output))) (rule (target testfile-ac_empty042_tableaux_cdcl.output) (deps (:input testfile-ac_empty042.ae)) @@ -11970,12 +11793,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_tableaux_cdcl.output))) + (deps testfile-ac_empty042_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_tableaux_cdcl.output))) (rule (target testfile-ac_empty042_tableaux.output) (deps (:input testfile-ac_empty042.ae)) @@ -11993,12 +11815,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty042.expected - testfile-ac_empty042_tableaux.output))) + (deps testfile-ac_empty042_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_tableaux.output))) (rule (target testfile-ac_empty042_legacy.output) (deps (:input testfile-ac_empty042.ae)) @@ -12015,10 +11836,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty042.expected testfile-ac_empty042_legacy.output))) + (deps testfile-ac_empty042_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_legacy.output))) (rule (target testfile-ac_empty042_dolmen.output) (deps (:input testfile-ac_empty042.ae)) @@ -12035,10 +11857,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty042.expected testfile-ac_empty042_dolmen.output))) + (deps testfile-ac_empty042_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_dolmen.output))) (rule (target testfile-ac_empty042_fpa.output) (deps (:input testfile-ac_empty042.ae)) @@ -12055,10 +11878,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty042.expected testfile-ac_empty042_fpa.output))) + (deps testfile-ac_empty042_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty042.expected testfile-ac_empty042_fpa.output))) (rule (target testfile-ac_empty041_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty041.ae)) @@ -12077,12 +11901,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty041_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty041.ae)) @@ -12103,12 +11926,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty041.ae)) @@ -12128,12 +11950,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty041_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty041.ae)) @@ -12152,12 +11973,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty041_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty041.ae)) @@ -12176,12 +11996,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty041_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty041.ae)) @@ -12200,12 +12019,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty041_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty041_cdcl.output) (deps (:input testfile-ac_empty041.ae)) @@ -12223,10 +12041,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty041.expected testfile-ac_empty041_cdcl.output))) + (deps testfile-ac_empty041_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_cdcl.output))) (rule (target testfile-ac_empty041_tableaux_cdcl.output) (deps (:input testfile-ac_empty041.ae)) @@ -12244,12 +12063,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_tableaux_cdcl.output))) + (deps testfile-ac_empty041_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_tableaux_cdcl.output))) (rule (target testfile-ac_empty041_tableaux.output) (deps (:input testfile-ac_empty041.ae)) @@ -12267,12 +12085,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty041.expected - testfile-ac_empty041_tableaux.output))) + (deps testfile-ac_empty041_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_tableaux.output))) (rule (target testfile-ac_empty041_legacy.output) (deps (:input testfile-ac_empty041.ae)) @@ -12289,10 +12106,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty041.expected testfile-ac_empty041_legacy.output))) + (deps testfile-ac_empty041_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_legacy.output))) (rule (target testfile-ac_empty041_dolmen.output) (deps (:input testfile-ac_empty041.ae)) @@ -12309,10 +12127,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty041.expected testfile-ac_empty041_dolmen.output))) + (deps testfile-ac_empty041_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_dolmen.output))) (rule (target testfile-ac_empty041_fpa.output) (deps (:input testfile-ac_empty041.ae)) @@ -12329,10 +12148,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty041.expected testfile-ac_empty041_fpa.output))) + (deps testfile-ac_empty041_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty041.expected testfile-ac_empty041_fpa.output))) (rule (target testfile-ac_empty040_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty040.ae)) @@ -12351,12 +12171,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty040_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty040.ae)) @@ -12377,12 +12196,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty040.ae)) @@ -12402,12 +12220,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty040_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty040.ae)) @@ -12426,12 +12243,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty040_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty040.ae)) @@ -12450,12 +12266,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty040_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty040.ae)) @@ -12474,12 +12289,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty040_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty040_cdcl.output) (deps (:input testfile-ac_empty040.ae)) @@ -12497,10 +12311,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty040.expected testfile-ac_empty040_cdcl.output))) + (deps testfile-ac_empty040_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_cdcl.output))) (rule (target testfile-ac_empty040_tableaux_cdcl.output) (deps (:input testfile-ac_empty040.ae)) @@ -12518,12 +12333,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_tableaux_cdcl.output))) + (deps testfile-ac_empty040_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_tableaux_cdcl.output))) (rule (target testfile-ac_empty040_tableaux.output) (deps (:input testfile-ac_empty040.ae)) @@ -12541,12 +12355,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty040.expected - testfile-ac_empty040_tableaux.output))) + (deps testfile-ac_empty040_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_tableaux.output))) (rule (target testfile-ac_empty040_legacy.output) (deps (:input testfile-ac_empty040.ae)) @@ -12563,10 +12376,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty040.expected testfile-ac_empty040_legacy.output))) + (deps testfile-ac_empty040_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_legacy.output))) (rule (target testfile-ac_empty040_dolmen.output) (deps (:input testfile-ac_empty040.ae)) @@ -12583,10 +12397,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty040.expected testfile-ac_empty040_dolmen.output))) + (deps testfile-ac_empty040_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_dolmen.output))) (rule (target testfile-ac_empty040_fpa.output) (deps (:input testfile-ac_empty040.ae)) @@ -12603,10 +12418,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty040.expected testfile-ac_empty040_fpa.output))) + (deps testfile-ac_empty040_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty040.expected testfile-ac_empty040_fpa.output))) (rule (target testfile-ac_empty039_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty039.ae)) @@ -12625,12 +12441,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty039_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty039.ae)) @@ -12651,12 +12466,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty039.ae)) @@ -12676,12 +12490,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty039_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty039.ae)) @@ -12700,12 +12513,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty039_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty039.ae)) @@ -12724,12 +12536,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty039_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty039.ae)) @@ -12748,12 +12559,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty039_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty039_cdcl.output) (deps (:input testfile-ac_empty039.ae)) @@ -12771,10 +12581,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty039.expected testfile-ac_empty039_cdcl.output))) + (deps testfile-ac_empty039_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_cdcl.output))) (rule (target testfile-ac_empty039_tableaux_cdcl.output) (deps (:input testfile-ac_empty039.ae)) @@ -12792,12 +12603,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_tableaux_cdcl.output))) + (deps testfile-ac_empty039_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_tableaux_cdcl.output))) (rule (target testfile-ac_empty039_tableaux.output) (deps (:input testfile-ac_empty039.ae)) @@ -12815,12 +12625,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty039.expected - testfile-ac_empty039_tableaux.output))) + (deps testfile-ac_empty039_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_tableaux.output))) (rule (target testfile-ac_empty039_legacy.output) (deps (:input testfile-ac_empty039.ae)) @@ -12837,10 +12646,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty039.expected testfile-ac_empty039_legacy.output))) + (deps testfile-ac_empty039_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_legacy.output))) (rule (target testfile-ac_empty039_dolmen.output) (deps (:input testfile-ac_empty039.ae)) @@ -12857,10 +12667,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty039.expected testfile-ac_empty039_dolmen.output))) + (deps testfile-ac_empty039_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_dolmen.output))) (rule (target testfile-ac_empty039_fpa.output) (deps (:input testfile-ac_empty039.ae)) @@ -12877,10 +12688,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty039.expected testfile-ac_empty039_fpa.output))) + (deps testfile-ac_empty039_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty039.expected testfile-ac_empty039_fpa.output))) (rule (target testfile-ac_empty038_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty038.ae)) @@ -12899,12 +12711,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty038_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty038.ae)) @@ -12925,12 +12736,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty038.ae)) @@ -12950,12 +12760,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty038_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty038.ae)) @@ -12974,12 +12783,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty038_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty038.ae)) @@ -12998,12 +12806,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty038_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty038.ae)) @@ -13022,12 +12829,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty038_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty038_cdcl.output) (deps (:input testfile-ac_empty038.ae)) @@ -13045,10 +12851,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty038.expected testfile-ac_empty038_cdcl.output))) + (deps testfile-ac_empty038_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_cdcl.output))) (rule (target testfile-ac_empty038_tableaux_cdcl.output) (deps (:input testfile-ac_empty038.ae)) @@ -13066,12 +12873,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_tableaux_cdcl.output))) + (deps testfile-ac_empty038_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_tableaux_cdcl.output))) (rule (target testfile-ac_empty038_tableaux.output) (deps (:input testfile-ac_empty038.ae)) @@ -13089,12 +12895,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty038.expected - testfile-ac_empty038_tableaux.output))) + (deps testfile-ac_empty038_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_tableaux.output))) (rule (target testfile-ac_empty038_legacy.output) (deps (:input testfile-ac_empty038.ae)) @@ -13111,10 +12916,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty038.expected testfile-ac_empty038_legacy.output))) + (deps testfile-ac_empty038_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_legacy.output))) (rule (target testfile-ac_empty038_dolmen.output) (deps (:input testfile-ac_empty038.ae)) @@ -13131,10 +12937,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty038.expected testfile-ac_empty038_dolmen.output))) + (deps testfile-ac_empty038_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_dolmen.output))) (rule (target testfile-ac_empty038_fpa.output) (deps (:input testfile-ac_empty038.ae)) @@ -13151,10 +12958,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty038.expected testfile-ac_empty038_fpa.output))) + (deps testfile-ac_empty038_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty038.expected testfile-ac_empty038_fpa.output))) (rule (target testfile-ac_empty037_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty037.ae)) @@ -13173,12 +12981,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty037_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty037.ae)) @@ -13199,12 +13006,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty037.ae)) @@ -13224,12 +13030,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty037_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty037.ae)) @@ -13248,12 +13053,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty037_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty037.ae)) @@ -13272,12 +13076,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty037_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty037.ae)) @@ -13296,12 +13099,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty037_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty037_cdcl.output) (deps (:input testfile-ac_empty037.ae)) @@ -13319,10 +13121,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty037.expected testfile-ac_empty037_cdcl.output))) + (deps testfile-ac_empty037_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_cdcl.output))) (rule (target testfile-ac_empty037_tableaux_cdcl.output) (deps (:input testfile-ac_empty037.ae)) @@ -13340,12 +13143,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_tableaux_cdcl.output))) + (deps testfile-ac_empty037_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_tableaux_cdcl.output))) (rule (target testfile-ac_empty037_tableaux.output) (deps (:input testfile-ac_empty037.ae)) @@ -13363,12 +13165,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty037.expected - testfile-ac_empty037_tableaux.output))) + (deps testfile-ac_empty037_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_tableaux.output))) (rule (target testfile-ac_empty037_legacy.output) (deps (:input testfile-ac_empty037.ae)) @@ -13385,10 +13186,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty037.expected testfile-ac_empty037_legacy.output))) + (deps testfile-ac_empty037_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_legacy.output))) (rule (target testfile-ac_empty037_dolmen.output) (deps (:input testfile-ac_empty037.ae)) @@ -13405,10 +13207,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty037.expected testfile-ac_empty037_dolmen.output))) + (deps testfile-ac_empty037_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_dolmen.output))) (rule (target testfile-ac_empty037_fpa.output) (deps (:input testfile-ac_empty037.ae)) @@ -13425,10 +13228,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty037.expected testfile-ac_empty037_fpa.output))) + (deps testfile-ac_empty037_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty037.expected testfile-ac_empty037_fpa.output))) (rule (target testfile-ac_empty036_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty036.ae)) @@ -13447,12 +13251,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty036_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty036.ae)) @@ -13473,12 +13276,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty036.ae)) @@ -13498,12 +13300,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty036_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty036.ae)) @@ -13522,12 +13323,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty036_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty036.ae)) @@ -13546,12 +13346,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty036_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty036.ae)) @@ -13570,12 +13369,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty036_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty036_cdcl.output) (deps (:input testfile-ac_empty036.ae)) @@ -13593,10 +13391,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty036.expected testfile-ac_empty036_cdcl.output))) + (deps testfile-ac_empty036_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_cdcl.output))) (rule (target testfile-ac_empty036_tableaux_cdcl.output) (deps (:input testfile-ac_empty036.ae)) @@ -13614,12 +13413,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_tableaux_cdcl.output))) + (deps testfile-ac_empty036_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_tableaux_cdcl.output))) (rule (target testfile-ac_empty036_tableaux.output) (deps (:input testfile-ac_empty036.ae)) @@ -13637,12 +13435,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty036.expected - testfile-ac_empty036_tableaux.output))) + (deps testfile-ac_empty036_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_tableaux.output))) (rule (target testfile-ac_empty036_legacy.output) (deps (:input testfile-ac_empty036.ae)) @@ -13659,10 +13456,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty036.expected testfile-ac_empty036_legacy.output))) + (deps testfile-ac_empty036_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_legacy.output))) (rule (target testfile-ac_empty036_dolmen.output) (deps (:input testfile-ac_empty036.ae)) @@ -13679,10 +13477,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty036.expected testfile-ac_empty036_dolmen.output))) + (deps testfile-ac_empty036_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_dolmen.output))) (rule (target testfile-ac_empty036_fpa.output) (deps (:input testfile-ac_empty036.ae)) @@ -13699,10 +13498,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty036.expected testfile-ac_empty036_fpa.output))) + (deps testfile-ac_empty036_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty036.expected testfile-ac_empty036_fpa.output))) (rule (target testfile-ac_empty035_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty035.ae)) @@ -13721,12 +13521,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty035_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty035.ae)) @@ -13747,12 +13546,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty035.ae)) @@ -13772,12 +13570,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty035_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty035.ae)) @@ -13796,12 +13593,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty035_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty035.ae)) @@ -13820,12 +13616,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty035_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty035.ae)) @@ -13844,12 +13639,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty035_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty035_cdcl.output) (deps (:input testfile-ac_empty035.ae)) @@ -13867,10 +13661,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty035.expected testfile-ac_empty035_cdcl.output))) + (deps testfile-ac_empty035_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_cdcl.output))) (rule (target testfile-ac_empty035_tableaux_cdcl.output) (deps (:input testfile-ac_empty035.ae)) @@ -13888,12 +13683,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_tableaux_cdcl.output))) + (deps testfile-ac_empty035_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_tableaux_cdcl.output))) (rule (target testfile-ac_empty035_tableaux.output) (deps (:input testfile-ac_empty035.ae)) @@ -13911,12 +13705,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty035.expected - testfile-ac_empty035_tableaux.output))) + (deps testfile-ac_empty035_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_tableaux.output))) (rule (target testfile-ac_empty035_legacy.output) (deps (:input testfile-ac_empty035.ae)) @@ -13933,10 +13726,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty035.expected testfile-ac_empty035_legacy.output))) + (deps testfile-ac_empty035_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_legacy.output))) (rule (target testfile-ac_empty035_dolmen.output) (deps (:input testfile-ac_empty035.ae)) @@ -13953,10 +13747,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty035.expected testfile-ac_empty035_dolmen.output))) + (deps testfile-ac_empty035_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_dolmen.output))) (rule (target testfile-ac_empty035_fpa.output) (deps (:input testfile-ac_empty035.ae)) @@ -13973,10 +13768,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty035.expected testfile-ac_empty035_fpa.output))) + (deps testfile-ac_empty035_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty035.expected testfile-ac_empty035_fpa.output))) (rule (target testfile-ac_empty034_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty034.ae)) @@ -13995,12 +13791,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty034_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty034.ae)) @@ -14021,12 +13816,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty034.ae)) @@ -14046,12 +13840,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty034_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty034.ae)) @@ -14070,12 +13863,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty034_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty034.ae)) @@ -14094,12 +13886,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty034_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty034.ae)) @@ -14118,12 +13909,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty034_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty034_cdcl.output) (deps (:input testfile-ac_empty034.ae)) @@ -14141,10 +13931,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty034.expected testfile-ac_empty034_cdcl.output))) + (deps testfile-ac_empty034_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_cdcl.output))) (rule (target testfile-ac_empty034_tableaux_cdcl.output) (deps (:input testfile-ac_empty034.ae)) @@ -14162,12 +13953,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_tableaux_cdcl.output))) + (deps testfile-ac_empty034_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_tableaux_cdcl.output))) (rule (target testfile-ac_empty034_tableaux.output) (deps (:input testfile-ac_empty034.ae)) @@ -14185,12 +13975,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty034.expected - testfile-ac_empty034_tableaux.output))) + (deps testfile-ac_empty034_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_tableaux.output))) (rule (target testfile-ac_empty034_legacy.output) (deps (:input testfile-ac_empty034.ae)) @@ -14207,10 +13996,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty034.expected testfile-ac_empty034_legacy.output))) + (deps testfile-ac_empty034_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_legacy.output))) (rule (target testfile-ac_empty034_dolmen.output) (deps (:input testfile-ac_empty034.ae)) @@ -14227,10 +14017,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty034.expected testfile-ac_empty034_dolmen.output))) + (deps testfile-ac_empty034_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_dolmen.output))) (rule (target testfile-ac_empty034_fpa.output) (deps (:input testfile-ac_empty034.ae)) @@ -14247,10 +14038,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty034.expected testfile-ac_empty034_fpa.output))) + (deps testfile-ac_empty034_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty034.expected testfile-ac_empty034_fpa.output))) (rule (target testfile-ac_empty033_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty033.ae)) @@ -14269,12 +14061,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty033_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty033.ae)) @@ -14295,12 +14086,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty033.ae)) @@ -14320,12 +14110,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty033_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty033.ae)) @@ -14344,12 +14133,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty033_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty033.ae)) @@ -14368,12 +14156,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty033_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty033.ae)) @@ -14392,12 +14179,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty033_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty033_cdcl.output) (deps (:input testfile-ac_empty033.ae)) @@ -14415,10 +14201,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty033.expected testfile-ac_empty033_cdcl.output))) + (deps testfile-ac_empty033_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_cdcl.output))) (rule (target testfile-ac_empty033_tableaux_cdcl.output) (deps (:input testfile-ac_empty033.ae)) @@ -14436,12 +14223,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_tableaux_cdcl.output))) + (deps testfile-ac_empty033_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_tableaux_cdcl.output))) (rule (target testfile-ac_empty033_tableaux.output) (deps (:input testfile-ac_empty033.ae)) @@ -14459,12 +14245,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty033.expected - testfile-ac_empty033_tableaux.output))) + (deps testfile-ac_empty033_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_tableaux.output))) (rule (target testfile-ac_empty033_legacy.output) (deps (:input testfile-ac_empty033.ae)) @@ -14481,10 +14266,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty033.expected testfile-ac_empty033_legacy.output))) + (deps testfile-ac_empty033_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_legacy.output))) (rule (target testfile-ac_empty033_dolmen.output) (deps (:input testfile-ac_empty033.ae)) @@ -14501,10 +14287,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty033.expected testfile-ac_empty033_dolmen.output))) + (deps testfile-ac_empty033_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_dolmen.output))) (rule (target testfile-ac_empty033_fpa.output) (deps (:input testfile-ac_empty033.ae)) @@ -14521,10 +14308,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty033.expected testfile-ac_empty033_fpa.output))) + (deps testfile-ac_empty033_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty033.expected testfile-ac_empty033_fpa.output))) (rule (target testfile-ac_empty032_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty032.ae)) @@ -14543,12 +14331,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty032_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty032.ae)) @@ -14569,12 +14356,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty032.ae)) @@ -14594,12 +14380,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty032_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty032.ae)) @@ -14618,12 +14403,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty032_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty032.ae)) @@ -14642,12 +14426,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty032_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty032.ae)) @@ -14666,12 +14449,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty032_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty032_cdcl.output) (deps (:input testfile-ac_empty032.ae)) @@ -14689,10 +14471,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty032.expected testfile-ac_empty032_cdcl.output))) + (deps testfile-ac_empty032_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_cdcl.output))) (rule (target testfile-ac_empty032_tableaux_cdcl.output) (deps (:input testfile-ac_empty032.ae)) @@ -14710,12 +14493,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_tableaux_cdcl.output))) + (deps testfile-ac_empty032_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_tableaux_cdcl.output))) (rule (target testfile-ac_empty032_tableaux.output) (deps (:input testfile-ac_empty032.ae)) @@ -14733,12 +14515,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty032.expected - testfile-ac_empty032_tableaux.output))) + (deps testfile-ac_empty032_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_tableaux.output))) (rule (target testfile-ac_empty032_legacy.output) (deps (:input testfile-ac_empty032.ae)) @@ -14755,10 +14536,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty032.expected testfile-ac_empty032_legacy.output))) + (deps testfile-ac_empty032_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_legacy.output))) (rule (target testfile-ac_empty032_dolmen.output) (deps (:input testfile-ac_empty032.ae)) @@ -14775,10 +14557,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty032.expected testfile-ac_empty032_dolmen.output))) + (deps testfile-ac_empty032_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_dolmen.output))) (rule (target testfile-ac_empty032_fpa.output) (deps (:input testfile-ac_empty032.ae)) @@ -14795,10 +14578,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty032.expected testfile-ac_empty032_fpa.output))) + (deps testfile-ac_empty032_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty032.expected testfile-ac_empty032_fpa.output))) (rule (target testfile-ac_empty031_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty031.ae)) @@ -14817,12 +14601,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty031_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty031.ae)) @@ -14843,12 +14626,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty031.ae)) @@ -14868,12 +14650,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty031_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty031.ae)) @@ -14892,12 +14673,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty031_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty031.ae)) @@ -14916,12 +14696,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty031_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty031.ae)) @@ -14940,12 +14719,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty031_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty031_cdcl.output) (deps (:input testfile-ac_empty031.ae)) @@ -14963,10 +14741,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty031.expected testfile-ac_empty031_cdcl.output))) + (deps testfile-ac_empty031_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_cdcl.output))) (rule (target testfile-ac_empty031_tableaux_cdcl.output) (deps (:input testfile-ac_empty031.ae)) @@ -14984,12 +14763,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_tableaux_cdcl.output))) + (deps testfile-ac_empty031_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_tableaux_cdcl.output))) (rule (target testfile-ac_empty031_tableaux.output) (deps (:input testfile-ac_empty031.ae)) @@ -15007,12 +14785,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty031.expected - testfile-ac_empty031_tableaux.output))) + (deps testfile-ac_empty031_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_tableaux.output))) (rule (target testfile-ac_empty031_legacy.output) (deps (:input testfile-ac_empty031.ae)) @@ -15029,10 +14806,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty031.expected testfile-ac_empty031_legacy.output))) + (deps testfile-ac_empty031_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_legacy.output))) (rule (target testfile-ac_empty031_dolmen.output) (deps (:input testfile-ac_empty031.ae)) @@ -15049,10 +14827,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty031.expected testfile-ac_empty031_dolmen.output))) + (deps testfile-ac_empty031_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_dolmen.output))) (rule (target testfile-ac_empty031_fpa.output) (deps (:input testfile-ac_empty031.ae)) @@ -15069,10 +14848,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty031.expected testfile-ac_empty031_fpa.output))) + (deps testfile-ac_empty031_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty031.expected testfile-ac_empty031_fpa.output))) (rule (target testfile-ac_empty030_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty030.ae)) @@ -15091,12 +14871,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty030_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty030.ae)) @@ -15117,12 +14896,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty030.ae)) @@ -15142,12 +14920,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty030_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty030.ae)) @@ -15166,12 +14943,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty030_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty030.ae)) @@ -15190,12 +14966,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty030_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty030.ae)) @@ -15214,12 +14989,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty030_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty030_cdcl.output) (deps (:input testfile-ac_empty030.ae)) @@ -15237,10 +15011,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty030.expected testfile-ac_empty030_cdcl.output))) + (deps testfile-ac_empty030_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_cdcl.output))) (rule (target testfile-ac_empty030_tableaux_cdcl.output) (deps (:input testfile-ac_empty030.ae)) @@ -15258,12 +15033,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_tableaux_cdcl.output))) + (deps testfile-ac_empty030_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_tableaux_cdcl.output))) (rule (target testfile-ac_empty030_tableaux.output) (deps (:input testfile-ac_empty030.ae)) @@ -15281,12 +15055,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty030.expected - testfile-ac_empty030_tableaux.output))) + (deps testfile-ac_empty030_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_tableaux.output))) (rule (target testfile-ac_empty030_legacy.output) (deps (:input testfile-ac_empty030.ae)) @@ -15303,10 +15076,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty030.expected testfile-ac_empty030_legacy.output))) + (deps testfile-ac_empty030_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_legacy.output))) (rule (target testfile-ac_empty030_dolmen.output) (deps (:input testfile-ac_empty030.ae)) @@ -15323,10 +15097,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty030.expected testfile-ac_empty030_dolmen.output))) + (deps testfile-ac_empty030_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_dolmen.output))) (rule (target testfile-ac_empty030_fpa.output) (deps (:input testfile-ac_empty030.ae)) @@ -15343,10 +15118,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty030.expected testfile-ac_empty030_fpa.output))) + (deps testfile-ac_empty030_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty030.expected testfile-ac_empty030_fpa.output))) (rule (target testfile-ac_empty029_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty029.ae)) @@ -15365,12 +15141,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty029_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty029.ae)) @@ -15391,12 +15166,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty029.ae)) @@ -15416,12 +15190,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty029_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty029.ae)) @@ -15440,12 +15213,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty029_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty029.ae)) @@ -15464,12 +15236,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty029_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty029.ae)) @@ -15488,12 +15259,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty029_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty029_cdcl.output) (deps (:input testfile-ac_empty029.ae)) @@ -15511,10 +15281,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty029.expected testfile-ac_empty029_cdcl.output))) + (deps testfile-ac_empty029_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_cdcl.output))) (rule (target testfile-ac_empty029_tableaux_cdcl.output) (deps (:input testfile-ac_empty029.ae)) @@ -15532,12 +15303,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_tableaux_cdcl.output))) + (deps testfile-ac_empty029_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_tableaux_cdcl.output))) (rule (target testfile-ac_empty029_tableaux.output) (deps (:input testfile-ac_empty029.ae)) @@ -15555,12 +15325,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty029.expected - testfile-ac_empty029_tableaux.output))) + (deps testfile-ac_empty029_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_tableaux.output))) (rule (target testfile-ac_empty029_legacy.output) (deps (:input testfile-ac_empty029.ae)) @@ -15577,10 +15346,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty029.expected testfile-ac_empty029_legacy.output))) + (deps testfile-ac_empty029_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_legacy.output))) (rule (target testfile-ac_empty029_dolmen.output) (deps (:input testfile-ac_empty029.ae)) @@ -15597,10 +15367,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty029.expected testfile-ac_empty029_dolmen.output))) + (deps testfile-ac_empty029_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_dolmen.output))) (rule (target testfile-ac_empty029_fpa.output) (deps (:input testfile-ac_empty029.ae)) @@ -15617,10 +15388,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty029.expected testfile-ac_empty029_fpa.output))) + (deps testfile-ac_empty029_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty029.expected testfile-ac_empty029_fpa.output))) (rule (target testfile-ac_empty028_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty028.ae)) @@ -15639,12 +15411,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty028_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty028.ae)) @@ -15665,12 +15436,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty028.ae)) @@ -15690,12 +15460,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty028_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty028.ae)) @@ -15714,12 +15483,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty028_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty028.ae)) @@ -15738,12 +15506,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty028_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty028.ae)) @@ -15762,12 +15529,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty028_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty028_cdcl.output) (deps (:input testfile-ac_empty028.ae)) @@ -15785,10 +15551,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty028.expected testfile-ac_empty028_cdcl.output))) + (deps testfile-ac_empty028_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_cdcl.output))) (rule (target testfile-ac_empty028_tableaux_cdcl.output) (deps (:input testfile-ac_empty028.ae)) @@ -15806,12 +15573,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_tableaux_cdcl.output))) + (deps testfile-ac_empty028_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_tableaux_cdcl.output))) (rule (target testfile-ac_empty028_tableaux.output) (deps (:input testfile-ac_empty028.ae)) @@ -15829,12 +15595,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty028.expected - testfile-ac_empty028_tableaux.output))) + (deps testfile-ac_empty028_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_tableaux.output))) (rule (target testfile-ac_empty028_legacy.output) (deps (:input testfile-ac_empty028.ae)) @@ -15851,10 +15616,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty028.expected testfile-ac_empty028_legacy.output))) + (deps testfile-ac_empty028_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_legacy.output))) (rule (target testfile-ac_empty028_dolmen.output) (deps (:input testfile-ac_empty028.ae)) @@ -15871,10 +15637,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty028.expected testfile-ac_empty028_dolmen.output))) + (deps testfile-ac_empty028_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_dolmen.output))) (rule (target testfile-ac_empty028_fpa.output) (deps (:input testfile-ac_empty028.ae)) @@ -15891,10 +15658,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty028.expected testfile-ac_empty028_fpa.output))) + (deps testfile-ac_empty028_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty028.expected testfile-ac_empty028_fpa.output))) (rule (target testfile-ac_empty027_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty027.ae)) @@ -15913,12 +15681,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty027_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty027.ae)) @@ -15939,12 +15706,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty027.ae)) @@ -15964,12 +15730,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty027_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty027.ae)) @@ -15988,12 +15753,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty027_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty027.ae)) @@ -16012,12 +15776,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty027_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty027.ae)) @@ -16036,12 +15799,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty027_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty027_cdcl.output) (deps (:input testfile-ac_empty027.ae)) @@ -16059,10 +15821,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty027.expected testfile-ac_empty027_cdcl.output))) + (deps testfile-ac_empty027_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_cdcl.output))) (rule (target testfile-ac_empty027_tableaux_cdcl.output) (deps (:input testfile-ac_empty027.ae)) @@ -16080,12 +15843,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_tableaux_cdcl.output))) + (deps testfile-ac_empty027_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_tableaux_cdcl.output))) (rule (target testfile-ac_empty027_tableaux.output) (deps (:input testfile-ac_empty027.ae)) @@ -16103,12 +15865,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty027.expected - testfile-ac_empty027_tableaux.output))) + (deps testfile-ac_empty027_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_tableaux.output))) (rule (target testfile-ac_empty027_legacy.output) (deps (:input testfile-ac_empty027.ae)) @@ -16125,10 +15886,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty027.expected testfile-ac_empty027_legacy.output))) + (deps testfile-ac_empty027_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_legacy.output))) (rule (target testfile-ac_empty027_dolmen.output) (deps (:input testfile-ac_empty027.ae)) @@ -16145,10 +15907,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty027.expected testfile-ac_empty027_dolmen.output))) + (deps testfile-ac_empty027_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_dolmen.output))) (rule (target testfile-ac_empty027_fpa.output) (deps (:input testfile-ac_empty027.ae)) @@ -16165,10 +15928,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty027.expected testfile-ac_empty027_fpa.output))) + (deps testfile-ac_empty027_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty027.expected testfile-ac_empty027_fpa.output))) (rule (target testfile-ac_empty026_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty026.ae)) @@ -16187,12 +15951,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty026_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty026.ae)) @@ -16213,12 +15976,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty026.ae)) @@ -16238,12 +16000,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty026_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty026.ae)) @@ -16262,12 +16023,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty026_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty026.ae)) @@ -16286,12 +16046,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty026_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty026.ae)) @@ -16310,12 +16069,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty026_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty026_cdcl.output) (deps (:input testfile-ac_empty026.ae)) @@ -16333,10 +16091,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty026.expected testfile-ac_empty026_cdcl.output))) + (deps testfile-ac_empty026_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_cdcl.output))) (rule (target testfile-ac_empty026_tableaux_cdcl.output) (deps (:input testfile-ac_empty026.ae)) @@ -16354,12 +16113,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_tableaux_cdcl.output))) + (deps testfile-ac_empty026_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_tableaux_cdcl.output))) (rule (target testfile-ac_empty026_tableaux.output) (deps (:input testfile-ac_empty026.ae)) @@ -16377,12 +16135,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty026.expected - testfile-ac_empty026_tableaux.output))) + (deps testfile-ac_empty026_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_tableaux.output))) (rule (target testfile-ac_empty026_legacy.output) (deps (:input testfile-ac_empty026.ae)) @@ -16399,10 +16156,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty026.expected testfile-ac_empty026_legacy.output))) + (deps testfile-ac_empty026_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_legacy.output))) (rule (target testfile-ac_empty026_dolmen.output) (deps (:input testfile-ac_empty026.ae)) @@ -16419,10 +16177,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty026.expected testfile-ac_empty026_dolmen.output))) + (deps testfile-ac_empty026_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_dolmen.output))) (rule (target testfile-ac_empty026_fpa.output) (deps (:input testfile-ac_empty026.ae)) @@ -16439,10 +16198,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty026.expected testfile-ac_empty026_fpa.output))) + (deps testfile-ac_empty026_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty026.expected testfile-ac_empty026_fpa.output))) (rule (target testfile-ac_empty025_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty025.ae)) @@ -16461,12 +16221,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty025_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty025.ae)) @@ -16487,12 +16246,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty025.ae)) @@ -16512,12 +16270,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty025_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty025.ae)) @@ -16536,12 +16293,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty025_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty025.ae)) @@ -16560,12 +16316,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty025_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty025.ae)) @@ -16584,12 +16339,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty025_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty025_cdcl.output) (deps (:input testfile-ac_empty025.ae)) @@ -16607,10 +16361,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty025.expected testfile-ac_empty025_cdcl.output))) + (deps testfile-ac_empty025_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_cdcl.output))) (rule (target testfile-ac_empty025_tableaux_cdcl.output) (deps (:input testfile-ac_empty025.ae)) @@ -16628,12 +16383,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_tableaux_cdcl.output))) + (deps testfile-ac_empty025_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_tableaux_cdcl.output))) (rule (target testfile-ac_empty025_tableaux.output) (deps (:input testfile-ac_empty025.ae)) @@ -16651,12 +16405,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty025.expected - testfile-ac_empty025_tableaux.output))) + (deps testfile-ac_empty025_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_tableaux.output))) (rule (target testfile-ac_empty025_legacy.output) (deps (:input testfile-ac_empty025.ae)) @@ -16673,10 +16426,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty025.expected testfile-ac_empty025_legacy.output))) + (deps testfile-ac_empty025_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_legacy.output))) (rule (target testfile-ac_empty025_dolmen.output) (deps (:input testfile-ac_empty025.ae)) @@ -16693,10 +16447,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty025.expected testfile-ac_empty025_dolmen.output))) + (deps testfile-ac_empty025_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_dolmen.output))) (rule (target testfile-ac_empty025_fpa.output) (deps (:input testfile-ac_empty025.ae)) @@ -16713,10 +16468,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty025.expected testfile-ac_empty025_fpa.output))) + (deps testfile-ac_empty025_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty025.expected testfile-ac_empty025_fpa.output))) (rule (target testfile-ac_empty024_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty024.ae)) @@ -16735,12 +16491,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty024_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty024.ae)) @@ -16761,12 +16516,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty024.ae)) @@ -16786,12 +16540,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty024_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty024.ae)) @@ -16810,12 +16563,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty024_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty024.ae)) @@ -16834,12 +16586,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty024_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty024.ae)) @@ -16858,12 +16609,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty024_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty024_cdcl.output) (deps (:input testfile-ac_empty024.ae)) @@ -16881,10 +16631,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty024.expected testfile-ac_empty024_cdcl.output))) + (deps testfile-ac_empty024_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_cdcl.output))) (rule (target testfile-ac_empty024_tableaux_cdcl.output) (deps (:input testfile-ac_empty024.ae)) @@ -16902,12 +16653,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_tableaux_cdcl.output))) + (deps testfile-ac_empty024_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_tableaux_cdcl.output))) (rule (target testfile-ac_empty024_tableaux.output) (deps (:input testfile-ac_empty024.ae)) @@ -16925,12 +16675,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty024.expected - testfile-ac_empty024_tableaux.output))) + (deps testfile-ac_empty024_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_tableaux.output))) (rule (target testfile-ac_empty024_legacy.output) (deps (:input testfile-ac_empty024.ae)) @@ -16947,10 +16696,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty024.expected testfile-ac_empty024_legacy.output))) + (deps testfile-ac_empty024_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_legacy.output))) (rule (target testfile-ac_empty024_dolmen.output) (deps (:input testfile-ac_empty024.ae)) @@ -16967,10 +16717,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty024.expected testfile-ac_empty024_dolmen.output))) + (deps testfile-ac_empty024_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_dolmen.output))) (rule (target testfile-ac_empty024_fpa.output) (deps (:input testfile-ac_empty024.ae)) @@ -16987,10 +16738,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty024.expected testfile-ac_empty024_fpa.output))) + (deps testfile-ac_empty024_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty024.expected testfile-ac_empty024_fpa.output))) (rule (target testfile-ac_empty023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty023.ae)) @@ -17009,12 +16761,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty023.ae)) @@ -17035,12 +16786,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty023.ae)) @@ -17060,12 +16810,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty023.ae)) @@ -17084,12 +16833,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty023.ae)) @@ -17108,12 +16856,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty023.ae)) @@ -17132,12 +16879,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty023_cdcl.output) (deps (:input testfile-ac_empty023.ae)) @@ -17155,10 +16901,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty023.expected testfile-ac_empty023_cdcl.output))) + (deps testfile-ac_empty023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_cdcl.output))) (rule (target testfile-ac_empty023_tableaux_cdcl.output) (deps (:input testfile-ac_empty023.ae)) @@ -17176,12 +16923,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_tableaux_cdcl.output))) + (deps testfile-ac_empty023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_tableaux_cdcl.output))) (rule (target testfile-ac_empty023_tableaux.output) (deps (:input testfile-ac_empty023.ae)) @@ -17199,12 +16945,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty023.expected - testfile-ac_empty023_tableaux.output))) + (deps testfile-ac_empty023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_tableaux.output))) (rule (target testfile-ac_empty023_legacy.output) (deps (:input testfile-ac_empty023.ae)) @@ -17221,10 +16966,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty023.expected testfile-ac_empty023_legacy.output))) + (deps testfile-ac_empty023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_legacy.output))) (rule (target testfile-ac_empty023_dolmen.output) (deps (:input testfile-ac_empty023.ae)) @@ -17241,10 +16987,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty023.expected testfile-ac_empty023_dolmen.output))) + (deps testfile-ac_empty023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_dolmen.output))) (rule (target testfile-ac_empty023_fpa.output) (deps (:input testfile-ac_empty023.ae)) @@ -17261,10 +17008,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty023.expected testfile-ac_empty023_fpa.output))) + (deps testfile-ac_empty023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty023.expected testfile-ac_empty023_fpa.output))) (rule (target testfile-ac_empty022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty022.ae)) @@ -17283,12 +17031,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty022.ae)) @@ -17309,12 +17056,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty022.ae)) @@ -17334,12 +17080,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty022.ae)) @@ -17358,12 +17103,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty022.ae)) @@ -17382,12 +17126,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty022.ae)) @@ -17406,12 +17149,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty022_cdcl.output) (deps (:input testfile-ac_empty022.ae)) @@ -17429,10 +17171,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty022.expected testfile-ac_empty022_cdcl.output))) + (deps testfile-ac_empty022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_cdcl.output))) (rule (target testfile-ac_empty022_tableaux_cdcl.output) (deps (:input testfile-ac_empty022.ae)) @@ -17450,12 +17193,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_tableaux_cdcl.output))) + (deps testfile-ac_empty022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_tableaux_cdcl.output))) (rule (target testfile-ac_empty022_tableaux.output) (deps (:input testfile-ac_empty022.ae)) @@ -17473,12 +17215,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty022.expected - testfile-ac_empty022_tableaux.output))) + (deps testfile-ac_empty022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_tableaux.output))) (rule (target testfile-ac_empty022_legacy.output) (deps (:input testfile-ac_empty022.ae)) @@ -17495,10 +17236,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty022.expected testfile-ac_empty022_legacy.output))) + (deps testfile-ac_empty022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_legacy.output))) (rule (target testfile-ac_empty022_dolmen.output) (deps (:input testfile-ac_empty022.ae)) @@ -17515,10 +17257,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty022.expected testfile-ac_empty022_dolmen.output))) + (deps testfile-ac_empty022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_dolmen.output))) (rule (target testfile-ac_empty022_fpa.output) (deps (:input testfile-ac_empty022.ae)) @@ -17535,10 +17278,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty022.expected testfile-ac_empty022_fpa.output))) + (deps testfile-ac_empty022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty022.expected testfile-ac_empty022_fpa.output))) (rule (target testfile-ac_empty021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty021.ae)) @@ -17557,12 +17301,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty021.ae)) @@ -17583,12 +17326,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty021.ae)) @@ -17608,12 +17350,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty021.ae)) @@ -17632,12 +17373,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty021.ae)) @@ -17656,12 +17396,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty021.ae)) @@ -17680,12 +17419,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty021_cdcl.output) (deps (:input testfile-ac_empty021.ae)) @@ -17703,10 +17441,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty021.expected testfile-ac_empty021_cdcl.output))) + (deps testfile-ac_empty021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_cdcl.output))) (rule (target testfile-ac_empty021_tableaux_cdcl.output) (deps (:input testfile-ac_empty021.ae)) @@ -17724,12 +17463,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_tableaux_cdcl.output))) + (deps testfile-ac_empty021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_tableaux_cdcl.output))) (rule (target testfile-ac_empty021_tableaux.output) (deps (:input testfile-ac_empty021.ae)) @@ -17747,12 +17485,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty021.expected - testfile-ac_empty021_tableaux.output))) + (deps testfile-ac_empty021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_tableaux.output))) (rule (target testfile-ac_empty021_legacy.output) (deps (:input testfile-ac_empty021.ae)) @@ -17769,10 +17506,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty021.expected testfile-ac_empty021_legacy.output))) + (deps testfile-ac_empty021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_legacy.output))) (rule (target testfile-ac_empty021_dolmen.output) (deps (:input testfile-ac_empty021.ae)) @@ -17789,10 +17527,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty021.expected testfile-ac_empty021_dolmen.output))) + (deps testfile-ac_empty021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_dolmen.output))) (rule (target testfile-ac_empty021_fpa.output) (deps (:input testfile-ac_empty021.ae)) @@ -17809,10 +17548,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty021.expected testfile-ac_empty021_fpa.output))) + (deps testfile-ac_empty021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty021.expected testfile-ac_empty021_fpa.output))) (rule (target testfile-ac_empty020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty020.ae)) @@ -17831,12 +17571,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty020.ae)) @@ -17857,12 +17596,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty020.ae)) @@ -17882,12 +17620,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty020.ae)) @@ -17906,12 +17643,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty020.ae)) @@ -17930,12 +17666,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty020.ae)) @@ -17954,12 +17689,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty020_cdcl.output) (deps (:input testfile-ac_empty020.ae)) @@ -17977,10 +17711,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty020.expected testfile-ac_empty020_cdcl.output))) + (deps testfile-ac_empty020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_cdcl.output))) (rule (target testfile-ac_empty020_tableaux_cdcl.output) (deps (:input testfile-ac_empty020.ae)) @@ -17998,12 +17733,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_tableaux_cdcl.output))) + (deps testfile-ac_empty020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_tableaux_cdcl.output))) (rule (target testfile-ac_empty020_tableaux.output) (deps (:input testfile-ac_empty020.ae)) @@ -18021,12 +17755,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty020.expected - testfile-ac_empty020_tableaux.output))) + (deps testfile-ac_empty020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_tableaux.output))) (rule (target testfile-ac_empty020_legacy.output) (deps (:input testfile-ac_empty020.ae)) @@ -18043,10 +17776,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty020.expected testfile-ac_empty020_legacy.output))) + (deps testfile-ac_empty020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_legacy.output))) (rule (target testfile-ac_empty020_dolmen.output) (deps (:input testfile-ac_empty020.ae)) @@ -18063,10 +17797,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty020.expected testfile-ac_empty020_dolmen.output))) + (deps testfile-ac_empty020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_dolmen.output))) (rule (target testfile-ac_empty020_fpa.output) (deps (:input testfile-ac_empty020.ae)) @@ -18083,10 +17818,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty020.expected testfile-ac_empty020_fpa.output))) + (deps testfile-ac_empty020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty020.expected testfile-ac_empty020_fpa.output))) (rule (target testfile-ac_empty019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty019.ae)) @@ -18105,12 +17841,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty019.ae)) @@ -18131,12 +17866,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty019.ae)) @@ -18156,12 +17890,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty019.ae)) @@ -18180,12 +17913,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty019.ae)) @@ -18204,12 +17936,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty019.ae)) @@ -18228,12 +17959,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty019_cdcl.output) (deps (:input testfile-ac_empty019.ae)) @@ -18251,10 +17981,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty019.expected testfile-ac_empty019_cdcl.output))) + (deps testfile-ac_empty019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_cdcl.output))) (rule (target testfile-ac_empty019_tableaux_cdcl.output) (deps (:input testfile-ac_empty019.ae)) @@ -18272,12 +18003,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_tableaux_cdcl.output))) + (deps testfile-ac_empty019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_tableaux_cdcl.output))) (rule (target testfile-ac_empty019_tableaux.output) (deps (:input testfile-ac_empty019.ae)) @@ -18295,12 +18025,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty019.expected - testfile-ac_empty019_tableaux.output))) + (deps testfile-ac_empty019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_tableaux.output))) (rule (target testfile-ac_empty019_legacy.output) (deps (:input testfile-ac_empty019.ae)) @@ -18317,10 +18046,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty019.expected testfile-ac_empty019_legacy.output))) + (deps testfile-ac_empty019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_legacy.output))) (rule (target testfile-ac_empty019_dolmen.output) (deps (:input testfile-ac_empty019.ae)) @@ -18337,10 +18067,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty019.expected testfile-ac_empty019_dolmen.output))) + (deps testfile-ac_empty019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_dolmen.output))) (rule (target testfile-ac_empty019_fpa.output) (deps (:input testfile-ac_empty019.ae)) @@ -18357,10 +18088,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty019.expected testfile-ac_empty019_fpa.output))) + (deps testfile-ac_empty019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty019.expected testfile-ac_empty019_fpa.output))) (rule (target testfile-ac_empty018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty018.ae)) @@ -18379,12 +18111,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty018.ae)) @@ -18405,12 +18136,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty018.ae)) @@ -18430,12 +18160,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty018.ae)) @@ -18454,12 +18183,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty018.ae)) @@ -18478,12 +18206,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty018.ae)) @@ -18502,12 +18229,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty018_cdcl.output) (deps (:input testfile-ac_empty018.ae)) @@ -18525,10 +18251,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty018.expected testfile-ac_empty018_cdcl.output))) + (deps testfile-ac_empty018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_cdcl.output))) (rule (target testfile-ac_empty018_tableaux_cdcl.output) (deps (:input testfile-ac_empty018.ae)) @@ -18546,12 +18273,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_tableaux_cdcl.output))) + (deps testfile-ac_empty018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_tableaux_cdcl.output))) (rule (target testfile-ac_empty018_tableaux.output) (deps (:input testfile-ac_empty018.ae)) @@ -18569,12 +18295,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty018.expected - testfile-ac_empty018_tableaux.output))) + (deps testfile-ac_empty018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_tableaux.output))) (rule (target testfile-ac_empty018_legacy.output) (deps (:input testfile-ac_empty018.ae)) @@ -18591,10 +18316,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty018.expected testfile-ac_empty018_legacy.output))) + (deps testfile-ac_empty018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_legacy.output))) (rule (target testfile-ac_empty018_dolmen.output) (deps (:input testfile-ac_empty018.ae)) @@ -18611,10 +18337,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty018.expected testfile-ac_empty018_dolmen.output))) + (deps testfile-ac_empty018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_dolmen.output))) (rule (target testfile-ac_empty018_fpa.output) (deps (:input testfile-ac_empty018.ae)) @@ -18631,10 +18358,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty018.expected testfile-ac_empty018_fpa.output))) + (deps testfile-ac_empty018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty018.expected testfile-ac_empty018_fpa.output))) (rule (target testfile-ac_empty017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty017.ae)) @@ -18653,12 +18381,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty017.ae)) @@ -18679,12 +18406,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty017.ae)) @@ -18704,12 +18430,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty017.ae)) @@ -18728,12 +18453,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty017.ae)) @@ -18752,12 +18476,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty017.ae)) @@ -18776,12 +18499,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty017_cdcl.output) (deps (:input testfile-ac_empty017.ae)) @@ -18799,10 +18521,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty017.expected testfile-ac_empty017_cdcl.output))) + (deps testfile-ac_empty017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_cdcl.output))) (rule (target testfile-ac_empty017_tableaux_cdcl.output) (deps (:input testfile-ac_empty017.ae)) @@ -18820,12 +18543,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_tableaux_cdcl.output))) + (deps testfile-ac_empty017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_tableaux_cdcl.output))) (rule (target testfile-ac_empty017_tableaux.output) (deps (:input testfile-ac_empty017.ae)) @@ -18843,12 +18565,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty017.expected - testfile-ac_empty017_tableaux.output))) + (deps testfile-ac_empty017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_tableaux.output))) (rule (target testfile-ac_empty017_legacy.output) (deps (:input testfile-ac_empty017.ae)) @@ -18865,10 +18586,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty017.expected testfile-ac_empty017_legacy.output))) + (deps testfile-ac_empty017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_legacy.output))) (rule (target testfile-ac_empty017_dolmen.output) (deps (:input testfile-ac_empty017.ae)) @@ -18885,10 +18607,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty017.expected testfile-ac_empty017_dolmen.output))) + (deps testfile-ac_empty017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_dolmen.output))) (rule (target testfile-ac_empty017_fpa.output) (deps (:input testfile-ac_empty017.ae)) @@ -18905,10 +18628,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty017.expected testfile-ac_empty017_fpa.output))) + (deps testfile-ac_empty017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty017.expected testfile-ac_empty017_fpa.output))) (rule (target testfile-ac_empty016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty016.ae)) @@ -18927,12 +18651,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty016.ae)) @@ -18953,12 +18676,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty016.ae)) @@ -18978,12 +18700,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty016.ae)) @@ -19002,12 +18723,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty016.ae)) @@ -19026,12 +18746,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty016.ae)) @@ -19050,12 +18769,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty016_cdcl.output) (deps (:input testfile-ac_empty016.ae)) @@ -19073,10 +18791,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty016.expected testfile-ac_empty016_cdcl.output))) + (deps testfile-ac_empty016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_cdcl.output))) (rule (target testfile-ac_empty016_tableaux_cdcl.output) (deps (:input testfile-ac_empty016.ae)) @@ -19094,12 +18813,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_tableaux_cdcl.output))) + (deps testfile-ac_empty016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_tableaux_cdcl.output))) (rule (target testfile-ac_empty016_tableaux.output) (deps (:input testfile-ac_empty016.ae)) @@ -19117,12 +18835,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty016.expected - testfile-ac_empty016_tableaux.output))) + (deps testfile-ac_empty016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_tableaux.output))) (rule (target testfile-ac_empty016_legacy.output) (deps (:input testfile-ac_empty016.ae)) @@ -19139,10 +18856,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty016.expected testfile-ac_empty016_legacy.output))) + (deps testfile-ac_empty016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_legacy.output))) (rule (target testfile-ac_empty016_dolmen.output) (deps (:input testfile-ac_empty016.ae)) @@ -19159,10 +18877,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty016.expected testfile-ac_empty016_dolmen.output))) + (deps testfile-ac_empty016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_dolmen.output))) (rule (target testfile-ac_empty016_fpa.output) (deps (:input testfile-ac_empty016.ae)) @@ -19179,10 +18898,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty016.expected testfile-ac_empty016_fpa.output))) + (deps testfile-ac_empty016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty016.expected testfile-ac_empty016_fpa.output))) (rule (target testfile-ac_empty015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty015.ae)) @@ -19201,12 +18921,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty015.ae)) @@ -19227,12 +18946,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty015.ae)) @@ -19252,12 +18970,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty015.ae)) @@ -19276,12 +18993,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty015.ae)) @@ -19300,12 +19016,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty015.ae)) @@ -19324,12 +19039,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty015_cdcl.output) (deps (:input testfile-ac_empty015.ae)) @@ -19347,10 +19061,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty015.expected testfile-ac_empty015_cdcl.output))) + (deps testfile-ac_empty015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_cdcl.output))) (rule (target testfile-ac_empty015_tableaux_cdcl.output) (deps (:input testfile-ac_empty015.ae)) @@ -19368,12 +19083,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_tableaux_cdcl.output))) + (deps testfile-ac_empty015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_tableaux_cdcl.output))) (rule (target testfile-ac_empty015_tableaux.output) (deps (:input testfile-ac_empty015.ae)) @@ -19391,12 +19105,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty015.expected - testfile-ac_empty015_tableaux.output))) + (deps testfile-ac_empty015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_tableaux.output))) (rule (target testfile-ac_empty015_legacy.output) (deps (:input testfile-ac_empty015.ae)) @@ -19413,10 +19126,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty015.expected testfile-ac_empty015_legacy.output))) + (deps testfile-ac_empty015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_legacy.output))) (rule (target testfile-ac_empty015_dolmen.output) (deps (:input testfile-ac_empty015.ae)) @@ -19433,10 +19147,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty015.expected testfile-ac_empty015_dolmen.output))) + (deps testfile-ac_empty015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_dolmen.output))) (rule (target testfile-ac_empty015_fpa.output) (deps (:input testfile-ac_empty015.ae)) @@ -19453,10 +19168,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty015.expected testfile-ac_empty015_fpa.output))) + (deps testfile-ac_empty015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty015.expected testfile-ac_empty015_fpa.output))) (rule (target testfile-ac_empty014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty014.ae)) @@ -19475,12 +19191,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty014.ae)) @@ -19501,12 +19216,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty014.ae)) @@ -19526,12 +19240,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty014.ae)) @@ -19550,12 +19263,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty014.ae)) @@ -19574,12 +19286,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty014.ae)) @@ -19598,12 +19309,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty014_cdcl.output) (deps (:input testfile-ac_empty014.ae)) @@ -19621,10 +19331,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty014.expected testfile-ac_empty014_cdcl.output))) + (deps testfile-ac_empty014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_cdcl.output))) (rule (target testfile-ac_empty014_tableaux_cdcl.output) (deps (:input testfile-ac_empty014.ae)) @@ -19642,12 +19353,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_tableaux_cdcl.output))) + (deps testfile-ac_empty014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_tableaux_cdcl.output))) (rule (target testfile-ac_empty014_tableaux.output) (deps (:input testfile-ac_empty014.ae)) @@ -19665,12 +19375,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty014.expected - testfile-ac_empty014_tableaux.output))) + (deps testfile-ac_empty014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_tableaux.output))) (rule (target testfile-ac_empty014_legacy.output) (deps (:input testfile-ac_empty014.ae)) @@ -19687,10 +19396,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty014.expected testfile-ac_empty014_legacy.output))) + (deps testfile-ac_empty014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_legacy.output))) (rule (target testfile-ac_empty014_dolmen.output) (deps (:input testfile-ac_empty014.ae)) @@ -19707,10 +19417,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty014.expected testfile-ac_empty014_dolmen.output))) + (deps testfile-ac_empty014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_dolmen.output))) (rule (target testfile-ac_empty014_fpa.output) (deps (:input testfile-ac_empty014.ae)) @@ -19727,10 +19438,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty014.expected testfile-ac_empty014_fpa.output))) + (deps testfile-ac_empty014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty014.expected testfile-ac_empty014_fpa.output))) (rule (target testfile-ac_empty013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty013.ae)) @@ -19749,12 +19461,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty013.ae)) @@ -19775,12 +19486,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty013.ae)) @@ -19800,12 +19510,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty013.ae)) @@ -19824,12 +19533,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty013.ae)) @@ -19848,12 +19556,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty013.ae)) @@ -19872,12 +19579,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty013_cdcl.output) (deps (:input testfile-ac_empty013.ae)) @@ -19895,10 +19601,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty013.expected testfile-ac_empty013_cdcl.output))) + (deps testfile-ac_empty013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_cdcl.output))) (rule (target testfile-ac_empty013_tableaux_cdcl.output) (deps (:input testfile-ac_empty013.ae)) @@ -19916,12 +19623,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_tableaux_cdcl.output))) + (deps testfile-ac_empty013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_tableaux_cdcl.output))) (rule (target testfile-ac_empty013_tableaux.output) (deps (:input testfile-ac_empty013.ae)) @@ -19939,12 +19645,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty013.expected - testfile-ac_empty013_tableaux.output))) + (deps testfile-ac_empty013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_tableaux.output))) (rule (target testfile-ac_empty013_legacy.output) (deps (:input testfile-ac_empty013.ae)) @@ -19961,10 +19666,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty013.expected testfile-ac_empty013_legacy.output))) + (deps testfile-ac_empty013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_legacy.output))) (rule (target testfile-ac_empty013_dolmen.output) (deps (:input testfile-ac_empty013.ae)) @@ -19981,10 +19687,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty013.expected testfile-ac_empty013_dolmen.output))) + (deps testfile-ac_empty013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_dolmen.output))) (rule (target testfile-ac_empty013_fpa.output) (deps (:input testfile-ac_empty013.ae)) @@ -20001,10 +19708,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty013.expected testfile-ac_empty013_fpa.output))) + (deps testfile-ac_empty013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty013.expected testfile-ac_empty013_fpa.output))) (rule (target testfile-ac_empty012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty012.ae)) @@ -20023,12 +19731,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty012.ae)) @@ -20049,12 +19756,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty012.ae)) @@ -20074,12 +19780,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty012.ae)) @@ -20098,12 +19803,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty012.ae)) @@ -20122,12 +19826,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty012.ae)) @@ -20146,12 +19849,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty012_cdcl.output) (deps (:input testfile-ac_empty012.ae)) @@ -20169,10 +19871,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty012.expected testfile-ac_empty012_cdcl.output))) + (deps testfile-ac_empty012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_cdcl.output))) (rule (target testfile-ac_empty012_tableaux_cdcl.output) (deps (:input testfile-ac_empty012.ae)) @@ -20190,12 +19893,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_tableaux_cdcl.output))) + (deps testfile-ac_empty012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_tableaux_cdcl.output))) (rule (target testfile-ac_empty012_tableaux.output) (deps (:input testfile-ac_empty012.ae)) @@ -20213,12 +19915,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty012.expected - testfile-ac_empty012_tableaux.output))) + (deps testfile-ac_empty012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_tableaux.output))) (rule (target testfile-ac_empty012_legacy.output) (deps (:input testfile-ac_empty012.ae)) @@ -20235,10 +19936,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty012.expected testfile-ac_empty012_legacy.output))) + (deps testfile-ac_empty012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_legacy.output))) (rule (target testfile-ac_empty012_dolmen.output) (deps (:input testfile-ac_empty012.ae)) @@ -20255,10 +19957,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty012.expected testfile-ac_empty012_dolmen.output))) + (deps testfile-ac_empty012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_dolmen.output))) (rule (target testfile-ac_empty012_fpa.output) (deps (:input testfile-ac_empty012.ae)) @@ -20275,10 +19978,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty012.expected testfile-ac_empty012_fpa.output))) + (deps testfile-ac_empty012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty012.expected testfile-ac_empty012_fpa.output))) (rule (target testfile-ac_empty011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty011.ae)) @@ -20297,12 +20001,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty011.ae)) @@ -20323,12 +20026,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty011.ae)) @@ -20348,12 +20050,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty011.ae)) @@ -20372,12 +20073,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty011.ae)) @@ -20396,12 +20096,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty011.ae)) @@ -20420,12 +20119,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty011_cdcl.output) (deps (:input testfile-ac_empty011.ae)) @@ -20443,10 +20141,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty011.expected testfile-ac_empty011_cdcl.output))) + (deps testfile-ac_empty011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_cdcl.output))) (rule (target testfile-ac_empty011_tableaux_cdcl.output) (deps (:input testfile-ac_empty011.ae)) @@ -20464,12 +20163,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_tableaux_cdcl.output))) + (deps testfile-ac_empty011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_tableaux_cdcl.output))) (rule (target testfile-ac_empty011_tableaux.output) (deps (:input testfile-ac_empty011.ae)) @@ -20487,12 +20185,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty011.expected - testfile-ac_empty011_tableaux.output))) + (deps testfile-ac_empty011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_tableaux.output))) (rule (target testfile-ac_empty011_legacy.output) (deps (:input testfile-ac_empty011.ae)) @@ -20509,10 +20206,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty011.expected testfile-ac_empty011_legacy.output))) + (deps testfile-ac_empty011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_legacy.output))) (rule (target testfile-ac_empty011_dolmen.output) (deps (:input testfile-ac_empty011.ae)) @@ -20529,10 +20227,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty011.expected testfile-ac_empty011_dolmen.output))) + (deps testfile-ac_empty011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_dolmen.output))) (rule (target testfile-ac_empty011_fpa.output) (deps (:input testfile-ac_empty011.ae)) @@ -20549,10 +20248,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty011.expected testfile-ac_empty011_fpa.output))) + (deps testfile-ac_empty011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty011.expected testfile-ac_empty011_fpa.output))) (rule (target testfile-ac_empty010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty010.ae)) @@ -20571,12 +20271,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty010.ae)) @@ -20597,12 +20296,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty010.ae)) @@ -20622,12 +20320,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty010.ae)) @@ -20646,12 +20343,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty010.ae)) @@ -20670,12 +20366,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty010.ae)) @@ -20694,12 +20389,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty010_cdcl.output) (deps (:input testfile-ac_empty010.ae)) @@ -20717,10 +20411,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty010.expected testfile-ac_empty010_cdcl.output))) + (deps testfile-ac_empty010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_cdcl.output))) (rule (target testfile-ac_empty010_tableaux_cdcl.output) (deps (:input testfile-ac_empty010.ae)) @@ -20738,12 +20433,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_tableaux_cdcl.output))) + (deps testfile-ac_empty010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_tableaux_cdcl.output))) (rule (target testfile-ac_empty010_tableaux.output) (deps (:input testfile-ac_empty010.ae)) @@ -20761,12 +20455,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty010.expected - testfile-ac_empty010_tableaux.output))) + (deps testfile-ac_empty010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_tableaux.output))) (rule (target testfile-ac_empty010_legacy.output) (deps (:input testfile-ac_empty010.ae)) @@ -20783,10 +20476,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty010.expected testfile-ac_empty010_legacy.output))) + (deps testfile-ac_empty010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_legacy.output))) (rule (target testfile-ac_empty010_dolmen.output) (deps (:input testfile-ac_empty010.ae)) @@ -20803,10 +20497,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty010.expected testfile-ac_empty010_dolmen.output))) + (deps testfile-ac_empty010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_dolmen.output))) (rule (target testfile-ac_empty010_fpa.output) (deps (:input testfile-ac_empty010.ae)) @@ -20823,10 +20518,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty010.expected testfile-ac_empty010_fpa.output))) + (deps testfile-ac_empty010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty010.expected testfile-ac_empty010_fpa.output))) (rule (target testfile-ac_empty009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty009.ae)) @@ -20845,12 +20541,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty009.ae)) @@ -20871,12 +20566,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty009.ae)) @@ -20896,12 +20590,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty009.ae)) @@ -20920,12 +20613,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty009.ae)) @@ -20944,12 +20636,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty009.ae)) @@ -20968,12 +20659,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty009_cdcl.output) (deps (:input testfile-ac_empty009.ae)) @@ -20991,10 +20681,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty009.expected testfile-ac_empty009_cdcl.output))) + (deps testfile-ac_empty009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_cdcl.output))) (rule (target testfile-ac_empty009_tableaux_cdcl.output) (deps (:input testfile-ac_empty009.ae)) @@ -21012,12 +20703,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_tableaux_cdcl.output))) + (deps testfile-ac_empty009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_tableaux_cdcl.output))) (rule (target testfile-ac_empty009_tableaux.output) (deps (:input testfile-ac_empty009.ae)) @@ -21035,12 +20725,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty009.expected - testfile-ac_empty009_tableaux.output))) + (deps testfile-ac_empty009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_tableaux.output))) (rule (target testfile-ac_empty009_legacy.output) (deps (:input testfile-ac_empty009.ae)) @@ -21057,10 +20746,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty009.expected testfile-ac_empty009_legacy.output))) + (deps testfile-ac_empty009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_legacy.output))) (rule (target testfile-ac_empty009_dolmen.output) (deps (:input testfile-ac_empty009.ae)) @@ -21077,10 +20767,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty009.expected testfile-ac_empty009_dolmen.output))) + (deps testfile-ac_empty009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_dolmen.output))) (rule (target testfile-ac_empty009_fpa.output) (deps (:input testfile-ac_empty009.ae)) @@ -21097,10 +20788,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty009.expected testfile-ac_empty009_fpa.output))) + (deps testfile-ac_empty009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty009.expected testfile-ac_empty009_fpa.output))) (rule (target testfile-ac_empty008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty008.ae)) @@ -21119,12 +20811,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty008.ae)) @@ -21145,12 +20836,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty008.ae)) @@ -21170,12 +20860,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty008.ae)) @@ -21194,12 +20883,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty008.ae)) @@ -21218,12 +20906,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty008.ae)) @@ -21242,12 +20929,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty008_cdcl.output) (deps (:input testfile-ac_empty008.ae)) @@ -21265,10 +20951,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty008.expected testfile-ac_empty008_cdcl.output))) + (deps testfile-ac_empty008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_cdcl.output))) (rule (target testfile-ac_empty008_tableaux_cdcl.output) (deps (:input testfile-ac_empty008.ae)) @@ -21286,12 +20973,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_tableaux_cdcl.output))) + (deps testfile-ac_empty008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_tableaux_cdcl.output))) (rule (target testfile-ac_empty008_tableaux.output) (deps (:input testfile-ac_empty008.ae)) @@ -21309,12 +20995,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty008.expected - testfile-ac_empty008_tableaux.output))) + (deps testfile-ac_empty008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_tableaux.output))) (rule (target testfile-ac_empty008_legacy.output) (deps (:input testfile-ac_empty008.ae)) @@ -21331,10 +21016,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty008.expected testfile-ac_empty008_legacy.output))) + (deps testfile-ac_empty008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_legacy.output))) (rule (target testfile-ac_empty008_dolmen.output) (deps (:input testfile-ac_empty008.ae)) @@ -21351,10 +21037,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty008.expected testfile-ac_empty008_dolmen.output))) + (deps testfile-ac_empty008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_dolmen.output))) (rule (target testfile-ac_empty008_fpa.output) (deps (:input testfile-ac_empty008.ae)) @@ -21371,10 +21058,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty008.expected testfile-ac_empty008_fpa.output))) + (deps testfile-ac_empty008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty008.expected testfile-ac_empty008_fpa.output))) (rule (target testfile-ac_empty007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty007.ae)) @@ -21393,12 +21081,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty007.ae)) @@ -21419,12 +21106,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty007.ae)) @@ -21444,12 +21130,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty007.ae)) @@ -21468,12 +21153,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty007.ae)) @@ -21492,12 +21176,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty007.ae)) @@ -21516,12 +21199,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty007_cdcl.output) (deps (:input testfile-ac_empty007.ae)) @@ -21539,10 +21221,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty007.expected testfile-ac_empty007_cdcl.output))) + (deps testfile-ac_empty007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_cdcl.output))) (rule (target testfile-ac_empty007_tableaux_cdcl.output) (deps (:input testfile-ac_empty007.ae)) @@ -21560,12 +21243,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_tableaux_cdcl.output))) + (deps testfile-ac_empty007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_tableaux_cdcl.output))) (rule (target testfile-ac_empty007_tableaux.output) (deps (:input testfile-ac_empty007.ae)) @@ -21583,12 +21265,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty007.expected - testfile-ac_empty007_tableaux.output))) + (deps testfile-ac_empty007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_tableaux.output))) (rule (target testfile-ac_empty007_legacy.output) (deps (:input testfile-ac_empty007.ae)) @@ -21605,10 +21286,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty007.expected testfile-ac_empty007_legacy.output))) + (deps testfile-ac_empty007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_legacy.output))) (rule (target testfile-ac_empty007_dolmen.output) (deps (:input testfile-ac_empty007.ae)) @@ -21625,10 +21307,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty007.expected testfile-ac_empty007_dolmen.output))) + (deps testfile-ac_empty007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_dolmen.output))) (rule (target testfile-ac_empty007_fpa.output) (deps (:input testfile-ac_empty007.ae)) @@ -21645,10 +21328,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty007.expected testfile-ac_empty007_fpa.output))) + (deps testfile-ac_empty007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty007.expected testfile-ac_empty007_fpa.output))) (rule (target testfile-ac_empty006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty006.ae)) @@ -21667,12 +21351,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty006.ae)) @@ -21693,12 +21376,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty006.ae)) @@ -21718,12 +21400,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty006.ae)) @@ -21742,12 +21423,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty006.ae)) @@ -21766,12 +21446,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty006.ae)) @@ -21790,12 +21469,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty006_cdcl.output) (deps (:input testfile-ac_empty006.ae)) @@ -21813,10 +21491,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty006.expected testfile-ac_empty006_cdcl.output))) + (deps testfile-ac_empty006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_cdcl.output))) (rule (target testfile-ac_empty006_tableaux_cdcl.output) (deps (:input testfile-ac_empty006.ae)) @@ -21834,12 +21513,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_tableaux_cdcl.output))) + (deps testfile-ac_empty006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_tableaux_cdcl.output))) (rule (target testfile-ac_empty006_tableaux.output) (deps (:input testfile-ac_empty006.ae)) @@ -21857,12 +21535,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty006.expected - testfile-ac_empty006_tableaux.output))) + (deps testfile-ac_empty006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_tableaux.output))) (rule (target testfile-ac_empty006_legacy.output) (deps (:input testfile-ac_empty006.ae)) @@ -21879,10 +21556,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty006.expected testfile-ac_empty006_legacy.output))) + (deps testfile-ac_empty006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_legacy.output))) (rule (target testfile-ac_empty006_dolmen.output) (deps (:input testfile-ac_empty006.ae)) @@ -21899,10 +21577,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty006.expected testfile-ac_empty006_dolmen.output))) + (deps testfile-ac_empty006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_dolmen.output))) (rule (target testfile-ac_empty006_fpa.output) (deps (:input testfile-ac_empty006.ae)) @@ -21919,10 +21598,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty006.expected testfile-ac_empty006_fpa.output))) + (deps testfile-ac_empty006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty006.expected testfile-ac_empty006_fpa.output))) (rule (target testfile-ac_empty005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty005.ae)) @@ -21941,12 +21621,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty005.ae)) @@ -21967,12 +21646,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty005.ae)) @@ -21992,12 +21670,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty005.ae)) @@ -22016,12 +21693,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty005.ae)) @@ -22040,12 +21716,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty005.ae)) @@ -22064,12 +21739,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty005_cdcl.output) (deps (:input testfile-ac_empty005.ae)) @@ -22087,10 +21761,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty005.expected testfile-ac_empty005_cdcl.output))) + (deps testfile-ac_empty005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_cdcl.output))) (rule (target testfile-ac_empty005_tableaux_cdcl.output) (deps (:input testfile-ac_empty005.ae)) @@ -22108,12 +21783,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_tableaux_cdcl.output))) + (deps testfile-ac_empty005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_tableaux_cdcl.output))) (rule (target testfile-ac_empty005_tableaux.output) (deps (:input testfile-ac_empty005.ae)) @@ -22131,12 +21805,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty005.expected - testfile-ac_empty005_tableaux.output))) + (deps testfile-ac_empty005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_tableaux.output))) (rule (target testfile-ac_empty005_legacy.output) (deps (:input testfile-ac_empty005.ae)) @@ -22153,10 +21826,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty005.expected testfile-ac_empty005_legacy.output))) + (deps testfile-ac_empty005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_legacy.output))) (rule (target testfile-ac_empty005_dolmen.output) (deps (:input testfile-ac_empty005.ae)) @@ -22173,10 +21847,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty005.expected testfile-ac_empty005_dolmen.output))) + (deps testfile-ac_empty005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_dolmen.output))) (rule (target testfile-ac_empty005_fpa.output) (deps (:input testfile-ac_empty005.ae)) @@ -22193,10 +21868,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty005.expected testfile-ac_empty005_fpa.output))) + (deps testfile-ac_empty005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty005.expected testfile-ac_empty005_fpa.output))) (rule (target testfile-ac_empty004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty004.ae)) @@ -22215,12 +21891,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty004.ae)) @@ -22241,12 +21916,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty004.ae)) @@ -22266,12 +21940,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty004.ae)) @@ -22290,12 +21963,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty004.ae)) @@ -22314,12 +21986,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty004.ae)) @@ -22338,12 +22009,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty004_cdcl.output) (deps (:input testfile-ac_empty004.ae)) @@ -22361,10 +22031,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty004.expected testfile-ac_empty004_cdcl.output))) + (deps testfile-ac_empty004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_cdcl.output))) (rule (target testfile-ac_empty004_tableaux_cdcl.output) (deps (:input testfile-ac_empty004.ae)) @@ -22382,12 +22053,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_tableaux_cdcl.output))) + (deps testfile-ac_empty004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_tableaux_cdcl.output))) (rule (target testfile-ac_empty004_tableaux.output) (deps (:input testfile-ac_empty004.ae)) @@ -22405,12 +22075,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty004.expected - testfile-ac_empty004_tableaux.output))) + (deps testfile-ac_empty004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_tableaux.output))) (rule (target testfile-ac_empty004_legacy.output) (deps (:input testfile-ac_empty004.ae)) @@ -22427,10 +22096,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty004.expected testfile-ac_empty004_legacy.output))) + (deps testfile-ac_empty004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_legacy.output))) (rule (target testfile-ac_empty004_dolmen.output) (deps (:input testfile-ac_empty004.ae)) @@ -22447,10 +22117,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty004.expected testfile-ac_empty004_dolmen.output))) + (deps testfile-ac_empty004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_dolmen.output))) (rule (target testfile-ac_empty004_fpa.output) (deps (:input testfile-ac_empty004.ae)) @@ -22467,10 +22138,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty004.expected testfile-ac_empty004_fpa.output))) + (deps testfile-ac_empty004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty004.expected testfile-ac_empty004_fpa.output))) (rule (target testfile-ac_empty003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty003.ae)) @@ -22489,12 +22161,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty003.ae)) @@ -22515,12 +22186,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty003.ae)) @@ -22540,12 +22210,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty003.ae)) @@ -22564,12 +22233,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty003.ae)) @@ -22588,12 +22256,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty003.ae)) @@ -22612,12 +22279,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty003_cdcl.output) (deps (:input testfile-ac_empty003.ae)) @@ -22635,10 +22301,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty003.expected testfile-ac_empty003_cdcl.output))) + (deps testfile-ac_empty003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_cdcl.output))) (rule (target testfile-ac_empty003_tableaux_cdcl.output) (deps (:input testfile-ac_empty003.ae)) @@ -22656,12 +22323,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_tableaux_cdcl.output))) + (deps testfile-ac_empty003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_tableaux_cdcl.output))) (rule (target testfile-ac_empty003_tableaux.output) (deps (:input testfile-ac_empty003.ae)) @@ -22679,12 +22345,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty003.expected - testfile-ac_empty003_tableaux.output))) + (deps testfile-ac_empty003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_tableaux.output))) (rule (target testfile-ac_empty003_legacy.output) (deps (:input testfile-ac_empty003.ae)) @@ -22701,10 +22366,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty003.expected testfile-ac_empty003_legacy.output))) + (deps testfile-ac_empty003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_legacy.output))) (rule (target testfile-ac_empty003_dolmen.output) (deps (:input testfile-ac_empty003.ae)) @@ -22721,10 +22387,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty003.expected testfile-ac_empty003_dolmen.output))) + (deps testfile-ac_empty003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_dolmen.output))) (rule (target testfile-ac_empty003_fpa.output) (deps (:input testfile-ac_empty003.ae)) @@ -22741,10 +22408,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty003.expected testfile-ac_empty003_fpa.output))) + (deps testfile-ac_empty003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty003.expected testfile-ac_empty003_fpa.output))) (rule (target testfile-ac_empty002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty002.ae)) @@ -22763,12 +22431,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty002.ae)) @@ -22789,12 +22456,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty002.ae)) @@ -22814,12 +22480,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty002.ae)) @@ -22838,12 +22503,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty002.ae)) @@ -22862,12 +22526,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty002.ae)) @@ -22886,12 +22549,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty002_cdcl.output) (deps (:input testfile-ac_empty002.ae)) @@ -22909,10 +22571,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty002.expected testfile-ac_empty002_cdcl.output))) + (deps testfile-ac_empty002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_cdcl.output))) (rule (target testfile-ac_empty002_tableaux_cdcl.output) (deps (:input testfile-ac_empty002.ae)) @@ -22930,12 +22593,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_tableaux_cdcl.output))) + (deps testfile-ac_empty002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_tableaux_cdcl.output))) (rule (target testfile-ac_empty002_tableaux.output) (deps (:input testfile-ac_empty002.ae)) @@ -22953,12 +22615,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty002.expected - testfile-ac_empty002_tableaux.output))) + (deps testfile-ac_empty002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_tableaux.output))) (rule (target testfile-ac_empty002_legacy.output) (deps (:input testfile-ac_empty002.ae)) @@ -22975,10 +22636,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty002.expected testfile-ac_empty002_legacy.output))) + (deps testfile-ac_empty002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_legacy.output))) (rule (target testfile-ac_empty002_dolmen.output) (deps (:input testfile-ac_empty002.ae)) @@ -22995,10 +22657,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty002.expected testfile-ac_empty002_dolmen.output))) + (deps testfile-ac_empty002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_dolmen.output))) (rule (target testfile-ac_empty002_fpa.output) (deps (:input testfile-ac_empty002.ae)) @@ -23015,10 +22678,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty002.expected testfile-ac_empty002_fpa.output))) + (deps testfile-ac_empty002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty002.expected testfile-ac_empty002_fpa.output))) (rule (target testfile-ac_empty001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty001.ae)) @@ -23037,12 +22701,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty001.ae)) @@ -23063,12 +22726,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_empty001.ae)) @@ -23088,12 +22750,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_empty001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_empty001.ae)) @@ -23112,12 +22773,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_empty001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_empty001.ae)) @@ -23136,12 +22796,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_empty001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_empty001.ae)) @@ -23160,12 +22819,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_empty001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_empty001_cdcl.output) (deps (:input testfile-ac_empty001.ae)) @@ -23183,10 +22841,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty001.expected testfile-ac_empty001_cdcl.output))) + (deps testfile-ac_empty001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_cdcl.output))) (rule (target testfile-ac_empty001_tableaux_cdcl.output) (deps (:input testfile-ac_empty001.ae)) @@ -23204,12 +22863,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_tableaux_cdcl.output))) + (deps testfile-ac_empty001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_tableaux_cdcl.output))) (rule (target testfile-ac_empty001_tableaux.output) (deps (:input testfile-ac_empty001.ae)) @@ -23227,12 +22885,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_empty001.expected - testfile-ac_empty001_tableaux.output))) + (deps testfile-ac_empty001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_tableaux.output))) (rule (target testfile-ac_empty001_legacy.output) (deps (:input testfile-ac_empty001.ae)) @@ -23249,10 +22906,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty001.expected testfile-ac_empty001_legacy.output))) + (deps testfile-ac_empty001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_legacy.output))) (rule (target testfile-ac_empty001_dolmen.output) (deps (:input testfile-ac_empty001.ae)) @@ -23269,10 +22927,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty001.expected testfile-ac_empty001_dolmen.output))) + (deps testfile-ac_empty001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_dolmen.output))) (rule (target testfile-ac_empty001_fpa.output) (deps (:input testfile-ac_empty001.ae)) @@ -23289,10 +22948,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_empty001.expected testfile-ac_empty001_fpa.output))) + (deps testfile-ac_empty001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_empty001.expected testfile-ac_empty001_fpa.output))) (rule (target testfile-ac_arith059_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith059.ae)) @@ -23311,12 +22971,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith059_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith059.ae)) @@ -23337,12 +22996,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith059.ae)) @@ -23362,12 +23020,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith059_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith059.ae)) @@ -23386,12 +23043,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith059_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith059.ae)) @@ -23410,12 +23066,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith059_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith059.ae)) @@ -23434,12 +23089,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith059_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith059_cdcl.output) (deps (:input testfile-ac_arith059.ae)) @@ -23457,10 +23111,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith059.expected testfile-ac_arith059_cdcl.output))) + (deps testfile-ac_arith059_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_cdcl.output))) (rule (target testfile-ac_arith059_tableaux_cdcl.output) (deps (:input testfile-ac_arith059.ae)) @@ -23478,12 +23133,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_tableaux_cdcl.output))) + (deps testfile-ac_arith059_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_tableaux_cdcl.output))) (rule (target testfile-ac_arith059_tableaux.output) (deps (:input testfile-ac_arith059.ae)) @@ -23501,12 +23155,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith059.expected - testfile-ac_arith059_tableaux.output))) + (deps testfile-ac_arith059_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_tableaux.output))) (rule (target testfile-ac_arith059_legacy.output) (deps (:input testfile-ac_arith059.ae)) @@ -23523,10 +23176,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith059.expected testfile-ac_arith059_legacy.output))) + (deps testfile-ac_arith059_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_legacy.output))) (rule (target testfile-ac_arith059_dolmen.output) (deps (:input testfile-ac_arith059.ae)) @@ -23543,10 +23197,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith059.expected testfile-ac_arith059_dolmen.output))) + (deps testfile-ac_arith059_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_dolmen.output))) (rule (target testfile-ac_arith059_fpa.output) (deps (:input testfile-ac_arith059.ae)) @@ -23563,10 +23218,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith059.expected testfile-ac_arith059_fpa.output))) + (deps testfile-ac_arith059_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith059.expected testfile-ac_arith059_fpa.output))) (rule (target testfile-ac_arith057_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith057.ae)) @@ -23585,12 +23241,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith057_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith057.ae)) @@ -23611,12 +23266,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith057.ae)) @@ -23636,12 +23290,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith057_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith057.ae)) @@ -23660,12 +23313,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith057_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith057.ae)) @@ -23684,12 +23336,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith057_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith057.ae)) @@ -23708,12 +23359,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith057_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith057_cdcl.output) (deps (:input testfile-ac_arith057.ae)) @@ -23731,10 +23381,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith057.expected testfile-ac_arith057_cdcl.output))) + (deps testfile-ac_arith057_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_cdcl.output))) (rule (target testfile-ac_arith057_tableaux_cdcl.output) (deps (:input testfile-ac_arith057.ae)) @@ -23752,12 +23403,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_tableaux_cdcl.output))) + (deps testfile-ac_arith057_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_tableaux_cdcl.output))) (rule (target testfile-ac_arith057_tableaux.output) (deps (:input testfile-ac_arith057.ae)) @@ -23775,12 +23425,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith057.expected - testfile-ac_arith057_tableaux.output))) + (deps testfile-ac_arith057_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_tableaux.output))) (rule (target testfile-ac_arith057_legacy.output) (deps (:input testfile-ac_arith057.ae)) @@ -23797,10 +23446,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith057.expected testfile-ac_arith057_legacy.output))) + (deps testfile-ac_arith057_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_legacy.output))) (rule (target testfile-ac_arith057_dolmen.output) (deps (:input testfile-ac_arith057.ae)) @@ -23817,10 +23467,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith057.expected testfile-ac_arith057_dolmen.output))) + (deps testfile-ac_arith057_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_dolmen.output))) (rule (target testfile-ac_arith057_fpa.output) (deps (:input testfile-ac_arith057.ae)) @@ -23837,10 +23488,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith057.expected testfile-ac_arith057_fpa.output))) + (deps testfile-ac_arith057_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith057.expected testfile-ac_arith057_fpa.output))) (rule (target testfile-ac_arith056_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith056.ae)) @@ -23859,12 +23511,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith056_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith056.ae)) @@ -23885,12 +23536,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith056.ae)) @@ -23910,12 +23560,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith056_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith056.ae)) @@ -23934,12 +23583,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith056_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith056.ae)) @@ -23958,12 +23606,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith056_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith056.ae)) @@ -23982,12 +23629,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith056_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith056_cdcl.output) (deps (:input testfile-ac_arith056.ae)) @@ -24005,10 +23651,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith056.expected testfile-ac_arith056_cdcl.output))) + (deps testfile-ac_arith056_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_cdcl.output))) (rule (target testfile-ac_arith056_tableaux_cdcl.output) (deps (:input testfile-ac_arith056.ae)) @@ -24026,12 +23673,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_tableaux_cdcl.output))) + (deps testfile-ac_arith056_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_tableaux_cdcl.output))) (rule (target testfile-ac_arith056_tableaux.output) (deps (:input testfile-ac_arith056.ae)) @@ -24049,12 +23695,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith056.expected - testfile-ac_arith056_tableaux.output))) + (deps testfile-ac_arith056_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_tableaux.output))) (rule (target testfile-ac_arith056_legacy.output) (deps (:input testfile-ac_arith056.ae)) @@ -24071,10 +23716,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith056.expected testfile-ac_arith056_legacy.output))) + (deps testfile-ac_arith056_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_legacy.output))) (rule (target testfile-ac_arith056_dolmen.output) (deps (:input testfile-ac_arith056.ae)) @@ -24091,10 +23737,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith056.expected testfile-ac_arith056_dolmen.output))) + (deps testfile-ac_arith056_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_dolmen.output))) (rule (target testfile-ac_arith056_fpa.output) (deps (:input testfile-ac_arith056.ae)) @@ -24111,10 +23758,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith056.expected testfile-ac_arith056_fpa.output))) + (deps testfile-ac_arith056_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith056.expected testfile-ac_arith056_fpa.output))) (rule (target testfile-ac_arith055_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith055.ae)) @@ -24133,12 +23781,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith055_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith055.ae)) @@ -24159,12 +23806,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith055.ae)) @@ -24184,12 +23830,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith055_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith055.ae)) @@ -24208,12 +23853,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith055_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith055.ae)) @@ -24232,12 +23876,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith055_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith055.ae)) @@ -24256,12 +23899,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith055_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith055_cdcl.output) (deps (:input testfile-ac_arith055.ae)) @@ -24279,10 +23921,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith055.expected testfile-ac_arith055_cdcl.output))) + (deps testfile-ac_arith055_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_cdcl.output))) (rule (target testfile-ac_arith055_tableaux_cdcl.output) (deps (:input testfile-ac_arith055.ae)) @@ -24300,12 +23943,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_tableaux_cdcl.output))) + (deps testfile-ac_arith055_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_tableaux_cdcl.output))) (rule (target testfile-ac_arith055_tableaux.output) (deps (:input testfile-ac_arith055.ae)) @@ -24323,12 +23965,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith055.expected - testfile-ac_arith055_tableaux.output))) + (deps testfile-ac_arith055_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_tableaux.output))) (rule (target testfile-ac_arith055_legacy.output) (deps (:input testfile-ac_arith055.ae)) @@ -24345,10 +23986,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith055.expected testfile-ac_arith055_legacy.output))) + (deps testfile-ac_arith055_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_legacy.output))) (rule (target testfile-ac_arith055_dolmen.output) (deps (:input testfile-ac_arith055.ae)) @@ -24365,10 +24007,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith055.expected testfile-ac_arith055_dolmen.output))) + (deps testfile-ac_arith055_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_dolmen.output))) (rule (target testfile-ac_arith055_fpa.output) (deps (:input testfile-ac_arith055.ae)) @@ -24385,10 +24028,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith055.expected testfile-ac_arith055_fpa.output))) + (deps testfile-ac_arith055_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith055.expected testfile-ac_arith055_fpa.output))) (rule (target testfile-ac_arith054_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith054.ae)) @@ -24407,12 +24051,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith054_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith054.ae)) @@ -24433,12 +24076,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith054.ae)) @@ -24458,12 +24100,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith054_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith054.ae)) @@ -24482,12 +24123,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith054_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith054.ae)) @@ -24506,12 +24146,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith054_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith054.ae)) @@ -24530,12 +24169,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith054_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith054_cdcl.output) (deps (:input testfile-ac_arith054.ae)) @@ -24553,10 +24191,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith054.expected testfile-ac_arith054_cdcl.output))) + (deps testfile-ac_arith054_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_cdcl.output))) (rule (target testfile-ac_arith054_tableaux_cdcl.output) (deps (:input testfile-ac_arith054.ae)) @@ -24574,12 +24213,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_tableaux_cdcl.output))) + (deps testfile-ac_arith054_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_tableaux_cdcl.output))) (rule (target testfile-ac_arith054_tableaux.output) (deps (:input testfile-ac_arith054.ae)) @@ -24597,12 +24235,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith054.expected - testfile-ac_arith054_tableaux.output))) + (deps testfile-ac_arith054_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_tableaux.output))) (rule (target testfile-ac_arith054_legacy.output) (deps (:input testfile-ac_arith054.ae)) @@ -24619,10 +24256,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith054.expected testfile-ac_arith054_legacy.output))) + (deps testfile-ac_arith054_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_legacy.output))) (rule (target testfile-ac_arith054_dolmen.output) (deps (:input testfile-ac_arith054.ae)) @@ -24639,10 +24277,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith054.expected testfile-ac_arith054_dolmen.output))) + (deps testfile-ac_arith054_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_dolmen.output))) (rule (target testfile-ac_arith054_fpa.output) (deps (:input testfile-ac_arith054.ae)) @@ -24659,10 +24298,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith054.expected testfile-ac_arith054_fpa.output))) + (deps testfile-ac_arith054_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith054.expected testfile-ac_arith054_fpa.output))) (rule (target testfile-ac_arith053_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith053.ae)) @@ -24681,12 +24321,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith053_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith053.ae)) @@ -24707,12 +24346,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith053.ae)) @@ -24732,12 +24370,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith053_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith053.ae)) @@ -24756,12 +24393,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith053_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith053.ae)) @@ -24780,12 +24416,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith053_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith053.ae)) @@ -24804,12 +24439,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith053_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith053_cdcl.output) (deps (:input testfile-ac_arith053.ae)) @@ -24827,10 +24461,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith053.expected testfile-ac_arith053_cdcl.output))) + (deps testfile-ac_arith053_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_cdcl.output))) (rule (target testfile-ac_arith053_tableaux_cdcl.output) (deps (:input testfile-ac_arith053.ae)) @@ -24848,12 +24483,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_tableaux_cdcl.output))) + (deps testfile-ac_arith053_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_tableaux_cdcl.output))) (rule (target testfile-ac_arith053_tableaux.output) (deps (:input testfile-ac_arith053.ae)) @@ -24871,12 +24505,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith053.expected - testfile-ac_arith053_tableaux.output))) + (deps testfile-ac_arith053_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_tableaux.output))) (rule (target testfile-ac_arith053_legacy.output) (deps (:input testfile-ac_arith053.ae)) @@ -24893,10 +24526,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith053.expected testfile-ac_arith053_legacy.output))) + (deps testfile-ac_arith053_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_legacy.output))) (rule (target testfile-ac_arith053_dolmen.output) (deps (:input testfile-ac_arith053.ae)) @@ -24913,10 +24547,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith053.expected testfile-ac_arith053_dolmen.output))) + (deps testfile-ac_arith053_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_dolmen.output))) (rule (target testfile-ac_arith053_fpa.output) (deps (:input testfile-ac_arith053.ae)) @@ -24933,10 +24568,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith053.expected testfile-ac_arith053_fpa.output))) + (deps testfile-ac_arith053_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith053.expected testfile-ac_arith053_fpa.output))) (rule (target testfile-ac_arith052_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith052.ae)) @@ -24955,12 +24591,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith052_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith052.ae)) @@ -24981,12 +24616,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith052.ae)) @@ -25006,12 +24640,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith052_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith052.ae)) @@ -25030,12 +24663,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith052_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith052.ae)) @@ -25054,12 +24686,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith052_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith052.ae)) @@ -25078,12 +24709,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith052_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith052_cdcl.output) (deps (:input testfile-ac_arith052.ae)) @@ -25101,10 +24731,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith052.expected testfile-ac_arith052_cdcl.output))) + (deps testfile-ac_arith052_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_cdcl.output))) (rule (target testfile-ac_arith052_tableaux_cdcl.output) (deps (:input testfile-ac_arith052.ae)) @@ -25122,12 +24753,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_tableaux_cdcl.output))) + (deps testfile-ac_arith052_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_tableaux_cdcl.output))) (rule (target testfile-ac_arith052_tableaux.output) (deps (:input testfile-ac_arith052.ae)) @@ -25145,12 +24775,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith052.expected - testfile-ac_arith052_tableaux.output))) + (deps testfile-ac_arith052_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_tableaux.output))) (rule (target testfile-ac_arith052_legacy.output) (deps (:input testfile-ac_arith052.ae)) @@ -25167,10 +24796,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith052.expected testfile-ac_arith052_legacy.output))) + (deps testfile-ac_arith052_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_legacy.output))) (rule (target testfile-ac_arith052_dolmen.output) (deps (:input testfile-ac_arith052.ae)) @@ -25187,10 +24817,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith052.expected testfile-ac_arith052_dolmen.output))) + (deps testfile-ac_arith052_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_dolmen.output))) (rule (target testfile-ac_arith052_fpa.output) (deps (:input testfile-ac_arith052.ae)) @@ -25207,10 +24838,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith052.expected testfile-ac_arith052_fpa.output))) + (deps testfile-ac_arith052_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith052.expected testfile-ac_arith052_fpa.output))) (rule (target testfile-ac_arith051_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith051.ae)) @@ -25229,12 +24861,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith051_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith051.ae)) @@ -25255,12 +24886,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith051.ae)) @@ -25280,12 +24910,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith051_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith051.ae)) @@ -25304,12 +24933,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith051_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith051.ae)) @@ -25328,12 +24956,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith051_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith051.ae)) @@ -25352,12 +24979,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith051_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith051_cdcl.output) (deps (:input testfile-ac_arith051.ae)) @@ -25375,10 +25001,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith051.expected testfile-ac_arith051_cdcl.output))) + (deps testfile-ac_arith051_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_cdcl.output))) (rule (target testfile-ac_arith051_tableaux_cdcl.output) (deps (:input testfile-ac_arith051.ae)) @@ -25396,12 +25023,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_tableaux_cdcl.output))) + (deps testfile-ac_arith051_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_tableaux_cdcl.output))) (rule (target testfile-ac_arith051_tableaux.output) (deps (:input testfile-ac_arith051.ae)) @@ -25419,12 +25045,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith051.expected - testfile-ac_arith051_tableaux.output))) + (deps testfile-ac_arith051_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_tableaux.output))) (rule (target testfile-ac_arith051_legacy.output) (deps (:input testfile-ac_arith051.ae)) @@ -25441,10 +25066,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith051.expected testfile-ac_arith051_legacy.output))) + (deps testfile-ac_arith051_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_legacy.output))) (rule (target testfile-ac_arith051_dolmen.output) (deps (:input testfile-ac_arith051.ae)) @@ -25461,10 +25087,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith051.expected testfile-ac_arith051_dolmen.output))) + (deps testfile-ac_arith051_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_dolmen.output))) (rule (target testfile-ac_arith051_fpa.output) (deps (:input testfile-ac_arith051.ae)) @@ -25481,10 +25108,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith051.expected testfile-ac_arith051_fpa.output))) + (deps testfile-ac_arith051_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith051.expected testfile-ac_arith051_fpa.output))) (rule (target testfile-ac_arith050_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith050.ae)) @@ -25503,12 +25131,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith050_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith050.ae)) @@ -25529,12 +25156,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith050.ae)) @@ -25554,12 +25180,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith050_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith050.ae)) @@ -25578,12 +25203,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith050_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith050.ae)) @@ -25602,12 +25226,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith050_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith050.ae)) @@ -25626,12 +25249,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith050_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith050_cdcl.output) (deps (:input testfile-ac_arith050.ae)) @@ -25649,10 +25271,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith050.expected testfile-ac_arith050_cdcl.output))) + (deps testfile-ac_arith050_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_cdcl.output))) (rule (target testfile-ac_arith050_tableaux_cdcl.output) (deps (:input testfile-ac_arith050.ae)) @@ -25670,12 +25293,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_tableaux_cdcl.output))) + (deps testfile-ac_arith050_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_tableaux_cdcl.output))) (rule (target testfile-ac_arith050_tableaux.output) (deps (:input testfile-ac_arith050.ae)) @@ -25693,12 +25315,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith050.expected - testfile-ac_arith050_tableaux.output))) + (deps testfile-ac_arith050_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_tableaux.output))) (rule (target testfile-ac_arith050_legacy.output) (deps (:input testfile-ac_arith050.ae)) @@ -25715,10 +25336,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith050.expected testfile-ac_arith050_legacy.output))) + (deps testfile-ac_arith050_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_legacy.output))) (rule (target testfile-ac_arith050_dolmen.output) (deps (:input testfile-ac_arith050.ae)) @@ -25735,10 +25357,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith050.expected testfile-ac_arith050_dolmen.output))) + (deps testfile-ac_arith050_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_dolmen.output))) (rule (target testfile-ac_arith050_fpa.output) (deps (:input testfile-ac_arith050.ae)) @@ -25755,10 +25378,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith050.expected testfile-ac_arith050_fpa.output))) + (deps testfile-ac_arith050_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith050.expected testfile-ac_arith050_fpa.output))) (rule (target testfile-ac_arith049_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith049.ae)) @@ -25777,12 +25401,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith049_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith049.ae)) @@ -25803,12 +25426,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith049.ae)) @@ -25828,12 +25450,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith049_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith049.ae)) @@ -25852,12 +25473,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith049_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith049.ae)) @@ -25876,12 +25496,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith049_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith049.ae)) @@ -25900,12 +25519,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith049_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith049_cdcl.output) (deps (:input testfile-ac_arith049.ae)) @@ -25923,10 +25541,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith049.expected testfile-ac_arith049_cdcl.output))) + (deps testfile-ac_arith049_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_cdcl.output))) (rule (target testfile-ac_arith049_tableaux_cdcl.output) (deps (:input testfile-ac_arith049.ae)) @@ -25944,12 +25563,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_tableaux_cdcl.output))) + (deps testfile-ac_arith049_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_tableaux_cdcl.output))) (rule (target testfile-ac_arith049_tableaux.output) (deps (:input testfile-ac_arith049.ae)) @@ -25967,12 +25585,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith049.expected - testfile-ac_arith049_tableaux.output))) + (deps testfile-ac_arith049_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_tableaux.output))) (rule (target testfile-ac_arith049_legacy.output) (deps (:input testfile-ac_arith049.ae)) @@ -25989,10 +25606,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith049.expected testfile-ac_arith049_legacy.output))) + (deps testfile-ac_arith049_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_legacy.output))) (rule (target testfile-ac_arith049_dolmen.output) (deps (:input testfile-ac_arith049.ae)) @@ -26009,10 +25627,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith049.expected testfile-ac_arith049_dolmen.output))) + (deps testfile-ac_arith049_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_dolmen.output))) (rule (target testfile-ac_arith049_fpa.output) (deps (:input testfile-ac_arith049.ae)) @@ -26029,10 +25648,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith049.expected testfile-ac_arith049_fpa.output))) + (deps testfile-ac_arith049_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith049.expected testfile-ac_arith049_fpa.output))) (rule (target testfile-ac_arith048_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith048.ae)) @@ -26051,12 +25671,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith048_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith048.ae)) @@ -26077,12 +25696,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith048.ae)) @@ -26102,12 +25720,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith048_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith048.ae)) @@ -26126,12 +25743,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith048_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith048.ae)) @@ -26150,12 +25766,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith048_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith048.ae)) @@ -26174,12 +25789,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith048_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith048_cdcl.output) (deps (:input testfile-ac_arith048.ae)) @@ -26197,10 +25811,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith048.expected testfile-ac_arith048_cdcl.output))) + (deps testfile-ac_arith048_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_cdcl.output))) (rule (target testfile-ac_arith048_tableaux_cdcl.output) (deps (:input testfile-ac_arith048.ae)) @@ -26218,12 +25833,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_tableaux_cdcl.output))) + (deps testfile-ac_arith048_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_tableaux_cdcl.output))) (rule (target testfile-ac_arith048_tableaux.output) (deps (:input testfile-ac_arith048.ae)) @@ -26241,12 +25855,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith048.expected - testfile-ac_arith048_tableaux.output))) + (deps testfile-ac_arith048_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_tableaux.output))) (rule (target testfile-ac_arith048_legacy.output) (deps (:input testfile-ac_arith048.ae)) @@ -26263,10 +25876,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith048.expected testfile-ac_arith048_legacy.output))) + (deps testfile-ac_arith048_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_legacy.output))) (rule (target testfile-ac_arith048_dolmen.output) (deps (:input testfile-ac_arith048.ae)) @@ -26283,10 +25897,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith048.expected testfile-ac_arith048_dolmen.output))) + (deps testfile-ac_arith048_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_dolmen.output))) (rule (target testfile-ac_arith048_fpa.output) (deps (:input testfile-ac_arith048.ae)) @@ -26303,10 +25918,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith048.expected testfile-ac_arith048_fpa.output))) + (deps testfile-ac_arith048_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith048.expected testfile-ac_arith048_fpa.output))) (rule (target testfile-ac_arith047_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith047.ae)) @@ -26325,12 +25941,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith047_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith047.ae)) @@ -26351,12 +25966,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith047.ae)) @@ -26376,12 +25990,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith047_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith047.ae)) @@ -26400,12 +26013,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith047_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith047.ae)) @@ -26424,12 +26036,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith047_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith047.ae)) @@ -26448,12 +26059,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith047_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith047_cdcl.output) (deps (:input testfile-ac_arith047.ae)) @@ -26471,10 +26081,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith047.expected testfile-ac_arith047_cdcl.output))) + (deps testfile-ac_arith047_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_cdcl.output))) (rule (target testfile-ac_arith047_tableaux_cdcl.output) (deps (:input testfile-ac_arith047.ae)) @@ -26492,12 +26103,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_tableaux_cdcl.output))) + (deps testfile-ac_arith047_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_tableaux_cdcl.output))) (rule (target testfile-ac_arith047_tableaux.output) (deps (:input testfile-ac_arith047.ae)) @@ -26515,12 +26125,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith047.expected - testfile-ac_arith047_tableaux.output))) + (deps testfile-ac_arith047_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_tableaux.output))) (rule (target testfile-ac_arith047_legacy.output) (deps (:input testfile-ac_arith047.ae)) @@ -26537,10 +26146,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith047.expected testfile-ac_arith047_legacy.output))) + (deps testfile-ac_arith047_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_legacy.output))) (rule (target testfile-ac_arith047_dolmen.output) (deps (:input testfile-ac_arith047.ae)) @@ -26557,10 +26167,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith047.expected testfile-ac_arith047_dolmen.output))) + (deps testfile-ac_arith047_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_dolmen.output))) (rule (target testfile-ac_arith047_fpa.output) (deps (:input testfile-ac_arith047.ae)) @@ -26577,10 +26188,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith047.expected testfile-ac_arith047_fpa.output))) + (deps testfile-ac_arith047_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith047.expected testfile-ac_arith047_fpa.output))) (rule (target testfile-ac_arith046_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith046.ae)) @@ -26599,12 +26211,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith046_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith046.ae)) @@ -26625,12 +26236,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith046.ae)) @@ -26650,12 +26260,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith046_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith046.ae)) @@ -26674,12 +26283,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith046_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith046.ae)) @@ -26698,12 +26306,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith046_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith046.ae)) @@ -26722,12 +26329,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith046_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith046_cdcl.output) (deps (:input testfile-ac_arith046.ae)) @@ -26745,10 +26351,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith046.expected testfile-ac_arith046_cdcl.output))) + (deps testfile-ac_arith046_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_cdcl.output))) (rule (target testfile-ac_arith046_tableaux_cdcl.output) (deps (:input testfile-ac_arith046.ae)) @@ -26766,12 +26373,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_tableaux_cdcl.output))) + (deps testfile-ac_arith046_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_tableaux_cdcl.output))) (rule (target testfile-ac_arith046_tableaux.output) (deps (:input testfile-ac_arith046.ae)) @@ -26789,12 +26395,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith046.expected - testfile-ac_arith046_tableaux.output))) + (deps testfile-ac_arith046_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_tableaux.output))) (rule (target testfile-ac_arith046_legacy.output) (deps (:input testfile-ac_arith046.ae)) @@ -26811,10 +26416,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith046.expected testfile-ac_arith046_legacy.output))) + (deps testfile-ac_arith046_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_legacy.output))) (rule (target testfile-ac_arith046_dolmen.output) (deps (:input testfile-ac_arith046.ae)) @@ -26831,10 +26437,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith046.expected testfile-ac_arith046_dolmen.output))) + (deps testfile-ac_arith046_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_dolmen.output))) (rule (target testfile-ac_arith046_fpa.output) (deps (:input testfile-ac_arith046.ae)) @@ -26851,10 +26458,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith046.expected testfile-ac_arith046_fpa.output))) + (deps testfile-ac_arith046_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith046.expected testfile-ac_arith046_fpa.output))) (rule (target testfile-ac_arith045_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith045.ae)) @@ -26873,12 +26481,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith045_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith045.ae)) @@ -26899,12 +26506,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith045.ae)) @@ -26924,12 +26530,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith045_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith045.ae)) @@ -26948,12 +26553,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith045_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith045.ae)) @@ -26972,12 +26576,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith045_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith045.ae)) @@ -26996,12 +26599,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith045_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith045_cdcl.output) (deps (:input testfile-ac_arith045.ae)) @@ -27019,10 +26621,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith045.expected testfile-ac_arith045_cdcl.output))) + (deps testfile-ac_arith045_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_cdcl.output))) (rule (target testfile-ac_arith045_tableaux_cdcl.output) (deps (:input testfile-ac_arith045.ae)) @@ -27040,12 +26643,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_tableaux_cdcl.output))) + (deps testfile-ac_arith045_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_tableaux_cdcl.output))) (rule (target testfile-ac_arith045_tableaux.output) (deps (:input testfile-ac_arith045.ae)) @@ -27063,12 +26665,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith045.expected - testfile-ac_arith045_tableaux.output))) + (deps testfile-ac_arith045_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_tableaux.output))) (rule (target testfile-ac_arith045_legacy.output) (deps (:input testfile-ac_arith045.ae)) @@ -27085,10 +26686,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith045.expected testfile-ac_arith045_legacy.output))) + (deps testfile-ac_arith045_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_legacy.output))) (rule (target testfile-ac_arith045_dolmen.output) (deps (:input testfile-ac_arith045.ae)) @@ -27105,10 +26707,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith045.expected testfile-ac_arith045_dolmen.output))) + (deps testfile-ac_arith045_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_dolmen.output))) (rule (target testfile-ac_arith045_fpa.output) (deps (:input testfile-ac_arith045.ae)) @@ -27125,10 +26728,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith045.expected testfile-ac_arith045_fpa.output))) + (deps testfile-ac_arith045_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith045.expected testfile-ac_arith045_fpa.output))) (rule (target testfile-ac_arith044_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith044.ae)) @@ -27147,12 +26751,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith044_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith044.ae)) @@ -27173,12 +26776,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith044.ae)) @@ -27198,12 +26800,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith044_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith044.ae)) @@ -27222,12 +26823,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith044_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith044.ae)) @@ -27246,12 +26846,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith044_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith044.ae)) @@ -27270,12 +26869,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith044_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith044_cdcl.output) (deps (:input testfile-ac_arith044.ae)) @@ -27293,10 +26891,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith044.expected testfile-ac_arith044_cdcl.output))) + (deps testfile-ac_arith044_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_cdcl.output))) (rule (target testfile-ac_arith044_tableaux_cdcl.output) (deps (:input testfile-ac_arith044.ae)) @@ -27314,12 +26913,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_tableaux_cdcl.output))) + (deps testfile-ac_arith044_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_tableaux_cdcl.output))) (rule (target testfile-ac_arith044_tableaux.output) (deps (:input testfile-ac_arith044.ae)) @@ -27337,12 +26935,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith044.expected - testfile-ac_arith044_tableaux.output))) + (deps testfile-ac_arith044_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_tableaux.output))) (rule (target testfile-ac_arith044_legacy.output) (deps (:input testfile-ac_arith044.ae)) @@ -27359,10 +26956,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith044.expected testfile-ac_arith044_legacy.output))) + (deps testfile-ac_arith044_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_legacy.output))) (rule (target testfile-ac_arith044_dolmen.output) (deps (:input testfile-ac_arith044.ae)) @@ -27379,10 +26977,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith044.expected testfile-ac_arith044_dolmen.output))) + (deps testfile-ac_arith044_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_dolmen.output))) (rule (target testfile-ac_arith044_fpa.output) (deps (:input testfile-ac_arith044.ae)) @@ -27399,10 +26998,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith044.expected testfile-ac_arith044_fpa.output))) + (deps testfile-ac_arith044_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith044.expected testfile-ac_arith044_fpa.output))) (rule (target testfile-ac_arith043_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith043.ae)) @@ -27421,12 +27021,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith043_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith043.ae)) @@ -27447,12 +27046,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith043.ae)) @@ -27472,12 +27070,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith043_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith043.ae)) @@ -27496,12 +27093,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith043_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith043.ae)) @@ -27520,12 +27116,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith043_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith043.ae)) @@ -27544,12 +27139,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith043_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith043_cdcl.output) (deps (:input testfile-ac_arith043.ae)) @@ -27567,10 +27161,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith043.expected testfile-ac_arith043_cdcl.output))) + (deps testfile-ac_arith043_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_cdcl.output))) (rule (target testfile-ac_arith043_tableaux_cdcl.output) (deps (:input testfile-ac_arith043.ae)) @@ -27588,12 +27183,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_tableaux_cdcl.output))) + (deps testfile-ac_arith043_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_tableaux_cdcl.output))) (rule (target testfile-ac_arith043_tableaux.output) (deps (:input testfile-ac_arith043.ae)) @@ -27611,12 +27205,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith043.expected - testfile-ac_arith043_tableaux.output))) + (deps testfile-ac_arith043_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_tableaux.output))) (rule (target testfile-ac_arith043_legacy.output) (deps (:input testfile-ac_arith043.ae)) @@ -27633,10 +27226,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith043.expected testfile-ac_arith043_legacy.output))) + (deps testfile-ac_arith043_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_legacy.output))) (rule (target testfile-ac_arith043_dolmen.output) (deps (:input testfile-ac_arith043.ae)) @@ -27653,10 +27247,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith043.expected testfile-ac_arith043_dolmen.output))) + (deps testfile-ac_arith043_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_dolmen.output))) (rule (target testfile-ac_arith043_fpa.output) (deps (:input testfile-ac_arith043.ae)) @@ -27673,10 +27268,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith043.expected testfile-ac_arith043_fpa.output))) + (deps testfile-ac_arith043_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith043.expected testfile-ac_arith043_fpa.output))) (rule (target testfile-ac_arith042_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith042.ae)) @@ -27695,12 +27291,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith042_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith042.ae)) @@ -27721,12 +27316,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith042.ae)) @@ -27746,12 +27340,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith042_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith042.ae)) @@ -27770,12 +27363,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith042_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith042.ae)) @@ -27794,12 +27386,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith042_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith042.ae)) @@ -27818,12 +27409,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith042_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith042_cdcl.output) (deps (:input testfile-ac_arith042.ae)) @@ -27841,10 +27431,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith042.expected testfile-ac_arith042_cdcl.output))) + (deps testfile-ac_arith042_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_cdcl.output))) (rule (target testfile-ac_arith042_tableaux_cdcl.output) (deps (:input testfile-ac_arith042.ae)) @@ -27862,12 +27453,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_tableaux_cdcl.output))) + (deps testfile-ac_arith042_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_tableaux_cdcl.output))) (rule (target testfile-ac_arith042_tableaux.output) (deps (:input testfile-ac_arith042.ae)) @@ -27885,12 +27475,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith042.expected - testfile-ac_arith042_tableaux.output))) + (deps testfile-ac_arith042_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_tableaux.output))) (rule (target testfile-ac_arith042_legacy.output) (deps (:input testfile-ac_arith042.ae)) @@ -27907,10 +27496,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith042.expected testfile-ac_arith042_legacy.output))) + (deps testfile-ac_arith042_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_legacy.output))) (rule (target testfile-ac_arith042_dolmen.output) (deps (:input testfile-ac_arith042.ae)) @@ -27927,10 +27517,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith042.expected testfile-ac_arith042_dolmen.output))) + (deps testfile-ac_arith042_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_dolmen.output))) (rule (target testfile-ac_arith042_fpa.output) (deps (:input testfile-ac_arith042.ae)) @@ -27947,10 +27538,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith042.expected testfile-ac_arith042_fpa.output))) + (deps testfile-ac_arith042_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith042.expected testfile-ac_arith042_fpa.output))) (rule (target testfile-ac_arith041_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith041.ae)) @@ -27969,12 +27561,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith041_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith041.ae)) @@ -27995,12 +27586,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith041.ae)) @@ -28020,12 +27610,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith041_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith041.ae)) @@ -28044,12 +27633,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith041_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith041.ae)) @@ -28068,12 +27656,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith041_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith041.ae)) @@ -28092,12 +27679,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith041_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith041_cdcl.output) (deps (:input testfile-ac_arith041.ae)) @@ -28115,10 +27701,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith041.expected testfile-ac_arith041_cdcl.output))) + (deps testfile-ac_arith041_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_cdcl.output))) (rule (target testfile-ac_arith041_tableaux_cdcl.output) (deps (:input testfile-ac_arith041.ae)) @@ -28136,12 +27723,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_tableaux_cdcl.output))) + (deps testfile-ac_arith041_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_tableaux_cdcl.output))) (rule (target testfile-ac_arith041_tableaux.output) (deps (:input testfile-ac_arith041.ae)) @@ -28159,12 +27745,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith041.expected - testfile-ac_arith041_tableaux.output))) + (deps testfile-ac_arith041_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_tableaux.output))) (rule (target testfile-ac_arith041_legacy.output) (deps (:input testfile-ac_arith041.ae)) @@ -28181,10 +27766,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith041.expected testfile-ac_arith041_legacy.output))) + (deps testfile-ac_arith041_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_legacy.output))) (rule (target testfile-ac_arith041_dolmen.output) (deps (:input testfile-ac_arith041.ae)) @@ -28201,10 +27787,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith041.expected testfile-ac_arith041_dolmen.output))) + (deps testfile-ac_arith041_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_dolmen.output))) (rule (target testfile-ac_arith041_fpa.output) (deps (:input testfile-ac_arith041.ae)) @@ -28221,10 +27808,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith041.expected testfile-ac_arith041_fpa.output))) + (deps testfile-ac_arith041_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith041.expected testfile-ac_arith041_fpa.output))) (rule (target testfile-ac_arith040_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith040.ae)) @@ -28243,12 +27831,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith040_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith040.ae)) @@ -28269,12 +27856,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith040.ae)) @@ -28294,12 +27880,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith040_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith040.ae)) @@ -28318,12 +27903,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith040_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith040.ae)) @@ -28342,12 +27926,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith040_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith040.ae)) @@ -28366,12 +27949,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith040_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith040_cdcl.output) (deps (:input testfile-ac_arith040.ae)) @@ -28389,10 +27971,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith040.expected testfile-ac_arith040_cdcl.output))) + (deps testfile-ac_arith040_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_cdcl.output))) (rule (target testfile-ac_arith040_tableaux_cdcl.output) (deps (:input testfile-ac_arith040.ae)) @@ -28410,12 +27993,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_tableaux_cdcl.output))) + (deps testfile-ac_arith040_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_tableaux_cdcl.output))) (rule (target testfile-ac_arith040_tableaux.output) (deps (:input testfile-ac_arith040.ae)) @@ -28433,12 +28015,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith040.expected - testfile-ac_arith040_tableaux.output))) + (deps testfile-ac_arith040_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_tableaux.output))) (rule (target testfile-ac_arith040_legacy.output) (deps (:input testfile-ac_arith040.ae)) @@ -28455,10 +28036,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith040.expected testfile-ac_arith040_legacy.output))) + (deps testfile-ac_arith040_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_legacy.output))) (rule (target testfile-ac_arith040_dolmen.output) (deps (:input testfile-ac_arith040.ae)) @@ -28475,10 +28057,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith040.expected testfile-ac_arith040_dolmen.output))) + (deps testfile-ac_arith040_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_dolmen.output))) (rule (target testfile-ac_arith040_fpa.output) (deps (:input testfile-ac_arith040.ae)) @@ -28495,10 +28078,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith040.expected testfile-ac_arith040_fpa.output))) + (deps testfile-ac_arith040_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith040.expected testfile-ac_arith040_fpa.output))) (rule (target testfile-ac_arith039_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith039.ae)) @@ -28517,12 +28101,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith039_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith039.ae)) @@ -28543,12 +28126,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith039.ae)) @@ -28568,12 +28150,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith039_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith039.ae)) @@ -28592,12 +28173,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith039_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith039.ae)) @@ -28616,12 +28196,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith039_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith039.ae)) @@ -28640,12 +28219,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith039_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith039_cdcl.output) (deps (:input testfile-ac_arith039.ae)) @@ -28663,10 +28241,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith039.expected testfile-ac_arith039_cdcl.output))) + (deps testfile-ac_arith039_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_cdcl.output))) (rule (target testfile-ac_arith039_tableaux_cdcl.output) (deps (:input testfile-ac_arith039.ae)) @@ -28684,12 +28263,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_tableaux_cdcl.output))) + (deps testfile-ac_arith039_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_tableaux_cdcl.output))) (rule (target testfile-ac_arith039_tableaux.output) (deps (:input testfile-ac_arith039.ae)) @@ -28707,12 +28285,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith039.expected - testfile-ac_arith039_tableaux.output))) + (deps testfile-ac_arith039_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_tableaux.output))) (rule (target testfile-ac_arith039_legacy.output) (deps (:input testfile-ac_arith039.ae)) @@ -28729,10 +28306,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith039.expected testfile-ac_arith039_legacy.output))) + (deps testfile-ac_arith039_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_legacy.output))) (rule (target testfile-ac_arith039_dolmen.output) (deps (:input testfile-ac_arith039.ae)) @@ -28749,10 +28327,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith039.expected testfile-ac_arith039_dolmen.output))) + (deps testfile-ac_arith039_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_dolmen.output))) (rule (target testfile-ac_arith039_fpa.output) (deps (:input testfile-ac_arith039.ae)) @@ -28769,10 +28348,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith039.expected testfile-ac_arith039_fpa.output))) + (deps testfile-ac_arith039_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith039.expected testfile-ac_arith039_fpa.output))) (rule (target testfile-ac_arith038_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith038.ae)) @@ -28791,12 +28371,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith038_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith038.ae)) @@ -28817,12 +28396,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith038.ae)) @@ -28842,12 +28420,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith038_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith038.ae)) @@ -28866,12 +28443,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith038_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith038.ae)) @@ -28890,12 +28466,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith038_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith038.ae)) @@ -28914,12 +28489,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith038_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith038_cdcl.output) (deps (:input testfile-ac_arith038.ae)) @@ -28937,10 +28511,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith038.expected testfile-ac_arith038_cdcl.output))) + (deps testfile-ac_arith038_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_cdcl.output))) (rule (target testfile-ac_arith038_tableaux_cdcl.output) (deps (:input testfile-ac_arith038.ae)) @@ -28958,12 +28533,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_tableaux_cdcl.output))) + (deps testfile-ac_arith038_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_tableaux_cdcl.output))) (rule (target testfile-ac_arith038_tableaux.output) (deps (:input testfile-ac_arith038.ae)) @@ -28981,12 +28555,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith038.expected - testfile-ac_arith038_tableaux.output))) + (deps testfile-ac_arith038_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_tableaux.output))) (rule (target testfile-ac_arith038_legacy.output) (deps (:input testfile-ac_arith038.ae)) @@ -29003,10 +28576,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith038.expected testfile-ac_arith038_legacy.output))) + (deps testfile-ac_arith038_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_legacy.output))) (rule (target testfile-ac_arith038_dolmen.output) (deps (:input testfile-ac_arith038.ae)) @@ -29023,10 +28597,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith038.expected testfile-ac_arith038_dolmen.output))) + (deps testfile-ac_arith038_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_dolmen.output))) (rule (target testfile-ac_arith038_fpa.output) (deps (:input testfile-ac_arith038.ae)) @@ -29043,10 +28618,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith038.expected testfile-ac_arith038_fpa.output))) + (deps testfile-ac_arith038_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith038.expected testfile-ac_arith038_fpa.output))) (rule (target testfile-ac_arith037_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith037.ae)) @@ -29065,12 +28641,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith037_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith037.ae)) @@ -29091,12 +28666,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith037.ae)) @@ -29116,12 +28690,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith037_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith037.ae)) @@ -29140,12 +28713,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith037_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith037.ae)) @@ -29164,12 +28736,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith037_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith037.ae)) @@ -29188,12 +28759,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith037_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith037_cdcl.output) (deps (:input testfile-ac_arith037.ae)) @@ -29211,10 +28781,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith037.expected testfile-ac_arith037_cdcl.output))) + (deps testfile-ac_arith037_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_cdcl.output))) (rule (target testfile-ac_arith037_tableaux_cdcl.output) (deps (:input testfile-ac_arith037.ae)) @@ -29232,12 +28803,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_tableaux_cdcl.output))) + (deps testfile-ac_arith037_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_tableaux_cdcl.output))) (rule (target testfile-ac_arith037_tableaux.output) (deps (:input testfile-ac_arith037.ae)) @@ -29255,12 +28825,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith037.expected - testfile-ac_arith037_tableaux.output))) + (deps testfile-ac_arith037_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_tableaux.output))) (rule (target testfile-ac_arith037_legacy.output) (deps (:input testfile-ac_arith037.ae)) @@ -29277,10 +28846,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith037.expected testfile-ac_arith037_legacy.output))) + (deps testfile-ac_arith037_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_legacy.output))) (rule (target testfile-ac_arith037_dolmen.output) (deps (:input testfile-ac_arith037.ae)) @@ -29297,10 +28867,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith037.expected testfile-ac_arith037_dolmen.output))) + (deps testfile-ac_arith037_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_dolmen.output))) (rule (target testfile-ac_arith037_fpa.output) (deps (:input testfile-ac_arith037.ae)) @@ -29317,10 +28888,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith037.expected testfile-ac_arith037_fpa.output))) + (deps testfile-ac_arith037_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith037.expected testfile-ac_arith037_fpa.output))) (rule (target testfile-ac_arith036_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith036.ae)) @@ -29339,12 +28911,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith036_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith036.ae)) @@ -29365,12 +28936,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith036.ae)) @@ -29390,12 +28960,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith036_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith036.ae)) @@ -29414,12 +28983,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith036_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith036.ae)) @@ -29438,12 +29006,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith036_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith036.ae)) @@ -29462,12 +29029,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith036_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith036_cdcl.output) (deps (:input testfile-ac_arith036.ae)) @@ -29485,10 +29051,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith036.expected testfile-ac_arith036_cdcl.output))) + (deps testfile-ac_arith036_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_cdcl.output))) (rule (target testfile-ac_arith036_tableaux_cdcl.output) (deps (:input testfile-ac_arith036.ae)) @@ -29506,12 +29073,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_tableaux_cdcl.output))) + (deps testfile-ac_arith036_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_tableaux_cdcl.output))) (rule (target testfile-ac_arith036_tableaux.output) (deps (:input testfile-ac_arith036.ae)) @@ -29529,12 +29095,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith036.expected - testfile-ac_arith036_tableaux.output))) + (deps testfile-ac_arith036_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_tableaux.output))) (rule (target testfile-ac_arith036_legacy.output) (deps (:input testfile-ac_arith036.ae)) @@ -29551,10 +29116,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith036.expected testfile-ac_arith036_legacy.output))) + (deps testfile-ac_arith036_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_legacy.output))) (rule (target testfile-ac_arith036_dolmen.output) (deps (:input testfile-ac_arith036.ae)) @@ -29571,10 +29137,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith036.expected testfile-ac_arith036_dolmen.output))) + (deps testfile-ac_arith036_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_dolmen.output))) (rule (target testfile-ac_arith036_fpa.output) (deps (:input testfile-ac_arith036.ae)) @@ -29591,10 +29158,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith036.expected testfile-ac_arith036_fpa.output))) + (deps testfile-ac_arith036_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith036.expected testfile-ac_arith036_fpa.output))) (rule (target testfile-ac_arith035_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith035.ae)) @@ -29613,12 +29181,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith035_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith035.ae)) @@ -29639,12 +29206,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith035.ae)) @@ -29664,12 +29230,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith035_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith035.ae)) @@ -29688,12 +29253,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith035_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith035.ae)) @@ -29712,12 +29276,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith035_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith035.ae)) @@ -29736,12 +29299,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith035_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith035_cdcl.output) (deps (:input testfile-ac_arith035.ae)) @@ -29759,10 +29321,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith035.expected testfile-ac_arith035_cdcl.output))) + (deps testfile-ac_arith035_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_cdcl.output))) (rule (target testfile-ac_arith035_tableaux_cdcl.output) (deps (:input testfile-ac_arith035.ae)) @@ -29780,12 +29343,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_tableaux_cdcl.output))) + (deps testfile-ac_arith035_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_tableaux_cdcl.output))) (rule (target testfile-ac_arith035_tableaux.output) (deps (:input testfile-ac_arith035.ae)) @@ -29803,12 +29365,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith035.expected - testfile-ac_arith035_tableaux.output))) + (deps testfile-ac_arith035_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_tableaux.output))) (rule (target testfile-ac_arith035_legacy.output) (deps (:input testfile-ac_arith035.ae)) @@ -29825,10 +29386,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith035.expected testfile-ac_arith035_legacy.output))) + (deps testfile-ac_arith035_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_legacy.output))) (rule (target testfile-ac_arith035_dolmen.output) (deps (:input testfile-ac_arith035.ae)) @@ -29845,10 +29407,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith035.expected testfile-ac_arith035_dolmen.output))) + (deps testfile-ac_arith035_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_dolmen.output))) (rule (target testfile-ac_arith035_fpa.output) (deps (:input testfile-ac_arith035.ae)) @@ -29865,10 +29428,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith035.expected testfile-ac_arith035_fpa.output))) + (deps testfile-ac_arith035_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith035.expected testfile-ac_arith035_fpa.output))) (rule (target testfile-ac_arith034_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith034.ae)) @@ -29887,12 +29451,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith034_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith034.ae)) @@ -29913,12 +29476,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith034.ae)) @@ -29938,12 +29500,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith034_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith034.ae)) @@ -29962,12 +29523,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith034_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith034.ae)) @@ -29986,12 +29546,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith034_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith034.ae)) @@ -30010,12 +29569,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith034_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith034_cdcl.output) (deps (:input testfile-ac_arith034.ae)) @@ -30033,10 +29591,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith034.expected testfile-ac_arith034_cdcl.output))) + (deps testfile-ac_arith034_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_cdcl.output))) (rule (target testfile-ac_arith034_tableaux_cdcl.output) (deps (:input testfile-ac_arith034.ae)) @@ -30054,12 +29613,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_tableaux_cdcl.output))) + (deps testfile-ac_arith034_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_tableaux_cdcl.output))) (rule (target testfile-ac_arith034_tableaux.output) (deps (:input testfile-ac_arith034.ae)) @@ -30077,12 +29635,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith034.expected - testfile-ac_arith034_tableaux.output))) + (deps testfile-ac_arith034_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_tableaux.output))) (rule (target testfile-ac_arith034_legacy.output) (deps (:input testfile-ac_arith034.ae)) @@ -30099,10 +29656,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith034.expected testfile-ac_arith034_legacy.output))) + (deps testfile-ac_arith034_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_legacy.output))) (rule (target testfile-ac_arith034_dolmen.output) (deps (:input testfile-ac_arith034.ae)) @@ -30119,10 +29677,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith034.expected testfile-ac_arith034_dolmen.output))) + (deps testfile-ac_arith034_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_dolmen.output))) (rule (target testfile-ac_arith034_fpa.output) (deps (:input testfile-ac_arith034.ae)) @@ -30139,10 +29698,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith034.expected testfile-ac_arith034_fpa.output))) + (deps testfile-ac_arith034_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith034.expected testfile-ac_arith034_fpa.output))) (rule (target testfile-ac_arith033_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith033.ae)) @@ -30161,12 +29721,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith033_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith033.ae)) @@ -30187,12 +29746,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith033.ae)) @@ -30212,12 +29770,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith033_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith033.ae)) @@ -30236,12 +29793,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith033_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith033.ae)) @@ -30260,12 +29816,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith033_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith033.ae)) @@ -30284,12 +29839,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith033_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith033_cdcl.output) (deps (:input testfile-ac_arith033.ae)) @@ -30307,10 +29861,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith033.expected testfile-ac_arith033_cdcl.output))) + (deps testfile-ac_arith033_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_cdcl.output))) (rule (target testfile-ac_arith033_tableaux_cdcl.output) (deps (:input testfile-ac_arith033.ae)) @@ -30328,12 +29883,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_tableaux_cdcl.output))) + (deps testfile-ac_arith033_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_tableaux_cdcl.output))) (rule (target testfile-ac_arith033_tableaux.output) (deps (:input testfile-ac_arith033.ae)) @@ -30351,12 +29905,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith033.expected - testfile-ac_arith033_tableaux.output))) + (deps testfile-ac_arith033_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_tableaux.output))) (rule (target testfile-ac_arith033_legacy.output) (deps (:input testfile-ac_arith033.ae)) @@ -30373,10 +29926,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith033.expected testfile-ac_arith033_legacy.output))) + (deps testfile-ac_arith033_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_legacy.output))) (rule (target testfile-ac_arith033_dolmen.output) (deps (:input testfile-ac_arith033.ae)) @@ -30393,10 +29947,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith033.expected testfile-ac_arith033_dolmen.output))) + (deps testfile-ac_arith033_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_dolmen.output))) (rule (target testfile-ac_arith033_fpa.output) (deps (:input testfile-ac_arith033.ae)) @@ -30413,10 +29968,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith033.expected testfile-ac_arith033_fpa.output))) + (deps testfile-ac_arith033_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith033.expected testfile-ac_arith033_fpa.output))) (rule (target testfile-ac_arith032_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith032.ae)) @@ -30435,12 +29991,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith032_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith032.ae)) @@ -30461,12 +30016,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith032.ae)) @@ -30486,12 +30040,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith032_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith032.ae)) @@ -30510,12 +30063,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith032_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith032.ae)) @@ -30534,12 +30086,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith032_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith032.ae)) @@ -30558,12 +30109,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith032_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith032_cdcl.output) (deps (:input testfile-ac_arith032.ae)) @@ -30581,10 +30131,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith032.expected testfile-ac_arith032_cdcl.output))) + (deps testfile-ac_arith032_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_cdcl.output))) (rule (target testfile-ac_arith032_tableaux_cdcl.output) (deps (:input testfile-ac_arith032.ae)) @@ -30602,12 +30153,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_tableaux_cdcl.output))) + (deps testfile-ac_arith032_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_tableaux_cdcl.output))) (rule (target testfile-ac_arith032_tableaux.output) (deps (:input testfile-ac_arith032.ae)) @@ -30625,12 +30175,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith032.expected - testfile-ac_arith032_tableaux.output))) + (deps testfile-ac_arith032_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_tableaux.output))) (rule (target testfile-ac_arith032_legacy.output) (deps (:input testfile-ac_arith032.ae)) @@ -30647,10 +30196,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith032.expected testfile-ac_arith032_legacy.output))) + (deps testfile-ac_arith032_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_legacy.output))) (rule (target testfile-ac_arith032_dolmen.output) (deps (:input testfile-ac_arith032.ae)) @@ -30667,10 +30217,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith032.expected testfile-ac_arith032_dolmen.output))) + (deps testfile-ac_arith032_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_dolmen.output))) (rule (target testfile-ac_arith032_fpa.output) (deps (:input testfile-ac_arith032.ae)) @@ -30687,10 +30238,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith032.expected testfile-ac_arith032_fpa.output))) + (deps testfile-ac_arith032_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith032.expected testfile-ac_arith032_fpa.output))) (rule (target testfile-ac_arith031_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith031.ae)) @@ -30709,12 +30261,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith031_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith031.ae)) @@ -30735,12 +30286,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith031.ae)) @@ -30760,12 +30310,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith031_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith031.ae)) @@ -30784,12 +30333,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith031_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith031.ae)) @@ -30808,12 +30356,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith031_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith031.ae)) @@ -30832,12 +30379,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith031_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith031_cdcl.output) (deps (:input testfile-ac_arith031.ae)) @@ -30855,10 +30401,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith031.expected testfile-ac_arith031_cdcl.output))) + (deps testfile-ac_arith031_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_cdcl.output))) (rule (target testfile-ac_arith031_tableaux_cdcl.output) (deps (:input testfile-ac_arith031.ae)) @@ -30876,12 +30423,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_tableaux_cdcl.output))) + (deps testfile-ac_arith031_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_tableaux_cdcl.output))) (rule (target testfile-ac_arith031_tableaux.output) (deps (:input testfile-ac_arith031.ae)) @@ -30899,12 +30445,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith031.expected - testfile-ac_arith031_tableaux.output))) + (deps testfile-ac_arith031_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_tableaux.output))) (rule (target testfile-ac_arith031_legacy.output) (deps (:input testfile-ac_arith031.ae)) @@ -30921,10 +30466,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith031.expected testfile-ac_arith031_legacy.output))) + (deps testfile-ac_arith031_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_legacy.output))) (rule (target testfile-ac_arith031_dolmen.output) (deps (:input testfile-ac_arith031.ae)) @@ -30941,10 +30487,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith031.expected testfile-ac_arith031_dolmen.output))) + (deps testfile-ac_arith031_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_dolmen.output))) (rule (target testfile-ac_arith031_fpa.output) (deps (:input testfile-ac_arith031.ae)) @@ -30961,10 +30508,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith031.expected testfile-ac_arith031_fpa.output))) + (deps testfile-ac_arith031_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith031.expected testfile-ac_arith031_fpa.output))) (rule (target testfile-ac_arith030_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith030.ae)) @@ -30983,12 +30531,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith030_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith030.ae)) @@ -31009,12 +30556,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith030.ae)) @@ -31034,12 +30580,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith030_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith030.ae)) @@ -31058,12 +30603,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith030_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith030.ae)) @@ -31082,12 +30626,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith030_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith030.ae)) @@ -31106,12 +30649,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith030_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith030_cdcl.output) (deps (:input testfile-ac_arith030.ae)) @@ -31129,10 +30671,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith030.expected testfile-ac_arith030_cdcl.output))) + (deps testfile-ac_arith030_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_cdcl.output))) (rule (target testfile-ac_arith030_tableaux_cdcl.output) (deps (:input testfile-ac_arith030.ae)) @@ -31150,12 +30693,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_tableaux_cdcl.output))) + (deps testfile-ac_arith030_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_tableaux_cdcl.output))) (rule (target testfile-ac_arith030_tableaux.output) (deps (:input testfile-ac_arith030.ae)) @@ -31173,12 +30715,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith030.expected - testfile-ac_arith030_tableaux.output))) + (deps testfile-ac_arith030_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_tableaux.output))) (rule (target testfile-ac_arith030_legacy.output) (deps (:input testfile-ac_arith030.ae)) @@ -31195,10 +30736,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith030.expected testfile-ac_arith030_legacy.output))) + (deps testfile-ac_arith030_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_legacy.output))) (rule (target testfile-ac_arith030_dolmen.output) (deps (:input testfile-ac_arith030.ae)) @@ -31215,10 +30757,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith030.expected testfile-ac_arith030_dolmen.output))) + (deps testfile-ac_arith030_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_dolmen.output))) (rule (target testfile-ac_arith030_fpa.output) (deps (:input testfile-ac_arith030.ae)) @@ -31235,10 +30778,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith030.expected testfile-ac_arith030_fpa.output))) + (deps testfile-ac_arith030_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith030.expected testfile-ac_arith030_fpa.output))) (rule (target testfile-ac_arith029_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith029.ae)) @@ -31257,12 +30801,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith029_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith029.ae)) @@ -31283,12 +30826,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith029.ae)) @@ -31308,12 +30850,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith029_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith029.ae)) @@ -31332,12 +30873,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith029_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith029.ae)) @@ -31356,12 +30896,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith029_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith029.ae)) @@ -31380,12 +30919,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith029_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith029_cdcl.output) (deps (:input testfile-ac_arith029.ae)) @@ -31403,10 +30941,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith029.expected testfile-ac_arith029_cdcl.output))) + (deps testfile-ac_arith029_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_cdcl.output))) (rule (target testfile-ac_arith029_tableaux_cdcl.output) (deps (:input testfile-ac_arith029.ae)) @@ -31424,12 +30963,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_tableaux_cdcl.output))) + (deps testfile-ac_arith029_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_tableaux_cdcl.output))) (rule (target testfile-ac_arith029_tableaux.output) (deps (:input testfile-ac_arith029.ae)) @@ -31447,12 +30985,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith029.expected - testfile-ac_arith029_tableaux.output))) + (deps testfile-ac_arith029_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_tableaux.output))) (rule (target testfile-ac_arith029_legacy.output) (deps (:input testfile-ac_arith029.ae)) @@ -31469,10 +31006,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith029.expected testfile-ac_arith029_legacy.output))) + (deps testfile-ac_arith029_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_legacy.output))) (rule (target testfile-ac_arith029_dolmen.output) (deps (:input testfile-ac_arith029.ae)) @@ -31489,10 +31027,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith029.expected testfile-ac_arith029_dolmen.output))) + (deps testfile-ac_arith029_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_dolmen.output))) (rule (target testfile-ac_arith029_fpa.output) (deps (:input testfile-ac_arith029.ae)) @@ -31509,10 +31048,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith029.expected testfile-ac_arith029_fpa.output))) + (deps testfile-ac_arith029_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith029.expected testfile-ac_arith029_fpa.output))) (rule (target testfile-ac_arith028_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith028.ae)) @@ -31531,12 +31071,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith028_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith028.ae)) @@ -31557,12 +31096,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith028.ae)) @@ -31582,12 +31120,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith028_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith028.ae)) @@ -31606,12 +31143,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith028_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith028.ae)) @@ -31630,12 +31166,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith028_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith028.ae)) @@ -31654,12 +31189,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith028_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith028_cdcl.output) (deps (:input testfile-ac_arith028.ae)) @@ -31677,10 +31211,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith028.expected testfile-ac_arith028_cdcl.output))) + (deps testfile-ac_arith028_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_cdcl.output))) (rule (target testfile-ac_arith028_tableaux_cdcl.output) (deps (:input testfile-ac_arith028.ae)) @@ -31698,12 +31233,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_tableaux_cdcl.output))) + (deps testfile-ac_arith028_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_tableaux_cdcl.output))) (rule (target testfile-ac_arith028_tableaux.output) (deps (:input testfile-ac_arith028.ae)) @@ -31721,12 +31255,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith028.expected - testfile-ac_arith028_tableaux.output))) + (deps testfile-ac_arith028_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_tableaux.output))) (rule (target testfile-ac_arith028_legacy.output) (deps (:input testfile-ac_arith028.ae)) @@ -31743,10 +31276,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith028.expected testfile-ac_arith028_legacy.output))) + (deps testfile-ac_arith028_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_legacy.output))) (rule (target testfile-ac_arith028_dolmen.output) (deps (:input testfile-ac_arith028.ae)) @@ -31763,10 +31297,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith028.expected testfile-ac_arith028_dolmen.output))) + (deps testfile-ac_arith028_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_dolmen.output))) (rule (target testfile-ac_arith028_fpa.output) (deps (:input testfile-ac_arith028.ae)) @@ -31783,10 +31318,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith028.expected testfile-ac_arith028_fpa.output))) + (deps testfile-ac_arith028_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith028.expected testfile-ac_arith028_fpa.output))) (rule (target testfile-ac_arith027_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith027.ae)) @@ -31805,12 +31341,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith027_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith027.ae)) @@ -31831,12 +31366,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith027.ae)) @@ -31856,12 +31390,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith027_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith027.ae)) @@ -31880,12 +31413,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith027_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith027.ae)) @@ -31904,12 +31436,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith027_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith027.ae)) @@ -31928,12 +31459,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith027_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith027_cdcl.output) (deps (:input testfile-ac_arith027.ae)) @@ -31951,10 +31481,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith027.expected testfile-ac_arith027_cdcl.output))) + (deps testfile-ac_arith027_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_cdcl.output))) (rule (target testfile-ac_arith027_tableaux_cdcl.output) (deps (:input testfile-ac_arith027.ae)) @@ -31972,12 +31503,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_tableaux_cdcl.output))) + (deps testfile-ac_arith027_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_tableaux_cdcl.output))) (rule (target testfile-ac_arith027_tableaux.output) (deps (:input testfile-ac_arith027.ae)) @@ -31995,12 +31525,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith027.expected - testfile-ac_arith027_tableaux.output))) + (deps testfile-ac_arith027_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_tableaux.output))) (rule (target testfile-ac_arith027_legacy.output) (deps (:input testfile-ac_arith027.ae)) @@ -32017,10 +31546,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith027.expected testfile-ac_arith027_legacy.output))) + (deps testfile-ac_arith027_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_legacy.output))) (rule (target testfile-ac_arith027_dolmen.output) (deps (:input testfile-ac_arith027.ae)) @@ -32037,10 +31567,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith027.expected testfile-ac_arith027_dolmen.output))) + (deps testfile-ac_arith027_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_dolmen.output))) (rule (target testfile-ac_arith027_fpa.output) (deps (:input testfile-ac_arith027.ae)) @@ -32057,10 +31588,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith027.expected testfile-ac_arith027_fpa.output))) + (deps testfile-ac_arith027_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith027.expected testfile-ac_arith027_fpa.output))) (rule (target testfile-ac_arith026_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith026.ae)) @@ -32079,12 +31611,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith026_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith026.ae)) @@ -32105,12 +31636,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith026.ae)) @@ -32130,12 +31660,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith026_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith026.ae)) @@ -32154,12 +31683,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith026_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith026.ae)) @@ -32178,12 +31706,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith026_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith026.ae)) @@ -32202,12 +31729,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith026_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith026_cdcl.output) (deps (:input testfile-ac_arith026.ae)) @@ -32225,10 +31751,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith026.expected testfile-ac_arith026_cdcl.output))) + (deps testfile-ac_arith026_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_cdcl.output))) (rule (target testfile-ac_arith026_tableaux_cdcl.output) (deps (:input testfile-ac_arith026.ae)) @@ -32246,12 +31773,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_tableaux_cdcl.output))) + (deps testfile-ac_arith026_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_tableaux_cdcl.output))) (rule (target testfile-ac_arith026_tableaux.output) (deps (:input testfile-ac_arith026.ae)) @@ -32269,12 +31795,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith026.expected - testfile-ac_arith026_tableaux.output))) + (deps testfile-ac_arith026_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_tableaux.output))) (rule (target testfile-ac_arith026_legacy.output) (deps (:input testfile-ac_arith026.ae)) @@ -32291,10 +31816,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith026.expected testfile-ac_arith026_legacy.output))) + (deps testfile-ac_arith026_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_legacy.output))) (rule (target testfile-ac_arith026_dolmen.output) (deps (:input testfile-ac_arith026.ae)) @@ -32311,10 +31837,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith026.expected testfile-ac_arith026_dolmen.output))) + (deps testfile-ac_arith026_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_dolmen.output))) (rule (target testfile-ac_arith026_fpa.output) (deps (:input testfile-ac_arith026.ae)) @@ -32331,10 +31858,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith026.expected testfile-ac_arith026_fpa.output))) + (deps testfile-ac_arith026_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith026.expected testfile-ac_arith026_fpa.output))) (rule (target testfile-ac_arith025_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith025.ae)) @@ -32353,12 +31881,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith025_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith025.ae)) @@ -32379,12 +31906,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith025.ae)) @@ -32404,12 +31930,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith025_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith025.ae)) @@ -32428,12 +31953,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith025_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith025.ae)) @@ -32452,12 +31976,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith025_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith025.ae)) @@ -32476,12 +31999,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith025_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith025_cdcl.output) (deps (:input testfile-ac_arith025.ae)) @@ -32499,10 +32021,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith025.expected testfile-ac_arith025_cdcl.output))) + (deps testfile-ac_arith025_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_cdcl.output))) (rule (target testfile-ac_arith025_tableaux_cdcl.output) (deps (:input testfile-ac_arith025.ae)) @@ -32520,12 +32043,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_tableaux_cdcl.output))) + (deps testfile-ac_arith025_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_tableaux_cdcl.output))) (rule (target testfile-ac_arith025_tableaux.output) (deps (:input testfile-ac_arith025.ae)) @@ -32543,12 +32065,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith025.expected - testfile-ac_arith025_tableaux.output))) + (deps testfile-ac_arith025_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_tableaux.output))) (rule (target testfile-ac_arith025_legacy.output) (deps (:input testfile-ac_arith025.ae)) @@ -32565,10 +32086,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith025.expected testfile-ac_arith025_legacy.output))) + (deps testfile-ac_arith025_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_legacy.output))) (rule (target testfile-ac_arith025_dolmen.output) (deps (:input testfile-ac_arith025.ae)) @@ -32585,10 +32107,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith025.expected testfile-ac_arith025_dolmen.output))) + (deps testfile-ac_arith025_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_dolmen.output))) (rule (target testfile-ac_arith025_fpa.output) (deps (:input testfile-ac_arith025.ae)) @@ -32605,10 +32128,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith025.expected testfile-ac_arith025_fpa.output))) + (deps testfile-ac_arith025_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith025.expected testfile-ac_arith025_fpa.output))) (rule (target testfile-ac_arith024_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith024.ae)) @@ -32627,12 +32151,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith024_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith024.ae)) @@ -32653,12 +32176,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith024.ae)) @@ -32678,12 +32200,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith024_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith024.ae)) @@ -32702,12 +32223,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith024_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith024.ae)) @@ -32726,12 +32246,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith024_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith024.ae)) @@ -32750,12 +32269,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith024_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith024_cdcl.output) (deps (:input testfile-ac_arith024.ae)) @@ -32773,10 +32291,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith024.expected testfile-ac_arith024_cdcl.output))) + (deps testfile-ac_arith024_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_cdcl.output))) (rule (target testfile-ac_arith024_tableaux_cdcl.output) (deps (:input testfile-ac_arith024.ae)) @@ -32794,12 +32313,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_tableaux_cdcl.output))) + (deps testfile-ac_arith024_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_tableaux_cdcl.output))) (rule (target testfile-ac_arith024_tableaux.output) (deps (:input testfile-ac_arith024.ae)) @@ -32817,12 +32335,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith024.expected - testfile-ac_arith024_tableaux.output))) + (deps testfile-ac_arith024_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_tableaux.output))) (rule (target testfile-ac_arith024_legacy.output) (deps (:input testfile-ac_arith024.ae)) @@ -32839,10 +32356,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith024.expected testfile-ac_arith024_legacy.output))) + (deps testfile-ac_arith024_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_legacy.output))) (rule (target testfile-ac_arith024_dolmen.output) (deps (:input testfile-ac_arith024.ae)) @@ -32859,10 +32377,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith024.expected testfile-ac_arith024_dolmen.output))) + (deps testfile-ac_arith024_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_dolmen.output))) (rule (target testfile-ac_arith024_fpa.output) (deps (:input testfile-ac_arith024.ae)) @@ -32879,10 +32398,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith024.expected testfile-ac_arith024_fpa.output))) + (deps testfile-ac_arith024_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith024.expected testfile-ac_arith024_fpa.output))) (rule (target testfile-ac_arith023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith023.ae)) @@ -32901,12 +32421,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith023.ae)) @@ -32927,12 +32446,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith023.ae)) @@ -32952,12 +32470,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith023.ae)) @@ -32976,12 +32493,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith023.ae)) @@ -33000,12 +32516,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith023.ae)) @@ -33024,12 +32539,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith023_cdcl.output) (deps (:input testfile-ac_arith023.ae)) @@ -33047,10 +32561,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith023.expected testfile-ac_arith023_cdcl.output))) + (deps testfile-ac_arith023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_cdcl.output))) (rule (target testfile-ac_arith023_tableaux_cdcl.output) (deps (:input testfile-ac_arith023.ae)) @@ -33068,12 +32583,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_tableaux_cdcl.output))) + (deps testfile-ac_arith023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_tableaux_cdcl.output))) (rule (target testfile-ac_arith023_tableaux.output) (deps (:input testfile-ac_arith023.ae)) @@ -33091,12 +32605,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith023.expected - testfile-ac_arith023_tableaux.output))) + (deps testfile-ac_arith023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_tableaux.output))) (rule (target testfile-ac_arith023_legacy.output) (deps (:input testfile-ac_arith023.ae)) @@ -33113,10 +32626,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith023.expected testfile-ac_arith023_legacy.output))) + (deps testfile-ac_arith023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_legacy.output))) (rule (target testfile-ac_arith023_dolmen.output) (deps (:input testfile-ac_arith023.ae)) @@ -33133,10 +32647,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith023.expected testfile-ac_arith023_dolmen.output))) + (deps testfile-ac_arith023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_dolmen.output))) (rule (target testfile-ac_arith023_fpa.output) (deps (:input testfile-ac_arith023.ae)) @@ -33153,10 +32668,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith023.expected testfile-ac_arith023_fpa.output))) + (deps testfile-ac_arith023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith023.expected testfile-ac_arith023_fpa.output))) (rule (target testfile-ac_arith022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith022.ae)) @@ -33175,12 +32691,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith022.ae)) @@ -33201,12 +32716,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith022.ae)) @@ -33226,12 +32740,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith022.ae)) @@ -33250,12 +32763,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith022.ae)) @@ -33274,12 +32786,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith022.ae)) @@ -33298,12 +32809,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith022_cdcl.output) (deps (:input testfile-ac_arith022.ae)) @@ -33321,10 +32831,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith022.expected testfile-ac_arith022_cdcl.output))) + (deps testfile-ac_arith022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_cdcl.output))) (rule (target testfile-ac_arith022_tableaux_cdcl.output) (deps (:input testfile-ac_arith022.ae)) @@ -33342,12 +32853,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_tableaux_cdcl.output))) + (deps testfile-ac_arith022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_tableaux_cdcl.output))) (rule (target testfile-ac_arith022_tableaux.output) (deps (:input testfile-ac_arith022.ae)) @@ -33365,12 +32875,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith022.expected - testfile-ac_arith022_tableaux.output))) + (deps testfile-ac_arith022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_tableaux.output))) (rule (target testfile-ac_arith022_legacy.output) (deps (:input testfile-ac_arith022.ae)) @@ -33387,10 +32896,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith022.expected testfile-ac_arith022_legacy.output))) + (deps testfile-ac_arith022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_legacy.output))) (rule (target testfile-ac_arith022_dolmen.output) (deps (:input testfile-ac_arith022.ae)) @@ -33407,10 +32917,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith022.expected testfile-ac_arith022_dolmen.output))) + (deps testfile-ac_arith022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_dolmen.output))) (rule (target testfile-ac_arith022_fpa.output) (deps (:input testfile-ac_arith022.ae)) @@ -33427,10 +32938,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith022.expected testfile-ac_arith022_fpa.output))) + (deps testfile-ac_arith022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith022.expected testfile-ac_arith022_fpa.output))) (rule (target testfile-ac_arith021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith021.ae)) @@ -33449,12 +32961,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith021.ae)) @@ -33475,12 +32986,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith021.ae)) @@ -33500,12 +33010,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith021.ae)) @@ -33524,12 +33033,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith021.ae)) @@ -33548,12 +33056,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith021.ae)) @@ -33572,12 +33079,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith021_cdcl.output) (deps (:input testfile-ac_arith021.ae)) @@ -33595,10 +33101,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith021.expected testfile-ac_arith021_cdcl.output))) + (deps testfile-ac_arith021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_cdcl.output))) (rule (target testfile-ac_arith021_tableaux_cdcl.output) (deps (:input testfile-ac_arith021.ae)) @@ -33616,12 +33123,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_tableaux_cdcl.output))) + (deps testfile-ac_arith021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_tableaux_cdcl.output))) (rule (target testfile-ac_arith021_tableaux.output) (deps (:input testfile-ac_arith021.ae)) @@ -33639,12 +33145,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith021.expected - testfile-ac_arith021_tableaux.output))) + (deps testfile-ac_arith021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_tableaux.output))) (rule (target testfile-ac_arith021_legacy.output) (deps (:input testfile-ac_arith021.ae)) @@ -33661,10 +33166,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith021.expected testfile-ac_arith021_legacy.output))) + (deps testfile-ac_arith021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_legacy.output))) (rule (target testfile-ac_arith021_dolmen.output) (deps (:input testfile-ac_arith021.ae)) @@ -33681,10 +33187,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith021.expected testfile-ac_arith021_dolmen.output))) + (deps testfile-ac_arith021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_dolmen.output))) (rule (target testfile-ac_arith021_fpa.output) (deps (:input testfile-ac_arith021.ae)) @@ -33701,10 +33208,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith021.expected testfile-ac_arith021_fpa.output))) + (deps testfile-ac_arith021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith021.expected testfile-ac_arith021_fpa.output))) (rule (target testfile-ac_arith020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith020.ae)) @@ -33723,12 +33231,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith020.ae)) @@ -33749,12 +33256,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith020.ae)) @@ -33774,12 +33280,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith020.ae)) @@ -33798,12 +33303,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith020.ae)) @@ -33822,12 +33326,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith020.ae)) @@ -33846,12 +33349,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith020_cdcl.output) (deps (:input testfile-ac_arith020.ae)) @@ -33869,10 +33371,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith020.expected testfile-ac_arith020_cdcl.output))) + (deps testfile-ac_arith020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_cdcl.output))) (rule (target testfile-ac_arith020_tableaux_cdcl.output) (deps (:input testfile-ac_arith020.ae)) @@ -33890,12 +33393,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_tableaux_cdcl.output))) + (deps testfile-ac_arith020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_tableaux_cdcl.output))) (rule (target testfile-ac_arith020_tableaux.output) (deps (:input testfile-ac_arith020.ae)) @@ -33913,12 +33415,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith020.expected - testfile-ac_arith020_tableaux.output))) + (deps testfile-ac_arith020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_tableaux.output))) (rule (target testfile-ac_arith020_legacy.output) (deps (:input testfile-ac_arith020.ae)) @@ -33935,10 +33436,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith020.expected testfile-ac_arith020_legacy.output))) + (deps testfile-ac_arith020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_legacy.output))) (rule (target testfile-ac_arith020_dolmen.output) (deps (:input testfile-ac_arith020.ae)) @@ -33955,10 +33457,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith020.expected testfile-ac_arith020_dolmen.output))) + (deps testfile-ac_arith020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_dolmen.output))) (rule (target testfile-ac_arith020_fpa.output) (deps (:input testfile-ac_arith020.ae)) @@ -33975,10 +33478,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith020.expected testfile-ac_arith020_fpa.output))) + (deps testfile-ac_arith020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith020.expected testfile-ac_arith020_fpa.output))) (rule (target testfile-ac_arith019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith019.ae)) @@ -33997,12 +33501,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith019.ae)) @@ -34023,12 +33526,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith019.ae)) @@ -34048,12 +33550,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith019.ae)) @@ -34072,12 +33573,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith019.ae)) @@ -34096,12 +33596,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith019.ae)) @@ -34120,12 +33619,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith019_cdcl.output) (deps (:input testfile-ac_arith019.ae)) @@ -34143,10 +33641,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith019.expected testfile-ac_arith019_cdcl.output))) + (deps testfile-ac_arith019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_cdcl.output))) (rule (target testfile-ac_arith019_tableaux_cdcl.output) (deps (:input testfile-ac_arith019.ae)) @@ -34164,12 +33663,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_tableaux_cdcl.output))) + (deps testfile-ac_arith019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_tableaux_cdcl.output))) (rule (target testfile-ac_arith019_tableaux.output) (deps (:input testfile-ac_arith019.ae)) @@ -34187,12 +33685,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith019.expected - testfile-ac_arith019_tableaux.output))) + (deps testfile-ac_arith019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_tableaux.output))) (rule (target testfile-ac_arith019_legacy.output) (deps (:input testfile-ac_arith019.ae)) @@ -34209,10 +33706,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith019.expected testfile-ac_arith019_legacy.output))) + (deps testfile-ac_arith019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_legacy.output))) (rule (target testfile-ac_arith019_dolmen.output) (deps (:input testfile-ac_arith019.ae)) @@ -34229,10 +33727,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith019.expected testfile-ac_arith019_dolmen.output))) + (deps testfile-ac_arith019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_dolmen.output))) (rule (target testfile-ac_arith019_fpa.output) (deps (:input testfile-ac_arith019.ae)) @@ -34249,10 +33748,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith019.expected testfile-ac_arith019_fpa.output))) + (deps testfile-ac_arith019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith019.expected testfile-ac_arith019_fpa.output))) (rule (target testfile-ac_arith018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith018.ae)) @@ -34271,12 +33771,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith018.ae)) @@ -34297,12 +33796,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith018.ae)) @@ -34322,12 +33820,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith018.ae)) @@ -34346,12 +33843,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith018.ae)) @@ -34370,12 +33866,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith018.ae)) @@ -34394,12 +33889,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith018_cdcl.output) (deps (:input testfile-ac_arith018.ae)) @@ -34417,10 +33911,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith018.expected testfile-ac_arith018_cdcl.output))) + (deps testfile-ac_arith018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_cdcl.output))) (rule (target testfile-ac_arith018_tableaux_cdcl.output) (deps (:input testfile-ac_arith018.ae)) @@ -34438,12 +33933,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_tableaux_cdcl.output))) + (deps testfile-ac_arith018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_tableaux_cdcl.output))) (rule (target testfile-ac_arith018_tableaux.output) (deps (:input testfile-ac_arith018.ae)) @@ -34461,12 +33955,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith018.expected - testfile-ac_arith018_tableaux.output))) + (deps testfile-ac_arith018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_tableaux.output))) (rule (target testfile-ac_arith018_legacy.output) (deps (:input testfile-ac_arith018.ae)) @@ -34483,10 +33976,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith018.expected testfile-ac_arith018_legacy.output))) + (deps testfile-ac_arith018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_legacy.output))) (rule (target testfile-ac_arith018_dolmen.output) (deps (:input testfile-ac_arith018.ae)) @@ -34503,10 +33997,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith018.expected testfile-ac_arith018_dolmen.output))) + (deps testfile-ac_arith018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_dolmen.output))) (rule (target testfile-ac_arith018_fpa.output) (deps (:input testfile-ac_arith018.ae)) @@ -34523,10 +34018,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith018.expected testfile-ac_arith018_fpa.output))) + (deps testfile-ac_arith018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith018.expected testfile-ac_arith018_fpa.output))) (rule (target testfile-ac_arith017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith017.ae)) @@ -34545,12 +34041,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith017.ae)) @@ -34571,12 +34066,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith017.ae)) @@ -34596,12 +34090,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith017.ae)) @@ -34620,12 +34113,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith017.ae)) @@ -34644,12 +34136,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith017.ae)) @@ -34668,12 +34159,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith017_cdcl.output) (deps (:input testfile-ac_arith017.ae)) @@ -34691,10 +34181,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith017.expected testfile-ac_arith017_cdcl.output))) + (deps testfile-ac_arith017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_cdcl.output))) (rule (target testfile-ac_arith017_tableaux_cdcl.output) (deps (:input testfile-ac_arith017.ae)) @@ -34712,12 +34203,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_tableaux_cdcl.output))) + (deps testfile-ac_arith017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_tableaux_cdcl.output))) (rule (target testfile-ac_arith017_tableaux.output) (deps (:input testfile-ac_arith017.ae)) @@ -34735,12 +34225,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith017.expected - testfile-ac_arith017_tableaux.output))) + (deps testfile-ac_arith017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_tableaux.output))) (rule (target testfile-ac_arith017_legacy.output) (deps (:input testfile-ac_arith017.ae)) @@ -34757,10 +34246,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith017.expected testfile-ac_arith017_legacy.output))) + (deps testfile-ac_arith017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_legacy.output))) (rule (target testfile-ac_arith017_dolmen.output) (deps (:input testfile-ac_arith017.ae)) @@ -34777,10 +34267,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith017.expected testfile-ac_arith017_dolmen.output))) + (deps testfile-ac_arith017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_dolmen.output))) (rule (target testfile-ac_arith017_fpa.output) (deps (:input testfile-ac_arith017.ae)) @@ -34797,10 +34288,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith017.expected testfile-ac_arith017_fpa.output))) + (deps testfile-ac_arith017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith017.expected testfile-ac_arith017_fpa.output))) (rule (target testfile-ac_arith016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith016.ae)) @@ -34819,12 +34311,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith016.ae)) @@ -34845,12 +34336,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith016.ae)) @@ -34870,12 +34360,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith016.ae)) @@ -34894,12 +34383,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith016.ae)) @@ -34918,12 +34406,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith016.ae)) @@ -34942,12 +34429,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith016_cdcl.output) (deps (:input testfile-ac_arith016.ae)) @@ -34965,10 +34451,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith016.expected testfile-ac_arith016_cdcl.output))) + (deps testfile-ac_arith016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_cdcl.output))) (rule (target testfile-ac_arith016_tableaux_cdcl.output) (deps (:input testfile-ac_arith016.ae)) @@ -34986,12 +34473,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_tableaux_cdcl.output))) + (deps testfile-ac_arith016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_tableaux_cdcl.output))) (rule (target testfile-ac_arith016_tableaux.output) (deps (:input testfile-ac_arith016.ae)) @@ -35009,12 +34495,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith016.expected - testfile-ac_arith016_tableaux.output))) + (deps testfile-ac_arith016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_tableaux.output))) (rule (target testfile-ac_arith016_legacy.output) (deps (:input testfile-ac_arith016.ae)) @@ -35031,10 +34516,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith016.expected testfile-ac_arith016_legacy.output))) + (deps testfile-ac_arith016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_legacy.output))) (rule (target testfile-ac_arith016_dolmen.output) (deps (:input testfile-ac_arith016.ae)) @@ -35051,10 +34537,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith016.expected testfile-ac_arith016_dolmen.output))) + (deps testfile-ac_arith016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_dolmen.output))) (rule (target testfile-ac_arith016_fpa.output) (deps (:input testfile-ac_arith016.ae)) @@ -35071,10 +34558,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith016.expected testfile-ac_arith016_fpa.output))) + (deps testfile-ac_arith016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith016.expected testfile-ac_arith016_fpa.output))) (rule (target testfile-ac_arith015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith015.ae)) @@ -35093,12 +34581,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith015.ae)) @@ -35119,12 +34606,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith015.ae)) @@ -35144,12 +34630,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith015.ae)) @@ -35168,12 +34653,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith015.ae)) @@ -35192,12 +34676,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith015.ae)) @@ -35216,12 +34699,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith015_cdcl.output) (deps (:input testfile-ac_arith015.ae)) @@ -35239,10 +34721,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_cdcl.output))) + (deps testfile-ac_arith015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_cdcl.output))) (rule (target testfile-ac_arith015_tableaux_cdcl.output) (deps (:input testfile-ac_arith015.ae)) @@ -35260,12 +34743,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_tableaux_cdcl.output))) + (deps testfile-ac_arith015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_tableaux_cdcl.output))) (rule (target testfile-ac_arith015_tableaux.output) (deps (:input testfile-ac_arith015.ae)) @@ -35283,12 +34765,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_tableaux.output))) + (deps testfile-ac_arith015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_tableaux.output))) (rule (target testfile-ac_arith015_legacy.output) (deps (:input testfile-ac_arith015.ae)) @@ -35305,10 +34786,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_legacy.output))) + (deps testfile-ac_arith015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_legacy.output))) (rule (target testfile-ac_arith015_dolmen.output) (deps (:input testfile-ac_arith015.ae)) @@ -35325,10 +34807,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_dolmen.output))) + (deps testfile-ac_arith015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_dolmen.output))) (rule (target testfile-ac_arith015_fpa.output) (deps (:input testfile-ac_arith015.ae)) @@ -35345,10 +34828,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_fpa.output))) + (deps testfile-ac_arith015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_fpa.output))) (rule (target testfile-ac_arith014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith014.ae)) @@ -35367,12 +34851,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith014.ae)) @@ -35393,12 +34876,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith014.ae)) @@ -35418,12 +34900,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith014.ae)) @@ -35442,12 +34923,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith014.ae)) @@ -35466,12 +34946,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith014.ae)) @@ -35490,12 +34969,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith014_cdcl.output) (deps (:input testfile-ac_arith014.ae)) @@ -35513,10 +34991,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_cdcl.output))) + (deps testfile-ac_arith014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_cdcl.output))) (rule (target testfile-ac_arith014_tableaux_cdcl.output) (deps (:input testfile-ac_arith014.ae)) @@ -35534,12 +35013,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_tableaux_cdcl.output))) + (deps testfile-ac_arith014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_tableaux_cdcl.output))) (rule (target testfile-ac_arith014_tableaux.output) (deps (:input testfile-ac_arith014.ae)) @@ -35557,12 +35035,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_tableaux.output))) + (deps testfile-ac_arith014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_tableaux.output))) (rule (target testfile-ac_arith014_legacy.output) (deps (:input testfile-ac_arith014.ae)) @@ -35579,10 +35056,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_legacy.output))) + (deps testfile-ac_arith014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_legacy.output))) (rule (target testfile-ac_arith014_dolmen.output) (deps (:input testfile-ac_arith014.ae)) @@ -35599,10 +35077,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_dolmen.output))) + (deps testfile-ac_arith014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_dolmen.output))) (rule (target testfile-ac_arith014_fpa.output) (deps (:input testfile-ac_arith014.ae)) @@ -35619,10 +35098,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_fpa.output))) + (deps testfile-ac_arith014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_fpa.output))) (rule (target testfile-ac_arith013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith013.ae)) @@ -35641,12 +35121,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith013.ae)) @@ -35667,12 +35146,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith013.ae)) @@ -35692,12 +35170,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith013.ae)) @@ -35716,12 +35193,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith013.ae)) @@ -35740,12 +35216,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith013.ae)) @@ -35764,12 +35239,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith013_cdcl.output) (deps (:input testfile-ac_arith013.ae)) @@ -35787,10 +35261,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_cdcl.output))) + (deps testfile-ac_arith013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_cdcl.output))) (rule (target testfile-ac_arith013_tableaux_cdcl.output) (deps (:input testfile-ac_arith013.ae)) @@ -35808,12 +35283,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_tableaux_cdcl.output))) + (deps testfile-ac_arith013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_tableaux_cdcl.output))) (rule (target testfile-ac_arith013_tableaux.output) (deps (:input testfile-ac_arith013.ae)) @@ -35831,12 +35305,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_tableaux.output))) + (deps testfile-ac_arith013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_tableaux.output))) (rule (target testfile-ac_arith013_legacy.output) (deps (:input testfile-ac_arith013.ae)) @@ -35853,10 +35326,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_legacy.output))) + (deps testfile-ac_arith013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_legacy.output))) (rule (target testfile-ac_arith013_dolmen.output) (deps (:input testfile-ac_arith013.ae)) @@ -35873,10 +35347,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_dolmen.output))) + (deps testfile-ac_arith013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_dolmen.output))) (rule (target testfile-ac_arith013_fpa.output) (deps (:input testfile-ac_arith013.ae)) @@ -35893,10 +35368,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_fpa.output))) + (deps testfile-ac_arith013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_fpa.output))) (rule (target testfile-ac_arith012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith012.ae)) @@ -35915,12 +35391,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith012.ae)) @@ -35941,12 +35416,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith012.ae)) @@ -35966,12 +35440,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith012.ae)) @@ -35990,12 +35463,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith012.ae)) @@ -36014,12 +35486,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith012.ae)) @@ -36038,12 +35509,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith012_cdcl.output) (deps (:input testfile-ac_arith012.ae)) @@ -36061,10 +35531,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_cdcl.output))) + (deps testfile-ac_arith012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_cdcl.output))) (rule (target testfile-ac_arith012_tableaux_cdcl.output) (deps (:input testfile-ac_arith012.ae)) @@ -36082,12 +35553,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_tableaux_cdcl.output))) + (deps testfile-ac_arith012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_tableaux_cdcl.output))) (rule (target testfile-ac_arith012_tableaux.output) (deps (:input testfile-ac_arith012.ae)) @@ -36105,12 +35575,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_tableaux.output))) + (deps testfile-ac_arith012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_tableaux.output))) (rule (target testfile-ac_arith012_legacy.output) (deps (:input testfile-ac_arith012.ae)) @@ -36127,10 +35596,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_legacy.output))) + (deps testfile-ac_arith012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_legacy.output))) (rule (target testfile-ac_arith012_dolmen.output) (deps (:input testfile-ac_arith012.ae)) @@ -36147,10 +35617,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_dolmen.output))) + (deps testfile-ac_arith012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_dolmen.output))) (rule (target testfile-ac_arith012_fpa.output) (deps (:input testfile-ac_arith012.ae)) @@ -36167,10 +35638,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_fpa.output))) + (deps testfile-ac_arith012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_fpa.output))) (rule (target testfile-ac_arith011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith011.ae)) @@ -36189,12 +35661,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith011.ae)) @@ -36215,12 +35686,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith011.ae)) @@ -36240,12 +35710,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith011.ae)) @@ -36264,12 +35733,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith011.ae)) @@ -36288,12 +35756,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith011.ae)) @@ -36312,12 +35779,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith011_cdcl.output) (deps (:input testfile-ac_arith011.ae)) @@ -36335,10 +35801,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_cdcl.output))) + (deps testfile-ac_arith011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_cdcl.output))) (rule (target testfile-ac_arith011_tableaux_cdcl.output) (deps (:input testfile-ac_arith011.ae)) @@ -36356,12 +35823,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_tableaux_cdcl.output))) + (deps testfile-ac_arith011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_tableaux_cdcl.output))) (rule (target testfile-ac_arith011_tableaux.output) (deps (:input testfile-ac_arith011.ae)) @@ -36379,12 +35845,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_tableaux.output))) + (deps testfile-ac_arith011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_tableaux.output))) (rule (target testfile-ac_arith011_legacy.output) (deps (:input testfile-ac_arith011.ae)) @@ -36401,10 +35866,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_legacy.output))) + (deps testfile-ac_arith011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_legacy.output))) (rule (target testfile-ac_arith011_dolmen.output) (deps (:input testfile-ac_arith011.ae)) @@ -36421,10 +35887,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_dolmen.output))) + (deps testfile-ac_arith011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_dolmen.output))) (rule (target testfile-ac_arith011_fpa.output) (deps (:input testfile-ac_arith011.ae)) @@ -36441,10 +35908,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_fpa.output))) + (deps testfile-ac_arith011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_fpa.output))) (rule (target testfile-ac_arith010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith010.ae)) @@ -36463,12 +35931,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith010.ae)) @@ -36489,12 +35956,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith010.ae)) @@ -36514,12 +35980,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith010.ae)) @@ -36538,12 +36003,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith010.ae)) @@ -36562,12 +36026,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith010.ae)) @@ -36586,12 +36049,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith010_cdcl.output) (deps (:input testfile-ac_arith010.ae)) @@ -36609,10 +36071,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_cdcl.output))) + (deps testfile-ac_arith010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_cdcl.output))) (rule (target testfile-ac_arith010_tableaux_cdcl.output) (deps (:input testfile-ac_arith010.ae)) @@ -36630,12 +36093,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_tableaux_cdcl.output))) + (deps testfile-ac_arith010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_tableaux_cdcl.output))) (rule (target testfile-ac_arith010_tableaux.output) (deps (:input testfile-ac_arith010.ae)) @@ -36653,12 +36115,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_tableaux.output))) + (deps testfile-ac_arith010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_tableaux.output))) (rule (target testfile-ac_arith010_legacy.output) (deps (:input testfile-ac_arith010.ae)) @@ -36675,10 +36136,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_legacy.output))) + (deps testfile-ac_arith010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_legacy.output))) (rule (target testfile-ac_arith010_dolmen.output) (deps (:input testfile-ac_arith010.ae)) @@ -36695,10 +36157,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_dolmen.output))) + (deps testfile-ac_arith010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_dolmen.output))) (rule (target testfile-ac_arith010_fpa.output) (deps (:input testfile-ac_arith010.ae)) @@ -36715,10 +36178,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_fpa.output))) + (deps testfile-ac_arith010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_fpa.output))) (rule (target testfile-ac_arith009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith009.ae)) @@ -36737,12 +36201,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith009.ae)) @@ -36763,12 +36226,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith009.ae)) @@ -36788,12 +36250,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith009.ae)) @@ -36812,12 +36273,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith009.ae)) @@ -36836,12 +36296,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith009.ae)) @@ -36860,12 +36319,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith009_cdcl.output) (deps (:input testfile-ac_arith009.ae)) @@ -36883,10 +36341,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_cdcl.output))) + (deps testfile-ac_arith009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_cdcl.output))) (rule (target testfile-ac_arith009_tableaux_cdcl.output) (deps (:input testfile-ac_arith009.ae)) @@ -36904,12 +36363,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_tableaux_cdcl.output))) + (deps testfile-ac_arith009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_tableaux_cdcl.output))) (rule (target testfile-ac_arith009_tableaux.output) (deps (:input testfile-ac_arith009.ae)) @@ -36927,12 +36385,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_tableaux.output))) + (deps testfile-ac_arith009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_tableaux.output))) (rule (target testfile-ac_arith009_legacy.output) (deps (:input testfile-ac_arith009.ae)) @@ -36949,10 +36406,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_legacy.output))) + (deps testfile-ac_arith009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_legacy.output))) (rule (target testfile-ac_arith009_dolmen.output) (deps (:input testfile-ac_arith009.ae)) @@ -36969,10 +36427,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_dolmen.output))) + (deps testfile-ac_arith009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_dolmen.output))) (rule (target testfile-ac_arith009_fpa.output) (deps (:input testfile-ac_arith009.ae)) @@ -36989,10 +36448,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_fpa.output))) + (deps testfile-ac_arith009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_fpa.output))) (rule (target testfile-ac_arith008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith008.ae)) @@ -37011,12 +36471,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith008.ae)) @@ -37037,12 +36496,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith008.ae)) @@ -37062,12 +36520,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith008.ae)) @@ -37086,12 +36543,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith008.ae)) @@ -37110,12 +36566,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith008.ae)) @@ -37134,12 +36589,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith008_cdcl.output) (deps (:input testfile-ac_arith008.ae)) @@ -37157,10 +36611,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_cdcl.output))) + (deps testfile-ac_arith008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_cdcl.output))) (rule (target testfile-ac_arith008_tableaux_cdcl.output) (deps (:input testfile-ac_arith008.ae)) @@ -37178,12 +36633,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_tableaux_cdcl.output))) + (deps testfile-ac_arith008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_tableaux_cdcl.output))) (rule (target testfile-ac_arith008_tableaux.output) (deps (:input testfile-ac_arith008.ae)) @@ -37201,12 +36655,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_tableaux.output))) + (deps testfile-ac_arith008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_tableaux.output))) (rule (target testfile-ac_arith008_legacy.output) (deps (:input testfile-ac_arith008.ae)) @@ -37223,10 +36676,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_legacy.output))) + (deps testfile-ac_arith008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_legacy.output))) (rule (target testfile-ac_arith008_dolmen.output) (deps (:input testfile-ac_arith008.ae)) @@ -37243,10 +36697,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_dolmen.output))) + (deps testfile-ac_arith008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_dolmen.output))) (rule (target testfile-ac_arith008_fpa.output) (deps (:input testfile-ac_arith008.ae)) @@ -37263,10 +36718,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_fpa.output))) + (deps testfile-ac_arith008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_fpa.output))) (rule (target testfile-ac_arith007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith007.ae)) @@ -37285,12 +36741,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith007.ae)) @@ -37311,12 +36766,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith007.ae)) @@ -37336,12 +36790,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith007.ae)) @@ -37360,12 +36813,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith007.ae)) @@ -37384,12 +36836,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith007.ae)) @@ -37408,12 +36859,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith007_cdcl.output) (deps (:input testfile-ac_arith007.ae)) @@ -37431,10 +36881,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_cdcl.output))) + (deps testfile-ac_arith007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_cdcl.output))) (rule (target testfile-ac_arith007_tableaux_cdcl.output) (deps (:input testfile-ac_arith007.ae)) @@ -37452,12 +36903,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_tableaux_cdcl.output))) + (deps testfile-ac_arith007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_tableaux_cdcl.output))) (rule (target testfile-ac_arith007_tableaux.output) (deps (:input testfile-ac_arith007.ae)) @@ -37475,12 +36925,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_tableaux.output))) + (deps testfile-ac_arith007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_tableaux.output))) (rule (target testfile-ac_arith007_legacy.output) (deps (:input testfile-ac_arith007.ae)) @@ -37497,10 +36946,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_legacy.output))) + (deps testfile-ac_arith007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_legacy.output))) (rule (target testfile-ac_arith007_dolmen.output) (deps (:input testfile-ac_arith007.ae)) @@ -37517,10 +36967,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_dolmen.output))) + (deps testfile-ac_arith007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_dolmen.output))) (rule (target testfile-ac_arith007_fpa.output) (deps (:input testfile-ac_arith007.ae)) @@ -37537,10 +36988,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_fpa.output))) + (deps testfile-ac_arith007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_fpa.output))) (rule (target testfile-ac_arith006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith006.ae)) @@ -37559,12 +37011,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith006.ae)) @@ -37585,12 +37036,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith006.ae)) @@ -37610,12 +37060,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith006.ae)) @@ -37634,12 +37083,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith006.ae)) @@ -37658,12 +37106,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith006.ae)) @@ -37682,12 +37129,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith006_cdcl.output) (deps (:input testfile-ac_arith006.ae)) @@ -37705,10 +37151,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_cdcl.output))) + (deps testfile-ac_arith006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_cdcl.output))) (rule (target testfile-ac_arith006_tableaux_cdcl.output) (deps (:input testfile-ac_arith006.ae)) @@ -37726,12 +37173,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_tableaux_cdcl.output))) + (deps testfile-ac_arith006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_tableaux_cdcl.output))) (rule (target testfile-ac_arith006_tableaux.output) (deps (:input testfile-ac_arith006.ae)) @@ -37749,12 +37195,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_tableaux.output))) + (deps testfile-ac_arith006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_tableaux.output))) (rule (target testfile-ac_arith006_legacy.output) (deps (:input testfile-ac_arith006.ae)) @@ -37771,10 +37216,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_legacy.output))) + (deps testfile-ac_arith006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_legacy.output))) (rule (target testfile-ac_arith006_dolmen.output) (deps (:input testfile-ac_arith006.ae)) @@ -37791,10 +37237,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_dolmen.output))) + (deps testfile-ac_arith006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_dolmen.output))) (rule (target testfile-ac_arith006_fpa.output) (deps (:input testfile-ac_arith006.ae)) @@ -37811,10 +37258,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_fpa.output))) + (deps testfile-ac_arith006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_fpa.output))) (rule (target testfile-ac_arith005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith005.ae)) @@ -37833,12 +37281,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith005.ae)) @@ -37859,12 +37306,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith005.ae)) @@ -37884,12 +37330,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith005.ae)) @@ -37908,12 +37353,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith005.ae)) @@ -37932,12 +37376,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith005.ae)) @@ -37956,12 +37399,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith005_cdcl.output) (deps (:input testfile-ac_arith005.ae)) @@ -37979,10 +37421,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_cdcl.output))) + (deps testfile-ac_arith005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_cdcl.output))) (rule (target testfile-ac_arith005_tableaux_cdcl.output) (deps (:input testfile-ac_arith005.ae)) @@ -38000,12 +37443,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_tableaux_cdcl.output))) + (deps testfile-ac_arith005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_tableaux_cdcl.output))) (rule (target testfile-ac_arith005_tableaux.output) (deps (:input testfile-ac_arith005.ae)) @@ -38023,12 +37465,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_tableaux.output))) + (deps testfile-ac_arith005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_tableaux.output))) (rule (target testfile-ac_arith005_legacy.output) (deps (:input testfile-ac_arith005.ae)) @@ -38045,10 +37486,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_legacy.output))) + (deps testfile-ac_arith005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_legacy.output))) (rule (target testfile-ac_arith005_dolmen.output) (deps (:input testfile-ac_arith005.ae)) @@ -38065,10 +37507,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_dolmen.output))) + (deps testfile-ac_arith005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_dolmen.output))) (rule (target testfile-ac_arith005_fpa.output) (deps (:input testfile-ac_arith005.ae)) @@ -38085,10 +37528,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_fpa.output))) + (deps testfile-ac_arith005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_fpa.output))) (rule (target testfile-ac_arith004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith004.ae)) @@ -38107,12 +37551,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith004.ae)) @@ -38133,12 +37576,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith004.ae)) @@ -38158,12 +37600,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith004.ae)) @@ -38182,12 +37623,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith004.ae)) @@ -38206,12 +37646,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith004.ae)) @@ -38230,12 +37669,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith004_cdcl.output) (deps (:input testfile-ac_arith004.ae)) @@ -38253,10 +37691,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_cdcl.output))) + (deps testfile-ac_arith004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_cdcl.output))) (rule (target testfile-ac_arith004_tableaux_cdcl.output) (deps (:input testfile-ac_arith004.ae)) @@ -38274,12 +37713,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_tableaux_cdcl.output))) + (deps testfile-ac_arith004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_tableaux_cdcl.output))) (rule (target testfile-ac_arith004_tableaux.output) (deps (:input testfile-ac_arith004.ae)) @@ -38297,12 +37735,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_tableaux.output))) + (deps testfile-ac_arith004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_tableaux.output))) (rule (target testfile-ac_arith004_legacy.output) (deps (:input testfile-ac_arith004.ae)) @@ -38319,10 +37756,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_legacy.output))) + (deps testfile-ac_arith004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_legacy.output))) (rule (target testfile-ac_arith004_dolmen.output) (deps (:input testfile-ac_arith004.ae)) @@ -38339,10 +37777,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_dolmen.output))) + (deps testfile-ac_arith004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_dolmen.output))) (rule (target testfile-ac_arith004_fpa.output) (deps (:input testfile-ac_arith004.ae)) @@ -38359,10 +37798,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_fpa.output))) + (deps testfile-ac_arith004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_fpa.output))) (rule (target testfile-ac_arith003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith003.ae)) @@ -38381,12 +37821,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith003.ae)) @@ -38407,12 +37846,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith003.ae)) @@ -38432,12 +37870,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith003.ae)) @@ -38456,12 +37893,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith003.ae)) @@ -38480,12 +37916,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith003.ae)) @@ -38504,12 +37939,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith003_cdcl.output) (deps (:input testfile-ac_arith003.ae)) @@ -38527,10 +37961,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_cdcl.output))) + (deps testfile-ac_arith003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_cdcl.output))) (rule (target testfile-ac_arith003_tableaux_cdcl.output) (deps (:input testfile-ac_arith003.ae)) @@ -38548,12 +37983,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_tableaux_cdcl.output))) + (deps testfile-ac_arith003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_tableaux_cdcl.output))) (rule (target testfile-ac_arith003_tableaux.output) (deps (:input testfile-ac_arith003.ae)) @@ -38571,12 +38005,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_tableaux.output))) + (deps testfile-ac_arith003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_tableaux.output))) (rule (target testfile-ac_arith003_legacy.output) (deps (:input testfile-ac_arith003.ae)) @@ -38593,10 +38026,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_legacy.output))) + (deps testfile-ac_arith003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_legacy.output))) (rule (target testfile-ac_arith003_dolmen.output) (deps (:input testfile-ac_arith003.ae)) @@ -38613,10 +38047,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_dolmen.output))) + (deps testfile-ac_arith003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_dolmen.output))) (rule (target testfile-ac_arith003_fpa.output) (deps (:input testfile-ac_arith003.ae)) @@ -38633,10 +38068,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_fpa.output))) + (deps testfile-ac_arith003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_fpa.output))) (rule (target testfile-ac_arith002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith002.ae)) @@ -38655,12 +38091,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith002.ae)) @@ -38681,12 +38116,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith002.ae)) @@ -38706,12 +38140,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith002.ae)) @@ -38730,12 +38163,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith002.ae)) @@ -38754,12 +38186,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith002.ae)) @@ -38778,12 +38209,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith002_cdcl.output) (deps (:input testfile-ac_arith002.ae)) @@ -38801,10 +38231,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_cdcl.output))) + (deps testfile-ac_arith002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_cdcl.output))) (rule (target testfile-ac_arith002_tableaux_cdcl.output) (deps (:input testfile-ac_arith002.ae)) @@ -38822,12 +38253,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_tableaux_cdcl.output))) + (deps testfile-ac_arith002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_tableaux_cdcl.output))) (rule (target testfile-ac_arith002_tableaux.output) (deps (:input testfile-ac_arith002.ae)) @@ -38845,12 +38275,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_tableaux.output))) + (deps testfile-ac_arith002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_tableaux.output))) (rule (target testfile-ac_arith002_legacy.output) (deps (:input testfile-ac_arith002.ae)) @@ -38867,10 +38296,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_legacy.output))) + (deps testfile-ac_arith002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_legacy.output))) (rule (target testfile-ac_arith002_dolmen.output) (deps (:input testfile-ac_arith002.ae)) @@ -38887,10 +38317,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_dolmen.output))) + (deps testfile-ac_arith002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_dolmen.output))) (rule (target testfile-ac_arith002_fpa.output) (deps (:input testfile-ac_arith002.ae)) @@ -38907,10 +38338,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_fpa.output))) + (deps testfile-ac_arith002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_fpa.output))) (rule (target testfile-ac_arith001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith001.ae)) @@ -38929,12 +38361,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith001.ae)) @@ -38955,12 +38386,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith001.ae)) @@ -38980,12 +38410,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith001.ae)) @@ -39004,12 +38433,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith001.ae)) @@ -39028,12 +38456,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith001.ae)) @@ -39052,12 +38479,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith001_cdcl.output) (deps (:input testfile-ac_arith001.ae)) @@ -39075,10 +38501,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_cdcl.output))) + (deps testfile-ac_arith001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_cdcl.output))) (rule (target testfile-ac_arith001_tableaux_cdcl.output) (deps (:input testfile-ac_arith001.ae)) @@ -39096,12 +38523,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_tableaux_cdcl.output))) + (deps testfile-ac_arith001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_tableaux_cdcl.output))) (rule (target testfile-ac_arith001_tableaux.output) (deps (:input testfile-ac_arith001.ae)) @@ -39119,12 +38545,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_tableaux.output))) + (deps testfile-ac_arith001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_tableaux.output))) (rule (target testfile-ac_arith001_legacy.output) (deps (:input testfile-ac_arith001.ae)) @@ -39141,10 +38566,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_legacy.output))) + (deps testfile-ac_arith001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_legacy.output))) (rule (target testfile-ac_arith001_dolmen.output) (deps (:input testfile-ac_arith001.ae)) @@ -39161,10 +38587,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_dolmen.output))) + (deps testfile-ac_arith001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_dolmen.output))) (rule (target testfile-ac_arith001_fpa.output) (deps (:input testfile-ac_arith001.ae)) @@ -39181,10 +38608,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_fpa.output)))) + (deps testfile-ac_arith001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -39208,12 +38636,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_ci_cdcl_no_minimal_bj.output))) + (deps useless-patterns-vars_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_ci_cdcl_no_minimal_bj.output))) (rule (target useless-patterns-vars_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input useless-patterns-vars.ae)) @@ -39234,12 +38661,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps useless-patterns-vars_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input useless-patterns-vars.ae)) @@ -39259,12 +38685,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target useless-patterns-vars_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input useless-patterns-vars.ae)) @@ -39283,12 +38708,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps useless-patterns-vars_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input useless-patterns-vars.ae)) @@ -39307,12 +38731,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target useless-patterns-vars_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input useless-patterns-vars.ae)) @@ -39331,12 +38754,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps useless-patterns-vars_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target useless-patterns-vars_cdcl.output) (deps (:input useless-patterns-vars.ae)) @@ -39354,10 +38776,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff useless-patterns-vars.expected useless-patterns-vars_cdcl.output))) + (deps useless-patterns-vars_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_cdcl.output))) (rule (target useless-patterns-vars_tableaux_cdcl.output) (deps (:input useless-patterns-vars.ae)) @@ -39375,12 +38798,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_tableaux_cdcl.output))) + (deps useless-patterns-vars_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_tableaux_cdcl.output))) (rule (target useless-patterns-vars_tableaux.output) (deps (:input useless-patterns-vars.ae)) @@ -39398,12 +38820,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_tableaux.output))) + (deps useless-patterns-vars_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_tableaux.output))) (rule (target useless-patterns-vars_legacy.output) (deps (:input useless-patterns-vars.ae)) @@ -39420,12 +38841,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_legacy.output))) + (deps useless-patterns-vars_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_legacy.output))) (rule (target useless-patterns-vars_dolmen.output) (deps (:input useless-patterns-vars.ae)) @@ -39442,12 +38862,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-patterns-vars.expected - useless-patterns-vars_dolmen.output))) + (deps useless-patterns-vars_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_dolmen.output))) (rule (target useless-patterns-vars_fpa.output) (deps (:input useless-patterns-vars.ae)) @@ -39464,10 +38883,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff useless-patterns-vars.expected useless-patterns-vars_fpa.output))) + (deps useless-patterns-vars_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-patterns-vars.expected useless-patterns-vars_fpa.output))) (rule (target useless-mutual-records-as-adts_ci_cdcl_no_minimal_bj.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39486,12 +38906,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_ci_cdcl_no_minimal_bj.output))) + (deps useless-mutual-records-as-adts_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_ci_cdcl_no_minimal_bj.output))) (rule (target useless-mutual-records-as-adts_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39512,12 +38931,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps useless-mutual-records-as-adts_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39537,12 +38955,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target useless-mutual-records-as-adts_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39561,12 +38978,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps useless-mutual-records-as-adts_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39585,12 +39001,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target useless-mutual-records-as-adts_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39609,12 +39024,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps useless-mutual-records-as-adts_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target useless-mutual-records-as-adts_cdcl.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39632,12 +39046,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_cdcl.output))) + (deps useless-mutual-records-as-adts_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_cdcl.output))) (rule (target useless-mutual-records-as-adts_tableaux_cdcl.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39655,12 +39068,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_tableaux_cdcl.output))) + (deps useless-mutual-records-as-adts_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_tableaux_cdcl.output))) (rule (target useless-mutual-records-as-adts_tableaux.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39678,12 +39090,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_tableaux.output))) + (deps useless-mutual-records-as-adts_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_tableaux.output))) (rule (target useless-mutual-records-as-adts_legacy.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39700,12 +39111,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_legacy.output))) + (deps useless-mutual-records-as-adts_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_legacy.output))) (rule (target useless-mutual-records-as-adts_dolmen.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39722,12 +39132,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_dolmen.output))) + (deps useless-mutual-records-as-adts_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_dolmen.output))) (rule (target useless-mutual-records-as-adts_fpa.output) (deps (:input useless-mutual-records-as-adts.ae)) @@ -39744,12 +39153,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - useless-mutual-records-as-adts.expected - useless-mutual-records-as-adts_fpa.output))) + (deps useless-mutual-records-as-adts_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff useless-mutual-records-as-adts.expected useless-mutual-records-as-adts_fpa.output))) (rule (target typecheck_warning-unused-pattern_ci_cdcl_no_minimal_bj.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39768,12 +39176,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_ci_cdcl_no_minimal_bj.output))) + (deps typecheck_warning-unused-pattern_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_ci_cdcl_no_minimal_bj.output))) (rule (target typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39794,12 +39201,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39819,12 +39225,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target typecheck_warning-unused-pattern_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39843,12 +39248,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps typecheck_warning-unused-pattern_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39867,12 +39271,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target typecheck_warning-unused-pattern_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39891,12 +39294,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps typecheck_warning-unused-pattern_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target typecheck_warning-unused-pattern_cdcl.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39914,12 +39316,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_cdcl.output))) + (deps typecheck_warning-unused-pattern_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_cdcl.output))) (rule (target typecheck_warning-unused-pattern_tableaux_cdcl.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39937,12 +39338,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_tableaux_cdcl.output))) + (deps typecheck_warning-unused-pattern_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_tableaux_cdcl.output))) (rule (target typecheck_warning-unused-pattern_tableaux.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39960,12 +39360,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_tableaux.output))) + (deps typecheck_warning-unused-pattern_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_tableaux.output))) (rule (target typecheck_warning-unused-pattern_legacy.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -39982,12 +39381,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_legacy.output))) + (deps typecheck_warning-unused-pattern_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_legacy.output))) (rule (target typecheck_warning-unused-pattern_dolmen.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -40004,12 +39402,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_dolmen.output))) + (deps typecheck_warning-unused-pattern_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_dolmen.output))) (rule (target typecheck_warning-unused-pattern_fpa.output) (deps (:input typecheck_warning-unused-pattern.ae)) @@ -40026,12 +39423,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - typecheck_warning-unused-pattern.expected - typecheck_warning-unused-pattern_fpa.output))) + (deps typecheck_warning-unused-pattern_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff typecheck_warning-unused-pattern.expected typecheck_warning-unused-pattern_fpa.output))) (rule (target tester_selector_ci_cdcl_no_minimal_bj.output) (deps (:input tester_selector.ae)) @@ -40050,12 +39446,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - tester_selector.expected - tester_selector_ci_cdcl_no_minimal_bj.output))) + (deps tester_selector_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_ci_cdcl_no_minimal_bj.output))) (rule (target tester_selector_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input tester_selector.ae)) @@ -40076,12 +39471,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - tester_selector.expected - tester_selector_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps tester_selector_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input tester_selector.ae)) @@ -40101,12 +39495,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - tester_selector.expected - tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target tester_selector_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input tester_selector.ae)) @@ -40125,12 +39518,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - tester_selector.expected - tester_selector_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps tester_selector_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input tester_selector.ae)) @@ -40149,12 +39541,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - tester_selector.expected - tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target tester_selector_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input tester_selector.ae)) @@ -40173,12 +39564,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - tester_selector.expected - tester_selector_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps tester_selector_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target tester_selector_cdcl.output) (deps (:input tester_selector.ae)) @@ -40196,10 +39586,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff tester_selector.expected tester_selector_cdcl.output))) + (deps tester_selector_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_cdcl.output))) (rule (target tester_selector_tableaux_cdcl.output) (deps (:input tester_selector.ae)) @@ -40217,10 +39608,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff tester_selector.expected tester_selector_tableaux_cdcl.output))) + (deps tester_selector_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_tableaux_cdcl.output))) (rule (target tester_selector_tableaux.output) (deps (:input tester_selector.ae)) @@ -40238,10 +39630,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff tester_selector.expected tester_selector_tableaux.output))) + (deps tester_selector_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_tableaux.output))) (rule (target tester_selector_legacy.output) (deps (:input tester_selector.ae)) @@ -40258,10 +39651,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff tester_selector.expected tester_selector_legacy.output))) + (deps tester_selector_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_legacy.output))) (rule (target tester_selector_dolmen.output) (deps (:input tester_selector.ae)) @@ -40278,10 +39672,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff tester_selector.expected tester_selector_dolmen.output))) + (deps tester_selector_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_dolmen.output))) (rule (target tester_selector_fpa.output) (deps (:input tester_selector.ae)) @@ -40298,10 +39693,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff tester_selector.expected tester_selector_fpa.output))) + (deps tester_selector_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff tester_selector.expected tester_selector_fpa.output))) (rule (target simple_invalid_ci_cdcl_no_minimal_bj.output) (deps (:input simple_invalid.ae)) @@ -40320,12 +39716,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_invalid.expected - simple_invalid_ci_cdcl_no_minimal_bj.output))) + (deps simple_invalid_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_ci_cdcl_no_minimal_bj.output))) (rule (target simple_invalid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple_invalid.ae)) @@ -40346,12 +39741,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_invalid.expected - simple_invalid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple_invalid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple_invalid.ae)) @@ -40371,12 +39765,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_invalid.expected - simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple_invalid_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input simple_invalid.ae)) @@ -40395,12 +39788,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_invalid.expected - simple_invalid_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps simple_invalid_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input simple_invalid.ae)) @@ -40419,12 +39811,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_invalid.expected - simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target simple_invalid_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input simple_invalid.ae)) @@ -40443,12 +39834,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_invalid.expected - simple_invalid_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps simple_invalid_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target simple_invalid_cdcl.output) (deps (:input simple_invalid.ae)) @@ -40466,10 +39856,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_invalid.expected simple_invalid_cdcl.output))) + (deps simple_invalid_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_cdcl.output))) (rule (target simple_invalid_tableaux_cdcl.output) (deps (:input simple_invalid.ae)) @@ -40487,10 +39878,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_invalid.expected simple_invalid_tableaux_cdcl.output))) + (deps simple_invalid_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_tableaux_cdcl.output))) (rule (target simple_invalid_tableaux.output) (deps (:input simple_invalid.ae)) @@ -40508,10 +39900,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_invalid.expected simple_invalid_tableaux.output))) + (deps simple_invalid_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_tableaux.output))) (rule (target simple_invalid_legacy.output) (deps (:input simple_invalid.ae)) @@ -40528,10 +39921,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_invalid.expected simple_invalid_legacy.output))) + (deps simple_invalid_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_legacy.output))) (rule (target simple_invalid_dolmen.output) (deps (:input simple_invalid.ae)) @@ -40548,10 +39942,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_invalid.expected simple_invalid_dolmen.output))) + (deps simple_invalid_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_dolmen.output))) (rule (target simple_invalid_fpa.output) (deps (:input simple_invalid.ae)) @@ -40568,10 +39963,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_invalid.expected simple_invalid_fpa.output))) + (deps simple_invalid_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_invalid.expected simple_invalid_fpa.output))) (rule (target simple_1_ci_cdcl_no_minimal_bj.output) (deps (:input simple_1.ae)) @@ -40590,10 +39986,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_ci_cdcl_no_minimal_bj.output))) + (deps simple_1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_ci_cdcl_no_minimal_bj.output))) (rule (target simple_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple_1.ae)) @@ -40614,12 +40011,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_1.expected - simple_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple_1.ae)) @@ -40639,12 +40035,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_1.expected - simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple_1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input simple_1.ae)) @@ -40663,12 +40058,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_1.expected - simple_1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps simple_1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input simple_1.ae)) @@ -40687,12 +40081,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_1.expected - simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target simple_1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input simple_1.ae)) @@ -40711,10 +40104,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps simple_1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target simple_1_cdcl.output) (deps (:input simple_1.ae)) @@ -40732,10 +40126,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_cdcl.output))) + (deps simple_1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_cdcl.output))) (rule (target simple_1_tableaux_cdcl.output) (deps (:input simple_1.ae)) @@ -40753,10 +40148,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_tableaux_cdcl.output))) + (deps simple_1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_tableaux_cdcl.output))) (rule (target simple_1_tableaux.output) (deps (:input simple_1.ae)) @@ -40774,10 +40170,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_tableaux.output))) + (deps simple_1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_tableaux.output))) (rule (target simple_1_legacy.output) (deps (:input simple_1.ae)) @@ -40794,10 +40191,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_legacy.output))) + (deps simple_1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_legacy.output))) (rule (target simple_1_dolmen.output) (deps (:input simple_1.ae)) @@ -40814,10 +40212,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_dolmen.output))) + (deps simple_1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_dolmen.output))) (rule (target simple_1_fpa.output) (deps (:input simple_1.ae)) @@ -40834,10 +40233,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_1.expected simple_1_fpa.output))) + (deps simple_1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_1.expected simple_1_fpa.output))) (rule (target simple_0_ci_cdcl_no_minimal_bj.output) (deps (:input simple_0.ae)) @@ -40856,10 +40256,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_ci_cdcl_no_minimal_bj.output))) + (deps simple_0_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_ci_cdcl_no_minimal_bj.output))) (rule (target simple_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple_0.ae)) @@ -40880,12 +40281,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_0.expected - simple_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple_0.ae)) @@ -40905,12 +40305,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_0.expected - simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple_0_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input simple_0.ae)) @@ -40929,12 +40328,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_0.expected - simple_0_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps simple_0_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input simple_0.ae)) @@ -40953,12 +40351,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple_0.expected - simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target simple_0_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input simple_0.ae)) @@ -40977,10 +40374,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps simple_0_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target simple_0_cdcl.output) (deps (:input simple_0.ae)) @@ -40998,10 +40396,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_cdcl.output))) + (deps simple_0_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_cdcl.output))) (rule (target simple_0_tableaux_cdcl.output) (deps (:input simple_0.ae)) @@ -41019,10 +40418,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_tableaux_cdcl.output))) + (deps simple_0_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_tableaux_cdcl.output))) (rule (target simple_0_tableaux.output) (deps (:input simple_0.ae)) @@ -41040,10 +40440,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_tableaux.output))) + (deps simple_0_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_tableaux.output))) (rule (target simple_0_legacy.output) (deps (:input simple_0.ae)) @@ -41060,10 +40461,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_legacy.output))) + (deps simple_0_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_legacy.output))) (rule (target simple_0_dolmen.output) (deps (:input simple_0.ae)) @@ -41080,10 +40482,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_dolmen.output))) + (deps simple_0_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_dolmen.output))) (rule (target simple_0_fpa.output) (deps (:input simple_0.ae)) @@ -41100,10 +40503,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple_0.expected simple_0_fpa.output))) + (deps simple_0_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple_0.expected simple_0_fpa.output))) (rule (target simple-valid_ci_cdcl_no_minimal_bj.output) (deps (:input simple-valid.ae)) @@ -41122,10 +40526,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff simple-valid.expected simple-valid_ci_cdcl_no_minimal_bj.output))) + (deps simple-valid_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_ci_cdcl_no_minimal_bj.output))) (rule (target simple-valid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple-valid.ae)) @@ -41146,12 +40551,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple-valid.expected - simple-valid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple-valid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input simple-valid.ae)) @@ -41171,12 +40575,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple-valid.expected - simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target simple-valid_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input simple-valid.ae)) @@ -41195,12 +40598,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple-valid.expected - simple-valid_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps simple-valid_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input simple-valid.ae)) @@ -41219,12 +40621,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple-valid.expected - simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target simple-valid_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input simple-valid.ae)) @@ -41243,12 +40644,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - simple-valid.expected - simple-valid_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps simple-valid_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target simple-valid_cdcl.output) (deps (:input simple-valid.ae)) @@ -41266,10 +40666,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple-valid.expected simple-valid_cdcl.output))) + (deps simple-valid_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_cdcl.output))) (rule (target simple-valid_tableaux_cdcl.output) (deps (:input simple-valid.ae)) @@ -41287,10 +40688,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple-valid.expected simple-valid_tableaux_cdcl.output))) + (deps simple-valid_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_tableaux_cdcl.output))) (rule (target simple-valid_tableaux.output) (deps (:input simple-valid.ae)) @@ -41308,10 +40710,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple-valid.expected simple-valid_tableaux.output))) + (deps simple-valid_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_tableaux.output))) (rule (target simple-valid_legacy.output) (deps (:input simple-valid.ae)) @@ -41328,10 +40731,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple-valid.expected simple-valid_legacy.output))) + (deps simple-valid_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_legacy.output))) (rule (target simple-valid_dolmen.output) (deps (:input simple-valid.ae)) @@ -41348,10 +40752,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple-valid.expected simple-valid_dolmen.output))) + (deps simple-valid_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_dolmen.output))) (rule (target simple-valid_fpa.output) (deps (:input simple-valid.ae)) @@ -41368,10 +40773,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff simple-valid.expected simple-valid_fpa.output))) + (deps simple-valid_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff simple-valid.expected simple-valid_fpa.output))) (rule (target record-defined-as-adt+projection_ci_cdcl_no_minimal_bj.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41390,12 +40796,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_ci_cdcl_no_minimal_bj.output))) + (deps record-defined-as-adt+projection_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_ci_cdcl_no_minimal_bj.output))) (rule (target record-defined-as-adt+projection_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41416,12 +40821,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps record-defined-as-adt+projection_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41441,12 +40845,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target record-defined-as-adt+projection_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41465,12 +40868,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps record-defined-as-adt+projection_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41489,12 +40891,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target record-defined-as-adt+projection_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41513,12 +40914,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps record-defined-as-adt+projection_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target record-defined-as-adt+projection_cdcl.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41536,12 +40936,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_cdcl.output))) + (deps record-defined-as-adt+projection_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_cdcl.output))) (rule (target record-defined-as-adt+projection_tableaux_cdcl.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41559,12 +40958,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_tableaux_cdcl.output))) + (deps record-defined-as-adt+projection_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_tableaux_cdcl.output))) (rule (target record-defined-as-adt+projection_tableaux.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41582,12 +40980,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_tableaux.output))) + (deps record-defined-as-adt+projection_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_tableaux.output))) (rule (target record-defined-as-adt+projection_legacy.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41604,12 +41001,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_legacy.output))) + (deps record-defined-as-adt+projection_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_legacy.output))) (rule (target record-defined-as-adt+projection_dolmen.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41626,12 +41022,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_dolmen.output))) + (deps record-defined-as-adt+projection_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_dolmen.output))) (rule (target record-defined-as-adt+projection_fpa.output) (deps (:input record-defined-as-adt+projection.ae)) @@ -41648,12 +41043,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - record-defined-as-adt+projection.expected - record-defined-as-adt+projection_fpa.output))) + (deps record-defined-as-adt+projection_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff record-defined-as-adt+projection.expected record-defined-as-adt+projection_fpa.output))) (rule (target mutually_recursive_typechecks_ci_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41672,12 +41066,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_ci_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_typechecks_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_ci_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_typechecks_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41698,12 +41091,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_typechecks_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41723,12 +41115,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_typechecks_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41747,12 +41138,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps mutually_recursive_typechecks_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41771,12 +41161,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target mutually_recursive_typechecks_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41795,12 +41184,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_typechecks_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_typechecks_cdcl.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41818,12 +41206,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_cdcl.output))) + (deps mutually_recursive_typechecks_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_cdcl.output))) (rule (target mutually_recursive_typechecks_tableaux_cdcl.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41841,12 +41228,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_tableaux_cdcl.output))) + (deps mutually_recursive_typechecks_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_tableaux_cdcl.output))) (rule (target mutually_recursive_typechecks_tableaux.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41864,12 +41250,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_tableaux.output))) + (deps mutually_recursive_typechecks_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_tableaux.output))) (rule (target mutually_recursive_typechecks_legacy.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41886,12 +41271,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_legacy.output))) + (deps mutually_recursive_typechecks_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_legacy.output))) (rule (target mutually_recursive_typechecks_dolmen.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41908,12 +41292,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_dolmen.output))) + (deps mutually_recursive_typechecks_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_dolmen.output))) (rule (target mutually_recursive_typechecks_fpa.output) (deps (:input mutually_recursive_typechecks.ae)) @@ -41930,12 +41313,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_typechecks.expected - mutually_recursive_typechecks_fpa.output))) + (deps mutually_recursive_typechecks_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_typechecks.expected mutually_recursive_typechecks_fpa.output))) (rule (target mutually_recursive_6_ci_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_6.ae)) @@ -41954,12 +41336,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_ci_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_6_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_ci_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_6.ae)) @@ -41980,12 +41361,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_6.ae)) @@ -42005,12 +41385,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_6_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input mutually_recursive_6.ae)) @@ -42029,12 +41408,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps mutually_recursive_6_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input mutually_recursive_6.ae)) @@ -42053,12 +41431,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target mutually_recursive_6_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_6.ae)) @@ -42077,12 +41454,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_6_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_6_cdcl.output) (deps (:input mutually_recursive_6.ae)) @@ -42100,10 +41476,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_6.expected mutually_recursive_6_cdcl.output))) + (deps mutually_recursive_6_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_cdcl.output))) (rule (target mutually_recursive_6_tableaux_cdcl.output) (deps (:input mutually_recursive_6.ae)) @@ -42121,12 +41498,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_tableaux_cdcl.output))) + (deps mutually_recursive_6_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_tableaux_cdcl.output))) (rule (target mutually_recursive_6_tableaux.output) (deps (:input mutually_recursive_6.ae)) @@ -42144,12 +41520,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_6.expected - mutually_recursive_6_tableaux.output))) + (deps mutually_recursive_6_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_tableaux.output))) (rule (target mutually_recursive_6_legacy.output) (deps (:input mutually_recursive_6.ae)) @@ -42166,10 +41541,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_6.expected mutually_recursive_6_legacy.output))) + (deps mutually_recursive_6_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_legacy.output))) (rule (target mutually_recursive_6_dolmen.output) (deps (:input mutually_recursive_6.ae)) @@ -42186,10 +41562,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_6.expected mutually_recursive_6_dolmen.output))) + (deps mutually_recursive_6_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_dolmen.output))) (rule (target mutually_recursive_6_fpa.output) (deps (:input mutually_recursive_6.ae)) @@ -42206,10 +41583,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_6.expected mutually_recursive_6_fpa.output))) + (deps mutually_recursive_6_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_6.expected mutually_recursive_6_fpa.output))) (rule (target mutually_recursive_5_ci_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_5.ae)) @@ -42228,12 +41606,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_ci_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_ci_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_5.ae)) @@ -42254,12 +41631,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_5.ae)) @@ -42279,12 +41655,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input mutually_recursive_5.ae)) @@ -42303,12 +41678,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps mutually_recursive_5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input mutually_recursive_5.ae)) @@ -42327,12 +41701,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target mutually_recursive_5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_5.ae)) @@ -42351,12 +41724,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_5_cdcl.output) (deps (:input mutually_recursive_5.ae)) @@ -42374,10 +41746,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_5.expected mutually_recursive_5_cdcl.output))) + (deps mutually_recursive_5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_cdcl.output))) (rule (target mutually_recursive_5_tableaux_cdcl.output) (deps (:input mutually_recursive_5.ae)) @@ -42395,12 +41768,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_tableaux_cdcl.output))) + (deps mutually_recursive_5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_tableaux_cdcl.output))) (rule (target mutually_recursive_5_tableaux.output) (deps (:input mutually_recursive_5.ae)) @@ -42418,12 +41790,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_5.expected - mutually_recursive_5_tableaux.output))) + (deps mutually_recursive_5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_tableaux.output))) (rule (target mutually_recursive_5_legacy.output) (deps (:input mutually_recursive_5.ae)) @@ -42440,10 +41811,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_5.expected mutually_recursive_5_legacy.output))) + (deps mutually_recursive_5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_legacy.output))) (rule (target mutually_recursive_5_dolmen.output) (deps (:input mutually_recursive_5.ae)) @@ -42460,10 +41832,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_5.expected mutually_recursive_5_dolmen.output))) + (deps mutually_recursive_5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_dolmen.output))) (rule (target mutually_recursive_5_fpa.output) (deps (:input mutually_recursive_5.ae)) @@ -42480,10 +41853,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_5.expected mutually_recursive_5_fpa.output))) + (deps mutually_recursive_5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_5.expected mutually_recursive_5_fpa.output))) (rule (target mutually_recursive_3_ci_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_3.ae)) @@ -42502,12 +41876,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_ci_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_ci_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_3.ae)) @@ -42528,12 +41901,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_3.ae)) @@ -42553,12 +41925,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input mutually_recursive_3.ae)) @@ -42577,12 +41948,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps mutually_recursive_3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input mutually_recursive_3.ae)) @@ -42601,12 +41971,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target mutually_recursive_3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_3.ae)) @@ -42625,12 +41994,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_3_cdcl.output) (deps (:input mutually_recursive_3.ae)) @@ -42648,10 +42016,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_3.expected mutually_recursive_3_cdcl.output))) + (deps mutually_recursive_3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_cdcl.output))) (rule (target mutually_recursive_3_tableaux_cdcl.output) (deps (:input mutually_recursive_3.ae)) @@ -42669,12 +42038,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_tableaux_cdcl.output))) + (deps mutually_recursive_3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_tableaux_cdcl.output))) (rule (target mutually_recursive_3_tableaux.output) (deps (:input mutually_recursive_3.ae)) @@ -42692,12 +42060,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_3.expected - mutually_recursive_3_tableaux.output))) + (deps mutually_recursive_3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_tableaux.output))) (rule (target mutually_recursive_3_legacy.output) (deps (:input mutually_recursive_3.ae)) @@ -42714,10 +42081,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_3.expected mutually_recursive_3_legacy.output))) + (deps mutually_recursive_3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_legacy.output))) (rule (target mutually_recursive_3_dolmen.output) (deps (:input mutually_recursive_3.ae)) @@ -42734,10 +42102,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_3.expected mutually_recursive_3_dolmen.output))) + (deps mutually_recursive_3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_dolmen.output))) (rule (target mutually_recursive_3_fpa.output) (deps (:input mutually_recursive_3.ae)) @@ -42754,10 +42123,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_3.expected mutually_recursive_3_fpa.output))) + (deps mutually_recursive_3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_3.expected mutually_recursive_3_fpa.output))) (rule (target mutually_recursive_2_ci_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_2.ae)) @@ -42776,12 +42146,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_ci_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_ci_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_2.ae)) @@ -42802,12 +42171,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive_2.ae)) @@ -42827,12 +42195,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input mutually_recursive_2.ae)) @@ -42851,12 +42218,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps mutually_recursive_2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input mutually_recursive_2.ae)) @@ -42875,12 +42241,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target mutually_recursive_2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive_2.ae)) @@ -42899,12 +42264,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_2_cdcl.output) (deps (:input mutually_recursive_2.ae)) @@ -42922,10 +42286,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_2.expected mutually_recursive_2_cdcl.output))) + (deps mutually_recursive_2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_cdcl.output))) (rule (target mutually_recursive_2_tableaux_cdcl.output) (deps (:input mutually_recursive_2.ae)) @@ -42943,12 +42308,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_tableaux_cdcl.output))) + (deps mutually_recursive_2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_tableaux_cdcl.output))) (rule (target mutually_recursive_2_tableaux.output) (deps (:input mutually_recursive_2.ae)) @@ -42966,12 +42330,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive_2.expected - mutually_recursive_2_tableaux.output))) + (deps mutually_recursive_2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_tableaux.output))) (rule (target mutually_recursive_2_legacy.output) (deps (:input mutually_recursive_2.ae)) @@ -42988,10 +42351,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_2.expected mutually_recursive_2_legacy.output))) + (deps mutually_recursive_2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_legacy.output))) (rule (target mutually_recursive_2_dolmen.output) (deps (:input mutually_recursive_2.ae)) @@ -43008,10 +42372,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_2.expected mutually_recursive_2_dolmen.output))) + (deps mutually_recursive_2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_dolmen.output))) (rule (target mutually_recursive_2_fpa.output) (deps (:input mutually_recursive_2.ae)) @@ -43028,10 +42393,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive_2.expected mutually_recursive_2_fpa.output))) + (deps mutually_recursive_2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive_2.expected mutually_recursive_2_fpa.output))) (rule (target mutually_recursive_ci_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive.ae)) @@ -43050,12 +42416,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive.expected - mutually_recursive_ci_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_ci_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive.ae)) @@ -43076,12 +42441,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive.expected - mutually_recursive_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input mutually_recursive.ae)) @@ -43101,12 +42465,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive.expected - mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target mutually_recursive_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input mutually_recursive.ae)) @@ -43125,12 +42488,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive.expected - mutually_recursive_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps mutually_recursive_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input mutually_recursive.ae)) @@ -43149,12 +42511,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive.expected - mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target mutually_recursive_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input mutually_recursive.ae)) @@ -43173,12 +42534,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - mutually_recursive.expected - mutually_recursive_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps mutually_recursive_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target mutually_recursive_cdcl.output) (deps (:input mutually_recursive.ae)) @@ -43196,10 +42556,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive.expected mutually_recursive_cdcl.output))) + (deps mutually_recursive_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_cdcl.output))) (rule (target mutually_recursive_tableaux_cdcl.output) (deps (:input mutually_recursive.ae)) @@ -43217,12 +42578,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - mutually_recursive.expected - mutually_recursive_tableaux_cdcl.output))) + (deps mutually_recursive_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_tableaux_cdcl.output))) (rule (target mutually_recursive_tableaux.output) (deps (:input mutually_recursive.ae)) @@ -43240,10 +42600,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive.expected mutually_recursive_tableaux.output))) + (deps mutually_recursive_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_tableaux.output))) (rule (target mutually_recursive_legacy.output) (deps (:input mutually_recursive.ae)) @@ -43260,10 +42621,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive.expected mutually_recursive_legacy.output))) + (deps mutually_recursive_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_legacy.output))) (rule (target mutually_recursive_dolmen.output) (deps (:input mutually_recursive.ae)) @@ -43280,10 +42642,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive.expected mutually_recursive_dolmen.output))) + (deps mutually_recursive_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_dolmen.output))) (rule (target mutually_recursive_fpa.output) (deps (:input mutually_recursive.ae)) @@ -43300,10 +42663,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff mutually_recursive.expected mutually_recursive_fpa.output))) + (deps mutually_recursive_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff mutually_recursive.expected mutually_recursive_fpa.output))) (rule (target match_in_terms_ci_cdcl_no_minimal_bj.output) (deps (:input match_in_terms.ae)) @@ -43322,12 +42686,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_in_terms.expected - match_in_terms_ci_cdcl_no_minimal_bj.output))) + (deps match_in_terms_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_ci_cdcl_no_minimal_bj.output))) (rule (target match_in_terms_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input match_in_terms.ae)) @@ -43348,12 +42711,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_in_terms.expected - match_in_terms_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps match_in_terms_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input match_in_terms.ae)) @@ -43373,12 +42735,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_in_terms.expected - match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target match_in_terms_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input match_in_terms.ae)) @@ -43397,12 +42758,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_in_terms.expected - match_in_terms_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps match_in_terms_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input match_in_terms.ae)) @@ -43421,12 +42781,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_in_terms.expected - match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target match_in_terms_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input match_in_terms.ae)) @@ -43445,12 +42804,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_in_terms.expected - match_in_terms_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps match_in_terms_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target match_in_terms_cdcl.output) (deps (:input match_in_terms.ae)) @@ -43468,10 +42826,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_in_terms.expected match_in_terms_cdcl.output))) + (deps match_in_terms_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_cdcl.output))) (rule (target match_in_terms_tableaux_cdcl.output) (deps (:input match_in_terms.ae)) @@ -43489,10 +42848,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_in_terms.expected match_in_terms_tableaux_cdcl.output))) + (deps match_in_terms_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_tableaux_cdcl.output))) (rule (target match_in_terms_tableaux.output) (deps (:input match_in_terms.ae)) @@ -43510,10 +42870,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_in_terms.expected match_in_terms_tableaux.output))) + (deps match_in_terms_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_tableaux.output))) (rule (target match_in_terms_legacy.output) (deps (:input match_in_terms.ae)) @@ -43530,10 +42891,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_in_terms.expected match_in_terms_legacy.output))) + (deps match_in_terms_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_legacy.output))) (rule (target match_in_terms_dolmen.output) (deps (:input match_in_terms.ae)) @@ -43550,10 +42912,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_in_terms.expected match_in_terms_dolmen.output))) + (deps match_in_terms_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_dolmen.output))) (rule (target match_in_terms_fpa.output) (deps (:input match_in_terms.ae)) @@ -43570,10 +42933,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_in_terms.expected match_in_terms_fpa.output))) + (deps match_in_terms_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_in_terms.expected match_in_terms_fpa.output))) (rule (target match_example_0_ci_cdcl_no_minimal_bj.output) (deps (:input match_example_0.ae)) @@ -43592,12 +42956,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example_0.expected - match_example_0_ci_cdcl_no_minimal_bj.output))) + (deps match_example_0_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_ci_cdcl_no_minimal_bj.output))) (rule (target match_example_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input match_example_0.ae)) @@ -43618,12 +42981,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example_0.expected - match_example_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps match_example_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input match_example_0.ae)) @@ -43643,12 +43005,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example_0.expected - match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target match_example_0_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input match_example_0.ae)) @@ -43667,12 +43028,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example_0.expected - match_example_0_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps match_example_0_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input match_example_0.ae)) @@ -43691,12 +43051,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example_0.expected - match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target match_example_0_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input match_example_0.ae)) @@ -43715,12 +43074,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example_0.expected - match_example_0_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps match_example_0_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target match_example_0_cdcl.output) (deps (:input match_example_0.ae)) @@ -43738,10 +43096,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example_0.expected match_example_0_cdcl.output))) + (deps match_example_0_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_cdcl.output))) (rule (target match_example_0_tableaux_cdcl.output) (deps (:input match_example_0.ae)) @@ -43759,10 +43118,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example_0.expected match_example_0_tableaux_cdcl.output))) + (deps match_example_0_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_tableaux_cdcl.output))) (rule (target match_example_0_tableaux.output) (deps (:input match_example_0.ae)) @@ -43780,10 +43140,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example_0.expected match_example_0_tableaux.output))) + (deps match_example_0_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_tableaux.output))) (rule (target match_example_0_legacy.output) (deps (:input match_example_0.ae)) @@ -43800,10 +43161,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example_0.expected match_example_0_legacy.output))) + (deps match_example_0_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_legacy.output))) (rule (target match_example_0_dolmen.output) (deps (:input match_example_0.ae)) @@ -43820,10 +43182,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example_0.expected match_example_0_dolmen.output))) + (deps match_example_0_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_dolmen.output))) (rule (target match_example_0_fpa.output) (deps (:input match_example_0.ae)) @@ -43840,10 +43203,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example_0.expected match_example_0_fpa.output))) + (deps match_example_0_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example_0.expected match_example_0_fpa.output))) (rule (target match_example_ci_cdcl_no_minimal_bj.output) (deps (:input match_example.ae)) @@ -43862,12 +43226,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example.expected - match_example_ci_cdcl_no_minimal_bj.output))) + (deps match_example_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example.expected match_example_ci_cdcl_no_minimal_bj.output))) (rule (target match_example_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input match_example.ae)) @@ -43888,12 +43251,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example.expected - match_example_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps match_example_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example.expected match_example_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input match_example.ae)) @@ -43913,12 +43275,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example.expected - match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example.expected match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target match_example_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input match_example.ae)) @@ -43937,12 +43298,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example.expected - match_example_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps match_example_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example.expected match_example_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input match_example.ae)) @@ -43961,12 +43321,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example.expected - match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example.expected match_example_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target match_example_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input match_example.ae)) @@ -43985,12 +43344,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - match_example.expected - match_example_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps match_example_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff match_example.expected match_example_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target match_example_cdcl.output) (deps (:input match_example.ae)) @@ -44008,10 +43366,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example.expected match_example_cdcl.output))) + (deps match_example_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example.expected match_example_cdcl.output))) (rule (target match_example_tableaux_cdcl.output) (deps (:input match_example.ae)) @@ -44029,10 +43388,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example.expected match_example_tableaux_cdcl.output))) + (deps match_example_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example.expected match_example_tableaux_cdcl.output))) (rule (target match_example_tableaux.output) (deps (:input match_example.ae)) @@ -44050,10 +43410,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example.expected match_example_tableaux.output))) + (deps match_example_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example.expected match_example_tableaux.output))) (rule (target match_example_legacy.output) (deps (:input match_example.ae)) @@ -44070,10 +43431,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example.expected match_example_legacy.output))) + (deps match_example_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example.expected match_example_legacy.output))) (rule (target match_example_dolmen.output) (deps (:input match_example.ae)) @@ -44090,10 +43452,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example.expected match_example_dolmen.output))) + (deps match_example_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example.expected match_example_dolmen.output))) (rule (target match_example_fpa.output) (deps (:input match_example.ae)) @@ -44110,10 +43473,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff match_example.expected match_example_fpa.output))) + (deps match_example_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff match_example.expected match_example_fpa.output))) (rule (target bug-in-typing-destr+recursive-adt_ci_cdcl_no_minimal_bj.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44132,12 +43496,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_ci_cdcl_no_minimal_bj.output))) + (deps bug-in-typing-destr+recursive-adt_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_ci_cdcl_no_minimal_bj.output))) (rule (target bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44158,12 +43521,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44183,12 +43545,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bug-in-typing-destr+recursive-adt_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44207,12 +43568,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bug-in-typing-destr+recursive-adt_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44231,12 +43591,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bug-in-typing-destr+recursive-adt_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44255,12 +43614,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bug-in-typing-destr+recursive-adt_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bug-in-typing-destr+recursive-adt_cdcl.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44278,12 +43636,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_cdcl.output))) + (deps bug-in-typing-destr+recursive-adt_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_cdcl.output))) (rule (target bug-in-typing-destr+recursive-adt_tableaux_cdcl.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44301,12 +43658,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_tableaux_cdcl.output))) + (deps bug-in-typing-destr+recursive-adt_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_tableaux_cdcl.output))) (rule (target bug-in-typing-destr+recursive-adt_tableaux.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44324,12 +43680,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_tableaux.output))) + (deps bug-in-typing-destr+recursive-adt_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_tableaux.output))) (rule (target bug-in-typing-destr+recursive-adt_legacy.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44346,12 +43701,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_legacy.output))) + (deps bug-in-typing-destr+recursive-adt_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_legacy.output))) (rule (target bug-in-typing-destr+recursive-adt_dolmen.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44368,12 +43722,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_dolmen.output))) + (deps bug-in-typing-destr+recursive-adt_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_dolmen.output))) (rule (target bug-in-typing-destr+recursive-adt_fpa.output) (deps (:input bug-in-typing-destr+recursive-adt.ae)) @@ -44390,12 +43743,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bug-in-typing-destr+recursive-adt.expected - bug-in-typing-destr+recursive-adt_fpa.output))) + (deps bug-in-typing-destr+recursive-adt_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bug-in-typing-destr+recursive-adt.expected bug-in-typing-destr+recursive-adt_fpa.output))) (rule (target adts-hidden-recursion_ci_cdcl_no_minimal_bj.output) (deps (:input adts-hidden-recursion.ae)) @@ -44414,12 +43766,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_ci_cdcl_no_minimal_bj.output))) + (deps adts-hidden-recursion_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_ci_cdcl_no_minimal_bj.output))) (rule (target adts-hidden-recursion_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input adts-hidden-recursion.ae)) @@ -44440,12 +43791,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps adts-hidden-recursion_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input adts-hidden-recursion.ae)) @@ -44465,12 +43815,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target adts-hidden-recursion_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input adts-hidden-recursion.ae)) @@ -44489,12 +43838,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps adts-hidden-recursion_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input adts-hidden-recursion.ae)) @@ -44513,12 +43861,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target adts-hidden-recursion_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input adts-hidden-recursion.ae)) @@ -44537,12 +43884,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps adts-hidden-recursion_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target adts-hidden-recursion_cdcl.output) (deps (:input adts-hidden-recursion.ae)) @@ -44560,10 +43906,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff adts-hidden-recursion.expected adts-hidden-recursion_cdcl.output))) + (deps adts-hidden-recursion_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_cdcl.output))) (rule (target adts-hidden-recursion_tableaux_cdcl.output) (deps (:input adts-hidden-recursion.ae)) @@ -44581,12 +43928,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_tableaux_cdcl.output))) + (deps adts-hidden-recursion_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_tableaux_cdcl.output))) (rule (target adts-hidden-recursion_tableaux.output) (deps (:input adts-hidden-recursion.ae)) @@ -44604,12 +43950,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_tableaux.output))) + (deps adts-hidden-recursion_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_tableaux.output))) (rule (target adts-hidden-recursion_legacy.output) (deps (:input adts-hidden-recursion.ae)) @@ -44626,12 +43971,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_legacy.output))) + (deps adts-hidden-recursion_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_legacy.output))) (rule (target adts-hidden-recursion_dolmen.output) (deps (:input adts-hidden-recursion.ae)) @@ -44648,12 +43992,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - adts-hidden-recursion.expected - adts-hidden-recursion_dolmen.output))) + (deps adts-hidden-recursion_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_dolmen.output))) (rule (target adts-hidden-recursion_fpa.output) (deps (:input adts-hidden-recursion.ae)) @@ -44670,10 +44013,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff adts-hidden-recursion.expected adts-hidden-recursion_fpa.output)))) + (deps adts-hidden-recursion_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff adts-hidden-recursion.expected adts-hidden-recursion_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -44697,12 +44041,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polynomes002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polynomes002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polynomes002.ae)) @@ -44723,12 +44066,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polynomes002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polynomes002.ae)) @@ -44748,12 +44090,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polynomes002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polynomes002.ae)) @@ -44772,12 +44113,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polynomes002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polynomes002.ae)) @@ -44796,12 +44136,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polynomes002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polynomes002.ae)) @@ -44820,12 +44159,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polynomes002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polynomes002_cdcl.output) (deps (:input testfile-polynomes002.ae)) @@ -44843,10 +44181,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-polynomes002.expected testfile-polynomes002_cdcl.output))) + (deps testfile-polynomes002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_cdcl.output))) (rule (target testfile-polynomes002_tableaux_cdcl.output) (deps (:input testfile-polynomes002.ae)) @@ -44864,12 +44203,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_tableaux_cdcl.output))) + (deps testfile-polynomes002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_tableaux_cdcl.output))) (rule (target testfile-polynomes002_tableaux.output) (deps (:input testfile-polynomes002.ae)) @@ -44887,12 +44225,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_tableaux.output))) + (deps testfile-polynomes002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_tableaux.output))) (rule (target testfile-polynomes002_legacy.output) (deps (:input testfile-polynomes002.ae)) @@ -44909,12 +44246,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_legacy.output))) + (deps testfile-polynomes002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_legacy.output))) (rule (target testfile-polynomes002_dolmen.output) (deps (:input testfile-polynomes002.ae)) @@ -44931,12 +44267,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes002.expected - testfile-polynomes002_dolmen.output))) + (deps testfile-polynomes002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_dolmen.output))) (rule (target testfile-polynomes002_fpa.output) (deps (:input testfile-polynomes002.ae)) @@ -44953,10 +44288,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-polynomes002.expected testfile-polynomes002_fpa.output))) + (deps testfile-polynomes002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes002.expected testfile-polynomes002_fpa.output))) (rule (target testfile-polynomes001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polynomes001.ae)) @@ -44975,12 +44311,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polynomes001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polynomes001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polynomes001.ae)) @@ -45001,12 +44336,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polynomes001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polynomes001.ae)) @@ -45026,12 +44360,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polynomes001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polynomes001.ae)) @@ -45050,12 +44383,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polynomes001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polynomes001.ae)) @@ -45074,12 +44406,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polynomes001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polynomes001.ae)) @@ -45098,12 +44429,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polynomes001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polynomes001_cdcl.output) (deps (:input testfile-polynomes001.ae)) @@ -45121,10 +44451,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-polynomes001.expected testfile-polynomes001_cdcl.output))) + (deps testfile-polynomes001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_cdcl.output))) (rule (target testfile-polynomes001_tableaux_cdcl.output) (deps (:input testfile-polynomes001.ae)) @@ -45142,12 +44473,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_tableaux_cdcl.output))) + (deps testfile-polynomes001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_tableaux_cdcl.output))) (rule (target testfile-polynomes001_tableaux.output) (deps (:input testfile-polynomes001.ae)) @@ -45165,12 +44495,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_tableaux.output))) + (deps testfile-polynomes001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_tableaux.output))) (rule (target testfile-polynomes001_legacy.output) (deps (:input testfile-polynomes001.ae)) @@ -45187,12 +44516,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_legacy.output))) + (deps testfile-polynomes001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_legacy.output))) (rule (target testfile-polynomes001_dolmen.output) (deps (:input testfile-polynomes001.ae)) @@ -45209,12 +44537,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polynomes001.expected - testfile-polynomes001_dolmen.output))) + (deps testfile-polynomes001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_dolmen.output))) (rule (target testfile-polynomes001_fpa.output) (deps (:input testfile-polynomes001.ae)) @@ -45231,10 +44558,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-polynomes001.expected testfile-polynomes001_fpa.output))) + (deps testfile-polynomes001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polynomes001.expected testfile-polynomes001_fpa.output))) (rule (target testfile-arith083_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith083.ae)) @@ -45253,12 +44581,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith083.expected - testfile-arith083_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith083_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith083.ae)) @@ -45279,12 +44606,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith083.expected - testfile-arith083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith083.ae)) @@ -45304,12 +44630,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith083.expected - testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith083_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith083.ae)) @@ -45328,12 +44653,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith083.expected - testfile-arith083_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith083_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith083.ae)) @@ -45352,12 +44676,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith083.expected - testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith083_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith083.ae)) @@ -45376,12 +44699,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith083.expected - testfile-arith083_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith083_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith083_cdcl.output) (deps (:input testfile-arith083.ae)) @@ -45399,10 +44721,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith083.expected testfile-arith083_cdcl.output))) + (deps testfile-arith083_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_cdcl.output))) (rule (target testfile-arith083_tableaux_cdcl.output) (deps (:input testfile-arith083.ae)) @@ -45420,12 +44743,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith083.expected - testfile-arith083_tableaux_cdcl.output))) + (deps testfile-arith083_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_tableaux_cdcl.output))) (rule (target testfile-arith083_tableaux.output) (deps (:input testfile-arith083.ae)) @@ -45443,10 +44765,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith083.expected testfile-arith083_tableaux.output))) + (deps testfile-arith083_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_tableaux.output))) (rule (target testfile-arith083_legacy.output) (deps (:input testfile-arith083.ae)) @@ -45463,10 +44786,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith083.expected testfile-arith083_legacy.output))) + (deps testfile-arith083_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_legacy.output))) (rule (target testfile-arith083_dolmen.output) (deps (:input testfile-arith083.ae)) @@ -45483,10 +44807,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith083.expected testfile-arith083_dolmen.output))) + (deps testfile-arith083_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_dolmen.output))) (rule (target testfile-arith083_fpa.output) (deps (:input testfile-arith083.ae)) @@ -45503,10 +44828,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith083.expected testfile-arith083_fpa.output))) + (deps testfile-arith083_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith083.expected testfile-arith083_fpa.output))) (rule (target testfile-arith082_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith082.ae)) @@ -45525,12 +44851,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith082.expected - testfile-arith082_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith082_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith082.ae)) @@ -45551,12 +44876,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith082.expected - testfile-arith082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith082.ae)) @@ -45576,12 +44900,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith082.expected - testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith082_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith082.ae)) @@ -45600,12 +44923,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith082.expected - testfile-arith082_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith082_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith082.ae)) @@ -45624,12 +44946,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith082.expected - testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith082_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith082.ae)) @@ -45648,12 +44969,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith082.expected - testfile-arith082_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith082_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith082_cdcl.output) (deps (:input testfile-arith082.ae)) @@ -45671,10 +44991,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith082.expected testfile-arith082_cdcl.output))) + (deps testfile-arith082_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_cdcl.output))) (rule (target testfile-arith082_tableaux_cdcl.output) (deps (:input testfile-arith082.ae)) @@ -45692,12 +45013,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith082.expected - testfile-arith082_tableaux_cdcl.output))) + (deps testfile-arith082_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_tableaux_cdcl.output))) (rule (target testfile-arith082_tableaux.output) (deps (:input testfile-arith082.ae)) @@ -45715,10 +45035,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith082.expected testfile-arith082_tableaux.output))) + (deps testfile-arith082_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_tableaux.output))) (rule (target testfile-arith082_legacy.output) (deps (:input testfile-arith082.ae)) @@ -45735,10 +45056,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith082.expected testfile-arith082_legacy.output))) + (deps testfile-arith082_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_legacy.output))) (rule (target testfile-arith082_dolmen.output) (deps (:input testfile-arith082.ae)) @@ -45755,10 +45077,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith082.expected testfile-arith082_dolmen.output))) + (deps testfile-arith082_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_dolmen.output))) (rule (target testfile-arith082_fpa.output) (deps (:input testfile-arith082.ae)) @@ -45775,10 +45098,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith082.expected testfile-arith082_fpa.output))) + (deps testfile-arith082_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith082.expected testfile-arith082_fpa.output))) (rule (target testfile-arith081_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith081.ae)) @@ -45797,12 +45121,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith081.expected - testfile-arith081_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith081_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith081.ae)) @@ -45823,12 +45146,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith081.expected - testfile-arith081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith081.ae)) @@ -45848,12 +45170,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith081.expected - testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith081_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith081.ae)) @@ -45872,12 +45193,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith081.expected - testfile-arith081_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith081_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith081.ae)) @@ -45896,12 +45216,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith081.expected - testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith081_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith081.ae)) @@ -45920,12 +45239,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith081.expected - testfile-arith081_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith081_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith081_cdcl.output) (deps (:input testfile-arith081.ae)) @@ -45943,10 +45261,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith081.expected testfile-arith081_cdcl.output))) + (deps testfile-arith081_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_cdcl.output))) (rule (target testfile-arith081_tableaux_cdcl.output) (deps (:input testfile-arith081.ae)) @@ -45964,12 +45283,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith081.expected - testfile-arith081_tableaux_cdcl.output))) + (deps testfile-arith081_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_tableaux_cdcl.output))) (rule (target testfile-arith081_tableaux.output) (deps (:input testfile-arith081.ae)) @@ -45987,10 +45305,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith081.expected testfile-arith081_tableaux.output))) + (deps testfile-arith081_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_tableaux.output))) (rule (target testfile-arith081_legacy.output) (deps (:input testfile-arith081.ae)) @@ -46007,10 +45326,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith081.expected testfile-arith081_legacy.output))) + (deps testfile-arith081_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_legacy.output))) (rule (target testfile-arith081_dolmen.output) (deps (:input testfile-arith081.ae)) @@ -46027,10 +45347,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith081.expected testfile-arith081_dolmen.output))) + (deps testfile-arith081_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_dolmen.output))) (rule (target testfile-arith081_fpa.output) (deps (:input testfile-arith081.ae)) @@ -46047,10 +45368,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith081.expected testfile-arith081_fpa.output))) + (deps testfile-arith081_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith081.expected testfile-arith081_fpa.output))) (rule (target testfile-arith080_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith080.ae)) @@ -46069,12 +45391,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith080.expected - testfile-arith080_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith080_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith080.ae)) @@ -46095,12 +45416,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith080.expected - testfile-arith080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith080.ae)) @@ -46120,12 +45440,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith080.expected - testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith080_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith080.ae)) @@ -46144,12 +45463,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith080.expected - testfile-arith080_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith080_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith080.ae)) @@ -46168,12 +45486,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith080.expected - testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith080_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith080.ae)) @@ -46192,12 +45509,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith080.expected - testfile-arith080_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith080_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith080_cdcl.output) (deps (:input testfile-arith080.ae)) @@ -46215,10 +45531,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith080.expected testfile-arith080_cdcl.output))) + (deps testfile-arith080_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_cdcl.output))) (rule (target testfile-arith080_tableaux_cdcl.output) (deps (:input testfile-arith080.ae)) @@ -46236,12 +45553,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith080.expected - testfile-arith080_tableaux_cdcl.output))) + (deps testfile-arith080_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_tableaux_cdcl.output))) (rule (target testfile-arith080_tableaux.output) (deps (:input testfile-arith080.ae)) @@ -46259,10 +45575,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith080.expected testfile-arith080_tableaux.output))) + (deps testfile-arith080_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_tableaux.output))) (rule (target testfile-arith080_legacy.output) (deps (:input testfile-arith080.ae)) @@ -46279,10 +45596,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith080.expected testfile-arith080_legacy.output))) + (deps testfile-arith080_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_legacy.output))) (rule (target testfile-arith080_dolmen.output) (deps (:input testfile-arith080.ae)) @@ -46299,10 +45617,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith080.expected testfile-arith080_dolmen.output))) + (deps testfile-arith080_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_dolmen.output))) (rule (target testfile-arith080_fpa.output) (deps (:input testfile-arith080.ae)) @@ -46319,10 +45638,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith080.expected testfile-arith080_fpa.output))) + (deps testfile-arith080_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith080.expected testfile-arith080_fpa.output))) (rule (target testfile-arith079_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith079.ae)) @@ -46341,12 +45661,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith079.expected - testfile-arith079_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith079_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith079.ae)) @@ -46367,12 +45686,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith079.expected - testfile-arith079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith079.ae)) @@ -46392,12 +45710,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith079.expected - testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith079_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith079.ae)) @@ -46416,12 +45733,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith079.expected - testfile-arith079_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith079_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith079.ae)) @@ -46440,12 +45756,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith079.expected - testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith079_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith079.ae)) @@ -46464,12 +45779,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith079.expected - testfile-arith079_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith079_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith079_cdcl.output) (deps (:input testfile-arith079.ae)) @@ -46487,10 +45801,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith079.expected testfile-arith079_cdcl.output))) + (deps testfile-arith079_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_cdcl.output))) (rule (target testfile-arith079_tableaux_cdcl.output) (deps (:input testfile-arith079.ae)) @@ -46508,12 +45823,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith079.expected - testfile-arith079_tableaux_cdcl.output))) + (deps testfile-arith079_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_tableaux_cdcl.output))) (rule (target testfile-arith079_tableaux.output) (deps (:input testfile-arith079.ae)) @@ -46531,10 +45845,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith079.expected testfile-arith079_tableaux.output))) + (deps testfile-arith079_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_tableaux.output))) (rule (target testfile-arith079_legacy.output) (deps (:input testfile-arith079.ae)) @@ -46551,10 +45866,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith079.expected testfile-arith079_legacy.output))) + (deps testfile-arith079_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_legacy.output))) (rule (target testfile-arith079_dolmen.output) (deps (:input testfile-arith079.ae)) @@ -46571,10 +45887,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith079.expected testfile-arith079_dolmen.output))) + (deps testfile-arith079_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_dolmen.output))) (rule (target testfile-arith079_fpa.output) (deps (:input testfile-arith079.ae)) @@ -46591,10 +45908,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith079.expected testfile-arith079_fpa.output))) + (deps testfile-arith079_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith079.expected testfile-arith079_fpa.output))) (rule (target testfile-arith078_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith078.ae)) @@ -46613,12 +45931,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith078.expected - testfile-arith078_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith078_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith078.ae)) @@ -46639,12 +45956,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith078.expected - testfile-arith078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith078.ae)) @@ -46664,12 +45980,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith078.expected - testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith078_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith078.ae)) @@ -46688,12 +46003,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith078.expected - testfile-arith078_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith078_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith078.ae)) @@ -46712,12 +46026,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith078.expected - testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith078_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith078.ae)) @@ -46736,12 +46049,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith078.expected - testfile-arith078_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith078_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith078_cdcl.output) (deps (:input testfile-arith078.ae)) @@ -46759,10 +46071,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith078.expected testfile-arith078_cdcl.output))) + (deps testfile-arith078_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_cdcl.output))) (rule (target testfile-arith078_tableaux_cdcl.output) (deps (:input testfile-arith078.ae)) @@ -46780,12 +46093,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith078.expected - testfile-arith078_tableaux_cdcl.output))) + (deps testfile-arith078_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_tableaux_cdcl.output))) (rule (target testfile-arith078_tableaux.output) (deps (:input testfile-arith078.ae)) @@ -46803,10 +46115,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith078.expected testfile-arith078_tableaux.output))) + (deps testfile-arith078_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_tableaux.output))) (rule (target testfile-arith078_legacy.output) (deps (:input testfile-arith078.ae)) @@ -46823,10 +46136,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith078.expected testfile-arith078_legacy.output))) + (deps testfile-arith078_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_legacy.output))) (rule (target testfile-arith078_dolmen.output) (deps (:input testfile-arith078.ae)) @@ -46843,10 +46157,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith078.expected testfile-arith078_dolmen.output))) + (deps testfile-arith078_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_dolmen.output))) (rule (target testfile-arith078_fpa.output) (deps (:input testfile-arith078.ae)) @@ -46863,10 +46178,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith078.expected testfile-arith078_fpa.output))) + (deps testfile-arith078_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith078.expected testfile-arith078_fpa.output))) (rule (target testfile-arith077_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith077.ae)) @@ -46885,12 +46201,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith077.expected - testfile-arith077_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith077_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith077.ae)) @@ -46911,12 +46226,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith077.expected - testfile-arith077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith077.ae)) @@ -46936,12 +46250,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith077.expected - testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith077_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith077.ae)) @@ -46960,12 +46273,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith077.expected - testfile-arith077_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith077_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith077.ae)) @@ -46984,12 +46296,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith077.expected - testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith077_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith077.ae)) @@ -47008,12 +46319,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith077.expected - testfile-arith077_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith077_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith077_cdcl.output) (deps (:input testfile-arith077.ae)) @@ -47031,10 +46341,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith077.expected testfile-arith077_cdcl.output))) + (deps testfile-arith077_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_cdcl.output))) (rule (target testfile-arith077_tableaux_cdcl.output) (deps (:input testfile-arith077.ae)) @@ -47052,12 +46363,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith077.expected - testfile-arith077_tableaux_cdcl.output))) + (deps testfile-arith077_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_tableaux_cdcl.output))) (rule (target testfile-arith077_tableaux.output) (deps (:input testfile-arith077.ae)) @@ -47075,10 +46385,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith077.expected testfile-arith077_tableaux.output))) + (deps testfile-arith077_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_tableaux.output))) (rule (target testfile-arith077_legacy.output) (deps (:input testfile-arith077.ae)) @@ -47095,10 +46406,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith077.expected testfile-arith077_legacy.output))) + (deps testfile-arith077_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_legacy.output))) (rule (target testfile-arith077_dolmen.output) (deps (:input testfile-arith077.ae)) @@ -47115,10 +46427,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith077.expected testfile-arith077_dolmen.output))) + (deps testfile-arith077_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_dolmen.output))) (rule (target testfile-arith077_fpa.output) (deps (:input testfile-arith077.ae)) @@ -47135,10 +46448,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith077.expected testfile-arith077_fpa.output))) + (deps testfile-arith077_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith077.expected testfile-arith077_fpa.output))) (rule (target testfile-arith076_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith076.ae)) @@ -47157,12 +46471,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith076.expected - testfile-arith076_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith076_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith076.ae)) @@ -47183,12 +46496,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith076.expected - testfile-arith076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith076.ae)) @@ -47208,12 +46520,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith076.expected - testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith076_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith076.ae)) @@ -47232,12 +46543,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith076.expected - testfile-arith076_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith076_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith076.ae)) @@ -47256,12 +46566,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith076.expected - testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith076_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith076.ae)) @@ -47280,12 +46589,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith076.expected - testfile-arith076_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith076_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith076_cdcl.output) (deps (:input testfile-arith076.ae)) @@ -47303,10 +46611,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith076.expected testfile-arith076_cdcl.output))) + (deps testfile-arith076_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_cdcl.output))) (rule (target testfile-arith076_tableaux_cdcl.output) (deps (:input testfile-arith076.ae)) @@ -47324,12 +46633,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith076.expected - testfile-arith076_tableaux_cdcl.output))) + (deps testfile-arith076_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_tableaux_cdcl.output))) (rule (target testfile-arith076_tableaux.output) (deps (:input testfile-arith076.ae)) @@ -47347,10 +46655,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith076.expected testfile-arith076_tableaux.output))) + (deps testfile-arith076_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_tableaux.output))) (rule (target testfile-arith076_legacy.output) (deps (:input testfile-arith076.ae)) @@ -47367,10 +46676,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith076.expected testfile-arith076_legacy.output))) + (deps testfile-arith076_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_legacy.output))) (rule (target testfile-arith076_dolmen.output) (deps (:input testfile-arith076.ae)) @@ -47387,10 +46697,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith076.expected testfile-arith076_dolmen.output))) + (deps testfile-arith076_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_dolmen.output))) (rule (target testfile-arith076_fpa.output) (deps (:input testfile-arith076.ae)) @@ -47407,10 +46718,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith076.expected testfile-arith076_fpa.output))) + (deps testfile-arith076_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith076.expected testfile-arith076_fpa.output))) (rule (target testfile-arith075_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith075.ae)) @@ -47429,12 +46741,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith075.expected - testfile-arith075_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith075_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith075.ae)) @@ -47455,12 +46766,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith075.expected - testfile-arith075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith075.ae)) @@ -47480,12 +46790,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith075.expected - testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith075_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith075.ae)) @@ -47504,12 +46813,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith075.expected - testfile-arith075_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith075_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith075.ae)) @@ -47528,12 +46836,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith075.expected - testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith075_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith075.ae)) @@ -47552,12 +46859,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith075.expected - testfile-arith075_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith075_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith075_cdcl.output) (deps (:input testfile-arith075.ae)) @@ -47575,10 +46881,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith075.expected testfile-arith075_cdcl.output))) + (deps testfile-arith075_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_cdcl.output))) (rule (target testfile-arith075_tableaux_cdcl.output) (deps (:input testfile-arith075.ae)) @@ -47596,12 +46903,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith075.expected - testfile-arith075_tableaux_cdcl.output))) + (deps testfile-arith075_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_tableaux_cdcl.output))) (rule (target testfile-arith075_tableaux.output) (deps (:input testfile-arith075.ae)) @@ -47619,10 +46925,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith075.expected testfile-arith075_tableaux.output))) + (deps testfile-arith075_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_tableaux.output))) (rule (target testfile-arith075_legacy.output) (deps (:input testfile-arith075.ae)) @@ -47639,10 +46946,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith075.expected testfile-arith075_legacy.output))) + (deps testfile-arith075_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_legacy.output))) (rule (target testfile-arith075_dolmen.output) (deps (:input testfile-arith075.ae)) @@ -47659,10 +46967,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith075.expected testfile-arith075_dolmen.output))) + (deps testfile-arith075_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_dolmen.output))) (rule (target testfile-arith075_fpa.output) (deps (:input testfile-arith075.ae)) @@ -47679,10 +46988,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith075.expected testfile-arith075_fpa.output))) + (deps testfile-arith075_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith075.expected testfile-arith075_fpa.output))) (rule (target testfile-arith074_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith074.ae)) @@ -47701,12 +47011,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith074.expected - testfile-arith074_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith074_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith074.ae)) @@ -47727,12 +47036,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith074.expected - testfile-arith074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith074.ae)) @@ -47752,12 +47060,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith074.expected - testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith074_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith074.ae)) @@ -47776,12 +47083,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith074.expected - testfile-arith074_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith074_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith074.ae)) @@ -47800,12 +47106,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith074.expected - testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith074_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith074.ae)) @@ -47824,12 +47129,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith074.expected - testfile-arith074_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith074_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith074_cdcl.output) (deps (:input testfile-arith074.ae)) @@ -47847,10 +47151,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith074.expected testfile-arith074_cdcl.output))) + (deps testfile-arith074_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_cdcl.output))) (rule (target testfile-arith074_tableaux_cdcl.output) (deps (:input testfile-arith074.ae)) @@ -47868,12 +47173,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith074.expected - testfile-arith074_tableaux_cdcl.output))) + (deps testfile-arith074_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_tableaux_cdcl.output))) (rule (target testfile-arith074_tableaux.output) (deps (:input testfile-arith074.ae)) @@ -47891,10 +47195,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith074.expected testfile-arith074_tableaux.output))) + (deps testfile-arith074_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_tableaux.output))) (rule (target testfile-arith074_legacy.output) (deps (:input testfile-arith074.ae)) @@ -47911,10 +47216,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith074.expected testfile-arith074_legacy.output))) + (deps testfile-arith074_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_legacy.output))) (rule (target testfile-arith074_dolmen.output) (deps (:input testfile-arith074.ae)) @@ -47931,10 +47237,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith074.expected testfile-arith074_dolmen.output))) + (deps testfile-arith074_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_dolmen.output))) (rule (target testfile-arith074_fpa.output) (deps (:input testfile-arith074.ae)) @@ -47951,10 +47258,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith074.expected testfile-arith074_fpa.output))) + (deps testfile-arith074_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith074.expected testfile-arith074_fpa.output))) (rule (target testfile-arith073_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith073.ae)) @@ -47973,12 +47281,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith073.expected - testfile-arith073_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith073_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith073.ae)) @@ -47999,12 +47306,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith073.expected - testfile-arith073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith073.ae)) @@ -48024,12 +47330,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith073.expected - testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith073_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith073.ae)) @@ -48048,12 +47353,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith073.expected - testfile-arith073_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith073_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith073.ae)) @@ -48072,12 +47376,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith073.expected - testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith073_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith073.ae)) @@ -48096,12 +47399,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith073.expected - testfile-arith073_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith073_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith073_cdcl.output) (deps (:input testfile-arith073.ae)) @@ -48119,10 +47421,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith073.expected testfile-arith073_cdcl.output))) + (deps testfile-arith073_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_cdcl.output))) (rule (target testfile-arith073_tableaux_cdcl.output) (deps (:input testfile-arith073.ae)) @@ -48140,12 +47443,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith073.expected - testfile-arith073_tableaux_cdcl.output))) + (deps testfile-arith073_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_tableaux_cdcl.output))) (rule (target testfile-arith073_tableaux.output) (deps (:input testfile-arith073.ae)) @@ -48163,10 +47465,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith073.expected testfile-arith073_tableaux.output))) + (deps testfile-arith073_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_tableaux.output))) (rule (target testfile-arith073_legacy.output) (deps (:input testfile-arith073.ae)) @@ -48183,10 +47486,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith073.expected testfile-arith073_legacy.output))) + (deps testfile-arith073_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_legacy.output))) (rule (target testfile-arith073_dolmen.output) (deps (:input testfile-arith073.ae)) @@ -48203,10 +47507,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith073.expected testfile-arith073_dolmen.output))) + (deps testfile-arith073_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_dolmen.output))) (rule (target testfile-arith073_fpa.output) (deps (:input testfile-arith073.ae)) @@ -48223,10 +47528,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith073.expected testfile-arith073_fpa.output))) + (deps testfile-arith073_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith073.expected testfile-arith073_fpa.output))) (rule (target testfile-arith072_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith072.ae)) @@ -48245,12 +47551,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith072.expected - testfile-arith072_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith072_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith072.ae)) @@ -48271,12 +47576,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith072.expected - testfile-arith072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith072.ae)) @@ -48296,12 +47600,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith072.expected - testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith072_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith072.ae)) @@ -48320,12 +47623,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith072.expected - testfile-arith072_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith072_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith072.ae)) @@ -48344,12 +47646,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith072.expected - testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith072_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith072.ae)) @@ -48368,12 +47669,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith072.expected - testfile-arith072_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith072_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith072_cdcl.output) (deps (:input testfile-arith072.ae)) @@ -48391,10 +47691,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith072.expected testfile-arith072_cdcl.output))) + (deps testfile-arith072_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_cdcl.output))) (rule (target testfile-arith072_tableaux_cdcl.output) (deps (:input testfile-arith072.ae)) @@ -48412,12 +47713,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith072.expected - testfile-arith072_tableaux_cdcl.output))) + (deps testfile-arith072_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_tableaux_cdcl.output))) (rule (target testfile-arith072_tableaux.output) (deps (:input testfile-arith072.ae)) @@ -48435,10 +47735,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith072.expected testfile-arith072_tableaux.output))) + (deps testfile-arith072_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_tableaux.output))) (rule (target testfile-arith072_legacy.output) (deps (:input testfile-arith072.ae)) @@ -48455,10 +47756,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith072.expected testfile-arith072_legacy.output))) + (deps testfile-arith072_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_legacy.output))) (rule (target testfile-arith072_dolmen.output) (deps (:input testfile-arith072.ae)) @@ -48475,10 +47777,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith072.expected testfile-arith072_dolmen.output))) + (deps testfile-arith072_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_dolmen.output))) (rule (target testfile-arith072_fpa.output) (deps (:input testfile-arith072.ae)) @@ -48495,10 +47798,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith072.expected testfile-arith072_fpa.output))) + (deps testfile-arith072_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith072.expected testfile-arith072_fpa.output))) (rule (target testfile-arith071_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith071.ae)) @@ -48517,12 +47821,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith071.expected - testfile-arith071_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith071_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith071.ae)) @@ -48543,12 +47846,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith071.expected - testfile-arith071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith071.ae)) @@ -48568,12 +47870,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith071.expected - testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith071_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith071.ae)) @@ -48592,12 +47893,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith071.expected - testfile-arith071_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith071_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith071.ae)) @@ -48616,12 +47916,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith071.expected - testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith071_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith071.ae)) @@ -48640,12 +47939,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith071.expected - testfile-arith071_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith071_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith071_cdcl.output) (deps (:input testfile-arith071.ae)) @@ -48663,10 +47961,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith071.expected testfile-arith071_cdcl.output))) + (deps testfile-arith071_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_cdcl.output))) (rule (target testfile-arith071_tableaux_cdcl.output) (deps (:input testfile-arith071.ae)) @@ -48684,12 +47983,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith071.expected - testfile-arith071_tableaux_cdcl.output))) + (deps testfile-arith071_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_tableaux_cdcl.output))) (rule (target testfile-arith071_tableaux.output) (deps (:input testfile-arith071.ae)) @@ -48707,10 +48005,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith071.expected testfile-arith071_tableaux.output))) + (deps testfile-arith071_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_tableaux.output))) (rule (target testfile-arith071_legacy.output) (deps (:input testfile-arith071.ae)) @@ -48727,10 +48026,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith071.expected testfile-arith071_legacy.output))) + (deps testfile-arith071_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_legacy.output))) (rule (target testfile-arith071_dolmen.output) (deps (:input testfile-arith071.ae)) @@ -48747,10 +48047,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith071.expected testfile-arith071_dolmen.output))) + (deps testfile-arith071_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_dolmen.output))) (rule (target testfile-arith071_fpa.output) (deps (:input testfile-arith071.ae)) @@ -48767,10 +48068,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith071.expected testfile-arith071_fpa.output))) + (deps testfile-arith071_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith071.expected testfile-arith071_fpa.output))) (rule (target testfile-arith070_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith070.ae)) @@ -48789,12 +48091,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith070.expected - testfile-arith070_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith070_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith070.ae)) @@ -48815,12 +48116,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith070.expected - testfile-arith070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith070.ae)) @@ -48840,12 +48140,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith070.expected - testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith070_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith070.ae)) @@ -48864,12 +48163,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith070.expected - testfile-arith070_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith070_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith070.ae)) @@ -48888,12 +48186,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith070.expected - testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith070_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith070.ae)) @@ -48912,12 +48209,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith070.expected - testfile-arith070_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith070_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith070_cdcl.output) (deps (:input testfile-arith070.ae)) @@ -48935,10 +48231,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith070.expected testfile-arith070_cdcl.output))) + (deps testfile-arith070_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_cdcl.output))) (rule (target testfile-arith070_tableaux_cdcl.output) (deps (:input testfile-arith070.ae)) @@ -48956,12 +48253,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith070.expected - testfile-arith070_tableaux_cdcl.output))) + (deps testfile-arith070_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_tableaux_cdcl.output))) (rule (target testfile-arith070_tableaux.output) (deps (:input testfile-arith070.ae)) @@ -48979,10 +48275,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith070.expected testfile-arith070_tableaux.output))) + (deps testfile-arith070_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_tableaux.output))) (rule (target testfile-arith070_legacy.output) (deps (:input testfile-arith070.ae)) @@ -48999,10 +48296,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith070.expected testfile-arith070_legacy.output))) + (deps testfile-arith070_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_legacy.output))) (rule (target testfile-arith070_dolmen.output) (deps (:input testfile-arith070.ae)) @@ -49019,10 +48317,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith070.expected testfile-arith070_dolmen.output))) + (deps testfile-arith070_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_dolmen.output))) (rule (target testfile-arith070_fpa.output) (deps (:input testfile-arith070.ae)) @@ -49039,10 +48338,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith070.expected testfile-arith070_fpa.output))) + (deps testfile-arith070_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith070.expected testfile-arith070_fpa.output))) (rule (target testfile-arith069_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith069.ae)) @@ -49061,12 +48361,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith069.expected - testfile-arith069_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith069_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith069.ae)) @@ -49087,12 +48386,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith069.expected - testfile-arith069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith069.ae)) @@ -49112,12 +48410,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith069.expected - testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith069_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith069.ae)) @@ -49136,12 +48433,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith069.expected - testfile-arith069_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith069_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith069.ae)) @@ -49160,12 +48456,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith069.expected - testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith069_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith069.ae)) @@ -49184,12 +48479,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith069.expected - testfile-arith069_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith069_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith069_cdcl.output) (deps (:input testfile-arith069.ae)) @@ -49207,10 +48501,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith069.expected testfile-arith069_cdcl.output))) + (deps testfile-arith069_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_cdcl.output))) (rule (target testfile-arith069_tableaux_cdcl.output) (deps (:input testfile-arith069.ae)) @@ -49228,12 +48523,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith069.expected - testfile-arith069_tableaux_cdcl.output))) + (deps testfile-arith069_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_tableaux_cdcl.output))) (rule (target testfile-arith069_tableaux.output) (deps (:input testfile-arith069.ae)) @@ -49251,10 +48545,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith069.expected testfile-arith069_tableaux.output))) + (deps testfile-arith069_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_tableaux.output))) (rule (target testfile-arith069_legacy.output) (deps (:input testfile-arith069.ae)) @@ -49271,10 +48566,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith069.expected testfile-arith069_legacy.output))) + (deps testfile-arith069_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_legacy.output))) (rule (target testfile-arith069_dolmen.output) (deps (:input testfile-arith069.ae)) @@ -49291,10 +48587,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith069.expected testfile-arith069_dolmen.output))) + (deps testfile-arith069_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_dolmen.output))) (rule (target testfile-arith069_fpa.output) (deps (:input testfile-arith069.ae)) @@ -49311,10 +48608,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith069.expected testfile-arith069_fpa.output))) + (deps testfile-arith069_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith069.expected testfile-arith069_fpa.output))) (rule (target testfile-arith068_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith068.ae)) @@ -49333,12 +48631,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith068.expected - testfile-arith068_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith068_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith068.ae)) @@ -49359,12 +48656,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith068.expected - testfile-arith068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith068.ae)) @@ -49384,12 +48680,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith068.expected - testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith068_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith068.ae)) @@ -49408,12 +48703,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith068.expected - testfile-arith068_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith068_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith068.ae)) @@ -49432,12 +48726,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith068.expected - testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith068_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith068.ae)) @@ -49456,12 +48749,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith068.expected - testfile-arith068_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith068_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith068_cdcl.output) (deps (:input testfile-arith068.ae)) @@ -49479,10 +48771,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith068.expected testfile-arith068_cdcl.output))) + (deps testfile-arith068_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_cdcl.output))) (rule (target testfile-arith068_tableaux_cdcl.output) (deps (:input testfile-arith068.ae)) @@ -49500,12 +48793,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith068.expected - testfile-arith068_tableaux_cdcl.output))) + (deps testfile-arith068_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_tableaux_cdcl.output))) (rule (target testfile-arith068_tableaux.output) (deps (:input testfile-arith068.ae)) @@ -49523,10 +48815,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith068.expected testfile-arith068_tableaux.output))) + (deps testfile-arith068_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_tableaux.output))) (rule (target testfile-arith068_legacy.output) (deps (:input testfile-arith068.ae)) @@ -49543,10 +48836,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith068.expected testfile-arith068_legacy.output))) + (deps testfile-arith068_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_legacy.output))) (rule (target testfile-arith068_dolmen.output) (deps (:input testfile-arith068.ae)) @@ -49563,10 +48857,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith068.expected testfile-arith068_dolmen.output))) + (deps testfile-arith068_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_dolmen.output))) (rule (target testfile-arith068_fpa.output) (deps (:input testfile-arith068.ae)) @@ -49583,10 +48878,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith068.expected testfile-arith068_fpa.output))) + (deps testfile-arith068_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith068.expected testfile-arith068_fpa.output))) (rule (target testfile-arith067_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith067.ae)) @@ -49605,12 +48901,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith067.expected - testfile-arith067_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith067_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith067.ae)) @@ -49631,12 +48926,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith067.expected - testfile-arith067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith067.ae)) @@ -49656,12 +48950,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith067.expected - testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith067_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith067.ae)) @@ -49680,12 +48973,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith067.expected - testfile-arith067_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith067_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith067.ae)) @@ -49704,12 +48996,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith067.expected - testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith067_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith067.ae)) @@ -49728,12 +49019,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith067.expected - testfile-arith067_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith067_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith067_cdcl.output) (deps (:input testfile-arith067.ae)) @@ -49751,10 +49041,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith067.expected testfile-arith067_cdcl.output))) + (deps testfile-arith067_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_cdcl.output))) (rule (target testfile-arith067_tableaux_cdcl.output) (deps (:input testfile-arith067.ae)) @@ -49772,12 +49063,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith067.expected - testfile-arith067_tableaux_cdcl.output))) + (deps testfile-arith067_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_tableaux_cdcl.output))) (rule (target testfile-arith067_tableaux.output) (deps (:input testfile-arith067.ae)) @@ -49795,10 +49085,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith067.expected testfile-arith067_tableaux.output))) + (deps testfile-arith067_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_tableaux.output))) (rule (target testfile-arith067_legacy.output) (deps (:input testfile-arith067.ae)) @@ -49815,10 +49106,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith067.expected testfile-arith067_legacy.output))) + (deps testfile-arith067_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_legacy.output))) (rule (target testfile-arith067_dolmen.output) (deps (:input testfile-arith067.ae)) @@ -49835,10 +49127,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith067.expected testfile-arith067_dolmen.output))) + (deps testfile-arith067_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_dolmen.output))) (rule (target testfile-arith067_fpa.output) (deps (:input testfile-arith067.ae)) @@ -49855,10 +49148,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith067.expected testfile-arith067_fpa.output))) + (deps testfile-arith067_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith067.expected testfile-arith067_fpa.output))) (rule (target testfile-arith066_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith066.ae)) @@ -49877,12 +49171,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith066.expected - testfile-arith066_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith066_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith066.ae)) @@ -49903,12 +49196,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith066.expected - testfile-arith066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith066.ae)) @@ -49928,12 +49220,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith066.expected - testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith066_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith066.ae)) @@ -49952,12 +49243,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith066.expected - testfile-arith066_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith066_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith066.ae)) @@ -49976,12 +49266,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith066.expected - testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith066_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith066.ae)) @@ -50000,12 +49289,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith066.expected - testfile-arith066_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith066_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith066_cdcl.output) (deps (:input testfile-arith066.ae)) @@ -50023,10 +49311,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith066.expected testfile-arith066_cdcl.output))) + (deps testfile-arith066_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_cdcl.output))) (rule (target testfile-arith066_tableaux_cdcl.output) (deps (:input testfile-arith066.ae)) @@ -50044,12 +49333,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith066.expected - testfile-arith066_tableaux_cdcl.output))) + (deps testfile-arith066_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_tableaux_cdcl.output))) (rule (target testfile-arith066_tableaux.output) (deps (:input testfile-arith066.ae)) @@ -50067,10 +49355,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith066.expected testfile-arith066_tableaux.output))) + (deps testfile-arith066_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_tableaux.output))) (rule (target testfile-arith066_legacy.output) (deps (:input testfile-arith066.ae)) @@ -50087,10 +49376,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith066.expected testfile-arith066_legacy.output))) + (deps testfile-arith066_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_legacy.output))) (rule (target testfile-arith066_dolmen.output) (deps (:input testfile-arith066.ae)) @@ -50107,10 +49397,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith066.expected testfile-arith066_dolmen.output))) + (deps testfile-arith066_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_dolmen.output))) (rule (target testfile-arith066_fpa.output) (deps (:input testfile-arith066.ae)) @@ -50127,10 +49418,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith066.expected testfile-arith066_fpa.output))) + (deps testfile-arith066_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith066.expected testfile-arith066_fpa.output))) (rule (target testfile-arith065_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith065.ae)) @@ -50149,12 +49441,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith065.expected - testfile-arith065_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith065_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith065.ae)) @@ -50175,12 +49466,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith065.expected - testfile-arith065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith065.ae)) @@ -50200,12 +49490,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith065.expected - testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith065_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith065.ae)) @@ -50224,12 +49513,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith065.expected - testfile-arith065_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith065_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith065.ae)) @@ -50248,12 +49536,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith065.expected - testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith065_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith065.ae)) @@ -50272,12 +49559,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith065.expected - testfile-arith065_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith065_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith065_cdcl.output) (deps (:input testfile-arith065.ae)) @@ -50295,10 +49581,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith065.expected testfile-arith065_cdcl.output))) + (deps testfile-arith065_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_cdcl.output))) (rule (target testfile-arith065_tableaux_cdcl.output) (deps (:input testfile-arith065.ae)) @@ -50316,12 +49603,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith065.expected - testfile-arith065_tableaux_cdcl.output))) + (deps testfile-arith065_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_tableaux_cdcl.output))) (rule (target testfile-arith065_tableaux.output) (deps (:input testfile-arith065.ae)) @@ -50339,10 +49625,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith065.expected testfile-arith065_tableaux.output))) + (deps testfile-arith065_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_tableaux.output))) (rule (target testfile-arith065_legacy.output) (deps (:input testfile-arith065.ae)) @@ -50359,10 +49646,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith065.expected testfile-arith065_legacy.output))) + (deps testfile-arith065_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_legacy.output))) (rule (target testfile-arith065_dolmen.output) (deps (:input testfile-arith065.ae)) @@ -50379,10 +49667,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith065.expected testfile-arith065_dolmen.output))) + (deps testfile-arith065_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_dolmen.output))) (rule (target testfile-arith065_fpa.output) (deps (:input testfile-arith065.ae)) @@ -50399,10 +49688,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith065.expected testfile-arith065_fpa.output))) + (deps testfile-arith065_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith065.expected testfile-arith065_fpa.output))) (rule (target testfile-arith064_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith064.ae)) @@ -50421,12 +49711,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith064.expected - testfile-arith064_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith064_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith064.ae)) @@ -50447,12 +49736,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith064.expected - testfile-arith064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith064.ae)) @@ -50472,12 +49760,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith064.expected - testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith064_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith064.ae)) @@ -50496,12 +49783,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith064.expected - testfile-arith064_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith064_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith064.ae)) @@ -50520,12 +49806,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith064.expected - testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith064_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith064.ae)) @@ -50544,12 +49829,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith064.expected - testfile-arith064_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith064_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith064_cdcl.output) (deps (:input testfile-arith064.ae)) @@ -50567,10 +49851,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith064.expected testfile-arith064_cdcl.output))) + (deps testfile-arith064_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_cdcl.output))) (rule (target testfile-arith064_tableaux_cdcl.output) (deps (:input testfile-arith064.ae)) @@ -50588,12 +49873,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith064.expected - testfile-arith064_tableaux_cdcl.output))) + (deps testfile-arith064_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_tableaux_cdcl.output))) (rule (target testfile-arith064_tableaux.output) (deps (:input testfile-arith064.ae)) @@ -50611,10 +49895,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith064.expected testfile-arith064_tableaux.output))) + (deps testfile-arith064_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_tableaux.output))) (rule (target testfile-arith064_legacy.output) (deps (:input testfile-arith064.ae)) @@ -50631,10 +49916,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith064.expected testfile-arith064_legacy.output))) + (deps testfile-arith064_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_legacy.output))) (rule (target testfile-arith064_dolmen.output) (deps (:input testfile-arith064.ae)) @@ -50651,10 +49937,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith064.expected testfile-arith064_dolmen.output))) + (deps testfile-arith064_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_dolmen.output))) (rule (target testfile-arith064_fpa.output) (deps (:input testfile-arith064.ae)) @@ -50671,10 +49958,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith064.expected testfile-arith064_fpa.output))) + (deps testfile-arith064_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith064.expected testfile-arith064_fpa.output))) (rule (target testfile-arith063_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith063.ae)) @@ -50693,12 +49981,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith063.expected - testfile-arith063_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith063_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith063.ae)) @@ -50719,12 +50006,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith063.expected - testfile-arith063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith063.ae)) @@ -50744,12 +50030,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith063.expected - testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith063_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith063.ae)) @@ -50768,12 +50053,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith063.expected - testfile-arith063_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith063_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith063.ae)) @@ -50792,12 +50076,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith063.expected - testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith063_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith063.ae)) @@ -50816,12 +50099,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith063.expected - testfile-arith063_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith063_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith063_cdcl.output) (deps (:input testfile-arith063.ae)) @@ -50839,10 +50121,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith063.expected testfile-arith063_cdcl.output))) + (deps testfile-arith063_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_cdcl.output))) (rule (target testfile-arith063_tableaux_cdcl.output) (deps (:input testfile-arith063.ae)) @@ -50860,12 +50143,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith063.expected - testfile-arith063_tableaux_cdcl.output))) + (deps testfile-arith063_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_tableaux_cdcl.output))) (rule (target testfile-arith063_tableaux.output) (deps (:input testfile-arith063.ae)) @@ -50883,10 +50165,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith063.expected testfile-arith063_tableaux.output))) + (deps testfile-arith063_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_tableaux.output))) (rule (target testfile-arith063_legacy.output) (deps (:input testfile-arith063.ae)) @@ -50903,10 +50186,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith063.expected testfile-arith063_legacy.output))) + (deps testfile-arith063_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_legacy.output))) (rule (target testfile-arith063_dolmen.output) (deps (:input testfile-arith063.ae)) @@ -50923,10 +50207,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith063.expected testfile-arith063_dolmen.output))) + (deps testfile-arith063_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_dolmen.output))) (rule (target testfile-arith063_fpa.output) (deps (:input testfile-arith063.ae)) @@ -50943,10 +50228,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith063.expected testfile-arith063_fpa.output))) + (deps testfile-arith063_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith063.expected testfile-arith063_fpa.output))) (rule (target testfile-arith062_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith062.ae)) @@ -50965,12 +50251,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith062.expected - testfile-arith062_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith062_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith062.ae)) @@ -50991,12 +50276,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith062.expected - testfile-arith062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith062.ae)) @@ -51016,12 +50300,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith062.expected - testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith062_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith062.ae)) @@ -51040,12 +50323,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith062.expected - testfile-arith062_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith062_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith062.ae)) @@ -51064,12 +50346,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith062.expected - testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith062_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith062.ae)) @@ -51088,12 +50369,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith062.expected - testfile-arith062_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith062_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith062_cdcl.output) (deps (:input testfile-arith062.ae)) @@ -51111,10 +50391,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith062.expected testfile-arith062_cdcl.output))) + (deps testfile-arith062_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_cdcl.output))) (rule (target testfile-arith062_tableaux_cdcl.output) (deps (:input testfile-arith062.ae)) @@ -51132,12 +50413,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith062.expected - testfile-arith062_tableaux_cdcl.output))) + (deps testfile-arith062_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_tableaux_cdcl.output))) (rule (target testfile-arith062_tableaux.output) (deps (:input testfile-arith062.ae)) @@ -51155,10 +50435,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith062.expected testfile-arith062_tableaux.output))) + (deps testfile-arith062_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_tableaux.output))) (rule (target testfile-arith062_legacy.output) (deps (:input testfile-arith062.ae)) @@ -51175,10 +50456,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith062.expected testfile-arith062_legacy.output))) + (deps testfile-arith062_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_legacy.output))) (rule (target testfile-arith062_dolmen.output) (deps (:input testfile-arith062.ae)) @@ -51195,10 +50477,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith062.expected testfile-arith062_dolmen.output))) + (deps testfile-arith062_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_dolmen.output))) (rule (target testfile-arith062_fpa.output) (deps (:input testfile-arith062.ae)) @@ -51215,10 +50498,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith062.expected testfile-arith062_fpa.output))) + (deps testfile-arith062_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith062.expected testfile-arith062_fpa.output))) (rule (target testfile-arith061_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith061.ae)) @@ -51237,12 +50521,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith061.expected - testfile-arith061_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith061_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith061.ae)) @@ -51263,12 +50546,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith061.expected - testfile-arith061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith061.ae)) @@ -51288,12 +50570,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith061.expected - testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith061_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith061.ae)) @@ -51312,12 +50593,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith061.expected - testfile-arith061_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith061_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith061.ae)) @@ -51336,12 +50616,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith061.expected - testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith061_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith061.ae)) @@ -51360,12 +50639,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith061.expected - testfile-arith061_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith061_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith061_cdcl.output) (deps (:input testfile-arith061.ae)) @@ -51383,10 +50661,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith061.expected testfile-arith061_cdcl.output))) + (deps testfile-arith061_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_cdcl.output))) (rule (target testfile-arith061_tableaux_cdcl.output) (deps (:input testfile-arith061.ae)) @@ -51404,12 +50683,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith061.expected - testfile-arith061_tableaux_cdcl.output))) + (deps testfile-arith061_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_tableaux_cdcl.output))) (rule (target testfile-arith061_tableaux.output) (deps (:input testfile-arith061.ae)) @@ -51427,10 +50705,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith061.expected testfile-arith061_tableaux.output))) + (deps testfile-arith061_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_tableaux.output))) (rule (target testfile-arith061_legacy.output) (deps (:input testfile-arith061.ae)) @@ -51447,10 +50726,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith061.expected testfile-arith061_legacy.output))) + (deps testfile-arith061_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_legacy.output))) (rule (target testfile-arith061_dolmen.output) (deps (:input testfile-arith061.ae)) @@ -51467,10 +50747,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith061.expected testfile-arith061_dolmen.output))) + (deps testfile-arith061_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_dolmen.output))) (rule (target testfile-arith061_fpa.output) (deps (:input testfile-arith061.ae)) @@ -51487,10 +50768,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith061.expected testfile-arith061_fpa.output))) + (deps testfile-arith061_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith061.expected testfile-arith061_fpa.output))) (rule (target testfile-arith060_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith060.ae)) @@ -51509,12 +50791,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith060.expected - testfile-arith060_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith060_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith060.ae)) @@ -51535,12 +50816,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith060.expected - testfile-arith060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith060.ae)) @@ -51560,12 +50840,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith060.expected - testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith060_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith060.ae)) @@ -51584,12 +50863,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith060.expected - testfile-arith060_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith060_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith060.ae)) @@ -51608,12 +50886,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith060.expected - testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith060_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith060.ae)) @@ -51632,12 +50909,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith060.expected - testfile-arith060_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith060_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith060_cdcl.output) (deps (:input testfile-arith060.ae)) @@ -51655,10 +50931,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith060.expected testfile-arith060_cdcl.output))) + (deps testfile-arith060_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_cdcl.output))) (rule (target testfile-arith060_tableaux_cdcl.output) (deps (:input testfile-arith060.ae)) @@ -51676,12 +50953,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith060.expected - testfile-arith060_tableaux_cdcl.output))) + (deps testfile-arith060_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_tableaux_cdcl.output))) (rule (target testfile-arith060_tableaux.output) (deps (:input testfile-arith060.ae)) @@ -51699,10 +50975,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith060.expected testfile-arith060_tableaux.output))) + (deps testfile-arith060_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_tableaux.output))) (rule (target testfile-arith060_legacy.output) (deps (:input testfile-arith060.ae)) @@ -51719,10 +50996,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith060.expected testfile-arith060_legacy.output))) + (deps testfile-arith060_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_legacy.output))) (rule (target testfile-arith060_dolmen.output) (deps (:input testfile-arith060.ae)) @@ -51739,10 +51017,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith060.expected testfile-arith060_dolmen.output))) + (deps testfile-arith060_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_dolmen.output))) (rule (target testfile-arith060_fpa.output) (deps (:input testfile-arith060.ae)) @@ -51759,10 +51038,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith060.expected testfile-arith060_fpa.output))) + (deps testfile-arith060_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith060.expected testfile-arith060_fpa.output))) (rule (target testfile-arith059_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith059.ae)) @@ -51781,12 +51061,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith059.expected - testfile-arith059_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith059_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith059.ae)) @@ -51807,12 +51086,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith059.expected - testfile-arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith059.ae)) @@ -51832,12 +51110,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith059.expected - testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith059_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith059.ae)) @@ -51856,12 +51133,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith059.expected - testfile-arith059_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith059_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith059.ae)) @@ -51880,12 +51156,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith059.expected - testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith059_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith059.ae)) @@ -51904,12 +51179,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith059.expected - testfile-arith059_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith059_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith059_cdcl.output) (deps (:input testfile-arith059.ae)) @@ -51927,10 +51201,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith059.expected testfile-arith059_cdcl.output))) + (deps testfile-arith059_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_cdcl.output))) (rule (target testfile-arith059_tableaux_cdcl.output) (deps (:input testfile-arith059.ae)) @@ -51948,12 +51223,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith059.expected - testfile-arith059_tableaux_cdcl.output))) + (deps testfile-arith059_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_tableaux_cdcl.output))) (rule (target testfile-arith059_tableaux.output) (deps (:input testfile-arith059.ae)) @@ -51971,10 +51245,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith059.expected testfile-arith059_tableaux.output))) + (deps testfile-arith059_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_tableaux.output))) (rule (target testfile-arith059_legacy.output) (deps (:input testfile-arith059.ae)) @@ -51991,10 +51266,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith059.expected testfile-arith059_legacy.output))) + (deps testfile-arith059_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_legacy.output))) (rule (target testfile-arith059_dolmen.output) (deps (:input testfile-arith059.ae)) @@ -52011,10 +51287,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith059.expected testfile-arith059_dolmen.output))) + (deps testfile-arith059_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_dolmen.output))) (rule (target testfile-arith059_fpa.output) (deps (:input testfile-arith059.ae)) @@ -52031,10 +51308,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith059.expected testfile-arith059_fpa.output))) + (deps testfile-arith059_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith059.expected testfile-arith059_fpa.output))) (rule (target testfile-arith058_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith058.ae)) @@ -52053,12 +51331,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith058.expected - testfile-arith058_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith058_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith058.ae)) @@ -52079,12 +51356,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith058.expected - testfile-arith058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith058.ae)) @@ -52104,12 +51380,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith058.expected - testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith058_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith058.ae)) @@ -52128,12 +51403,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith058.expected - testfile-arith058_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith058_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith058.ae)) @@ -52152,12 +51426,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith058.expected - testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith058_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith058.ae)) @@ -52176,12 +51449,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith058.expected - testfile-arith058_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith058_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith058_cdcl.output) (deps (:input testfile-arith058.ae)) @@ -52199,10 +51471,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith058.expected testfile-arith058_cdcl.output))) + (deps testfile-arith058_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_cdcl.output))) (rule (target testfile-arith058_tableaux_cdcl.output) (deps (:input testfile-arith058.ae)) @@ -52220,12 +51493,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith058.expected - testfile-arith058_tableaux_cdcl.output))) + (deps testfile-arith058_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_tableaux_cdcl.output))) (rule (target testfile-arith058_tableaux.output) (deps (:input testfile-arith058.ae)) @@ -52243,10 +51515,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith058.expected testfile-arith058_tableaux.output))) + (deps testfile-arith058_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_tableaux.output))) (rule (target testfile-arith058_legacy.output) (deps (:input testfile-arith058.ae)) @@ -52263,10 +51536,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith058.expected testfile-arith058_legacy.output))) + (deps testfile-arith058_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_legacy.output))) (rule (target testfile-arith058_dolmen.output) (deps (:input testfile-arith058.ae)) @@ -52283,10 +51557,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith058.expected testfile-arith058_dolmen.output))) + (deps testfile-arith058_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_dolmen.output))) (rule (target testfile-arith058_fpa.output) (deps (:input testfile-arith058.ae)) @@ -52303,10 +51578,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith058.expected testfile-arith058_fpa.output))) + (deps testfile-arith058_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith058.expected testfile-arith058_fpa.output))) (rule (target testfile-arith057_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith057.ae)) @@ -52325,12 +51601,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith057.expected - testfile-arith057_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith057_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith057.ae)) @@ -52351,12 +51626,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith057.expected - testfile-arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith057.ae)) @@ -52376,12 +51650,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith057.expected - testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith057_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith057.ae)) @@ -52400,12 +51673,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith057.expected - testfile-arith057_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith057_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith057.ae)) @@ -52424,12 +51696,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith057.expected - testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith057_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith057.ae)) @@ -52448,12 +51719,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith057.expected - testfile-arith057_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith057_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith057_cdcl.output) (deps (:input testfile-arith057.ae)) @@ -52471,10 +51741,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith057.expected testfile-arith057_cdcl.output))) + (deps testfile-arith057_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_cdcl.output))) (rule (target testfile-arith057_tableaux_cdcl.output) (deps (:input testfile-arith057.ae)) @@ -52492,12 +51763,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith057.expected - testfile-arith057_tableaux_cdcl.output))) + (deps testfile-arith057_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_tableaux_cdcl.output))) (rule (target testfile-arith057_tableaux.output) (deps (:input testfile-arith057.ae)) @@ -52515,10 +51785,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith057.expected testfile-arith057_tableaux.output))) + (deps testfile-arith057_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_tableaux.output))) (rule (target testfile-arith057_legacy.output) (deps (:input testfile-arith057.ae)) @@ -52535,10 +51806,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith057.expected testfile-arith057_legacy.output))) + (deps testfile-arith057_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_legacy.output))) (rule (target testfile-arith057_dolmen.output) (deps (:input testfile-arith057.ae)) @@ -52555,10 +51827,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith057.expected testfile-arith057_dolmen.output))) + (deps testfile-arith057_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_dolmen.output))) (rule (target testfile-arith057_fpa.output) (deps (:input testfile-arith057.ae)) @@ -52575,10 +51848,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith057.expected testfile-arith057_fpa.output))) + (deps testfile-arith057_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith057.expected testfile-arith057_fpa.output))) (rule (target testfile-arith056_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith056.ae)) @@ -52597,12 +51871,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith056.expected - testfile-arith056_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith056_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith056.ae)) @@ -52623,12 +51896,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith056.expected - testfile-arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith056.ae)) @@ -52648,12 +51920,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith056.expected - testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith056_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith056.ae)) @@ -52672,12 +51943,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith056.expected - testfile-arith056_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith056_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith056.ae)) @@ -52696,12 +51966,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith056.expected - testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith056_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith056.ae)) @@ -52720,12 +51989,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith056.expected - testfile-arith056_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith056_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith056_cdcl.output) (deps (:input testfile-arith056.ae)) @@ -52743,10 +52011,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith056.expected testfile-arith056_cdcl.output))) + (deps testfile-arith056_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_cdcl.output))) (rule (target testfile-arith056_tableaux_cdcl.output) (deps (:input testfile-arith056.ae)) @@ -52764,12 +52033,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith056.expected - testfile-arith056_tableaux_cdcl.output))) + (deps testfile-arith056_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_tableaux_cdcl.output))) (rule (target testfile-arith056_tableaux.output) (deps (:input testfile-arith056.ae)) @@ -52787,10 +52055,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith056.expected testfile-arith056_tableaux.output))) + (deps testfile-arith056_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_tableaux.output))) (rule (target testfile-arith056_legacy.output) (deps (:input testfile-arith056.ae)) @@ -52807,10 +52076,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith056.expected testfile-arith056_legacy.output))) + (deps testfile-arith056_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_legacy.output))) (rule (target testfile-arith056_dolmen.output) (deps (:input testfile-arith056.ae)) @@ -52827,10 +52097,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith056.expected testfile-arith056_dolmen.output))) + (deps testfile-arith056_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_dolmen.output))) (rule (target testfile-arith056_fpa.output) (deps (:input testfile-arith056.ae)) @@ -52847,10 +52118,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith056.expected testfile-arith056_fpa.output))) + (deps testfile-arith056_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith056.expected testfile-arith056_fpa.output))) (rule (target testfile-arith055_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith055.ae)) @@ -52869,12 +52141,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith055.expected - testfile-arith055_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith055_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith055.ae)) @@ -52895,12 +52166,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith055.expected - testfile-arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith055.ae)) @@ -52920,12 +52190,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith055.expected - testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith055_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith055.ae)) @@ -52944,12 +52213,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith055.expected - testfile-arith055_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith055_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith055.ae)) @@ -52968,12 +52236,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith055.expected - testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith055_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith055.ae)) @@ -52992,12 +52259,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith055.expected - testfile-arith055_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith055_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith055_cdcl.output) (deps (:input testfile-arith055.ae)) @@ -53015,10 +52281,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith055.expected testfile-arith055_cdcl.output))) + (deps testfile-arith055_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_cdcl.output))) (rule (target testfile-arith055_tableaux_cdcl.output) (deps (:input testfile-arith055.ae)) @@ -53036,12 +52303,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith055.expected - testfile-arith055_tableaux_cdcl.output))) + (deps testfile-arith055_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_tableaux_cdcl.output))) (rule (target testfile-arith055_tableaux.output) (deps (:input testfile-arith055.ae)) @@ -53059,10 +52325,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith055.expected testfile-arith055_tableaux.output))) + (deps testfile-arith055_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_tableaux.output))) (rule (target testfile-arith055_legacy.output) (deps (:input testfile-arith055.ae)) @@ -53079,10 +52346,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith055.expected testfile-arith055_legacy.output))) + (deps testfile-arith055_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_legacy.output))) (rule (target testfile-arith055_dolmen.output) (deps (:input testfile-arith055.ae)) @@ -53099,10 +52367,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith055.expected testfile-arith055_dolmen.output))) + (deps testfile-arith055_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_dolmen.output))) (rule (target testfile-arith055_fpa.output) (deps (:input testfile-arith055.ae)) @@ -53119,10 +52388,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith055.expected testfile-arith055_fpa.output))) + (deps testfile-arith055_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith055.expected testfile-arith055_fpa.output))) (rule (target testfile-arith054_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith054.ae)) @@ -53141,12 +52411,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith054.expected - testfile-arith054_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith054_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith054.ae)) @@ -53167,12 +52436,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith054.expected - testfile-arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith054.ae)) @@ -53192,12 +52460,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith054.expected - testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith054_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith054.ae)) @@ -53216,12 +52483,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith054.expected - testfile-arith054_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith054_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith054.ae)) @@ -53240,12 +52506,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith054.expected - testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith054_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith054.ae)) @@ -53264,12 +52529,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith054.expected - testfile-arith054_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith054_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith054_cdcl.output) (deps (:input testfile-arith054.ae)) @@ -53287,10 +52551,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith054.expected testfile-arith054_cdcl.output))) + (deps testfile-arith054_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_cdcl.output))) (rule (target testfile-arith054_tableaux_cdcl.output) (deps (:input testfile-arith054.ae)) @@ -53308,12 +52573,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith054.expected - testfile-arith054_tableaux_cdcl.output))) + (deps testfile-arith054_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_tableaux_cdcl.output))) (rule (target testfile-arith054_tableaux.output) (deps (:input testfile-arith054.ae)) @@ -53331,10 +52595,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith054.expected testfile-arith054_tableaux.output))) + (deps testfile-arith054_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_tableaux.output))) (rule (target testfile-arith054_legacy.output) (deps (:input testfile-arith054.ae)) @@ -53351,10 +52616,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith054.expected testfile-arith054_legacy.output))) + (deps testfile-arith054_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_legacy.output))) (rule (target testfile-arith054_dolmen.output) (deps (:input testfile-arith054.ae)) @@ -53371,10 +52637,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith054.expected testfile-arith054_dolmen.output))) + (deps testfile-arith054_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_dolmen.output))) (rule (target testfile-arith054_fpa.output) (deps (:input testfile-arith054.ae)) @@ -53391,10 +52658,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith054.expected testfile-arith054_fpa.output))) + (deps testfile-arith054_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith054.expected testfile-arith054_fpa.output))) (rule (target testfile-arith053_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith053.ae)) @@ -53413,12 +52681,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith053.expected - testfile-arith053_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith053_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith053.ae)) @@ -53439,12 +52706,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith053.expected - testfile-arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith053.ae)) @@ -53464,12 +52730,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith053.expected - testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith053_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith053.ae)) @@ -53488,12 +52753,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith053.expected - testfile-arith053_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith053_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith053.ae)) @@ -53512,12 +52776,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith053.expected - testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith053_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith053.ae)) @@ -53536,12 +52799,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith053.expected - testfile-arith053_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith053_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith053_cdcl.output) (deps (:input testfile-arith053.ae)) @@ -53559,10 +52821,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith053.expected testfile-arith053_cdcl.output))) + (deps testfile-arith053_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_cdcl.output))) (rule (target testfile-arith053_tableaux_cdcl.output) (deps (:input testfile-arith053.ae)) @@ -53580,12 +52843,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith053.expected - testfile-arith053_tableaux_cdcl.output))) + (deps testfile-arith053_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_tableaux_cdcl.output))) (rule (target testfile-arith053_tableaux.output) (deps (:input testfile-arith053.ae)) @@ -53603,10 +52865,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith053.expected testfile-arith053_tableaux.output))) + (deps testfile-arith053_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_tableaux.output))) (rule (target testfile-arith053_legacy.output) (deps (:input testfile-arith053.ae)) @@ -53623,10 +52886,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith053.expected testfile-arith053_legacy.output))) + (deps testfile-arith053_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_legacy.output))) (rule (target testfile-arith053_dolmen.output) (deps (:input testfile-arith053.ae)) @@ -53643,10 +52907,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith053.expected testfile-arith053_dolmen.output))) + (deps testfile-arith053_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_dolmen.output))) (rule (target testfile-arith053_fpa.output) (deps (:input testfile-arith053.ae)) @@ -53663,10 +52928,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith053.expected testfile-arith053_fpa.output))) + (deps testfile-arith053_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith053.expected testfile-arith053_fpa.output))) (rule (target testfile-arith052_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith052.ae)) @@ -53685,12 +52951,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith052.expected - testfile-arith052_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith052_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith052.ae)) @@ -53711,12 +52976,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith052.expected - testfile-arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith052.ae)) @@ -53736,12 +53000,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith052.expected - testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith052_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith052.ae)) @@ -53760,12 +53023,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith052.expected - testfile-arith052_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith052_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith052.ae)) @@ -53784,12 +53046,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith052.expected - testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith052_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith052.ae)) @@ -53808,12 +53069,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith052.expected - testfile-arith052_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith052_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith052_cdcl.output) (deps (:input testfile-arith052.ae)) @@ -53831,10 +53091,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith052.expected testfile-arith052_cdcl.output))) + (deps testfile-arith052_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_cdcl.output))) (rule (target testfile-arith052_tableaux_cdcl.output) (deps (:input testfile-arith052.ae)) @@ -53852,12 +53113,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith052.expected - testfile-arith052_tableaux_cdcl.output))) + (deps testfile-arith052_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_tableaux_cdcl.output))) (rule (target testfile-arith052_tableaux.output) (deps (:input testfile-arith052.ae)) @@ -53875,10 +53135,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith052.expected testfile-arith052_tableaux.output))) + (deps testfile-arith052_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_tableaux.output))) (rule (target testfile-arith052_legacy.output) (deps (:input testfile-arith052.ae)) @@ -53895,10 +53156,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith052.expected testfile-arith052_legacy.output))) + (deps testfile-arith052_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_legacy.output))) (rule (target testfile-arith052_dolmen.output) (deps (:input testfile-arith052.ae)) @@ -53915,10 +53177,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith052.expected testfile-arith052_dolmen.output))) + (deps testfile-arith052_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_dolmen.output))) (rule (target testfile-arith052_fpa.output) (deps (:input testfile-arith052.ae)) @@ -53935,10 +53198,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith052.expected testfile-arith052_fpa.output))) + (deps testfile-arith052_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith052.expected testfile-arith052_fpa.output))) (rule (target testfile-arith051_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith051.ae)) @@ -53957,12 +53221,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith051.expected - testfile-arith051_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith051_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith051.ae)) @@ -53983,12 +53246,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith051.expected - testfile-arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith051.ae)) @@ -54008,12 +53270,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith051.expected - testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith051_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith051.ae)) @@ -54032,12 +53293,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith051.expected - testfile-arith051_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith051_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith051.ae)) @@ -54056,12 +53316,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith051.expected - testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith051_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith051.ae)) @@ -54080,12 +53339,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith051.expected - testfile-arith051_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith051_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith051_cdcl.output) (deps (:input testfile-arith051.ae)) @@ -54103,10 +53361,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith051.expected testfile-arith051_cdcl.output))) + (deps testfile-arith051_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_cdcl.output))) (rule (target testfile-arith051_tableaux_cdcl.output) (deps (:input testfile-arith051.ae)) @@ -54124,12 +53383,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith051.expected - testfile-arith051_tableaux_cdcl.output))) + (deps testfile-arith051_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_tableaux_cdcl.output))) (rule (target testfile-arith051_tableaux.output) (deps (:input testfile-arith051.ae)) @@ -54147,10 +53405,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith051.expected testfile-arith051_tableaux.output))) + (deps testfile-arith051_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_tableaux.output))) (rule (target testfile-arith051_legacy.output) (deps (:input testfile-arith051.ae)) @@ -54167,10 +53426,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith051.expected testfile-arith051_legacy.output))) + (deps testfile-arith051_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_legacy.output))) (rule (target testfile-arith051_dolmen.output) (deps (:input testfile-arith051.ae)) @@ -54187,10 +53447,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith051.expected testfile-arith051_dolmen.output))) + (deps testfile-arith051_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_dolmen.output))) (rule (target testfile-arith051_fpa.output) (deps (:input testfile-arith051.ae)) @@ -54207,10 +53468,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith051.expected testfile-arith051_fpa.output))) + (deps testfile-arith051_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith051.expected testfile-arith051_fpa.output))) (rule (target testfile-arith050_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith050.ae)) @@ -54229,12 +53491,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith050.expected - testfile-arith050_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith050_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith050.ae)) @@ -54255,12 +53516,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith050.expected - testfile-arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith050.ae)) @@ -54280,12 +53540,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith050.expected - testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith050_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith050.ae)) @@ -54304,12 +53563,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith050.expected - testfile-arith050_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith050_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith050.ae)) @@ -54328,12 +53586,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith050.expected - testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith050_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith050.ae)) @@ -54352,12 +53609,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith050.expected - testfile-arith050_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith050_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith050_cdcl.output) (deps (:input testfile-arith050.ae)) @@ -54375,10 +53631,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith050.expected testfile-arith050_cdcl.output))) + (deps testfile-arith050_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_cdcl.output))) (rule (target testfile-arith050_tableaux_cdcl.output) (deps (:input testfile-arith050.ae)) @@ -54396,12 +53653,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith050.expected - testfile-arith050_tableaux_cdcl.output))) + (deps testfile-arith050_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_tableaux_cdcl.output))) (rule (target testfile-arith050_tableaux.output) (deps (:input testfile-arith050.ae)) @@ -54419,10 +53675,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith050.expected testfile-arith050_tableaux.output))) + (deps testfile-arith050_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_tableaux.output))) (rule (target testfile-arith050_legacy.output) (deps (:input testfile-arith050.ae)) @@ -54439,10 +53696,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith050.expected testfile-arith050_legacy.output))) + (deps testfile-arith050_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_legacy.output))) (rule (target testfile-arith050_dolmen.output) (deps (:input testfile-arith050.ae)) @@ -54459,10 +53717,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith050.expected testfile-arith050_dolmen.output))) + (deps testfile-arith050_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_dolmen.output))) (rule (target testfile-arith050_fpa.output) (deps (:input testfile-arith050.ae)) @@ -54479,10 +53738,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith050.expected testfile-arith050_fpa.output))) + (deps testfile-arith050_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith050.expected testfile-arith050_fpa.output))) (rule (target testfile-arith049_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith049.ae)) @@ -54501,12 +53761,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith049.expected - testfile-arith049_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith049_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith049.ae)) @@ -54527,12 +53786,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith049.expected - testfile-arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith049.ae)) @@ -54552,12 +53810,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith049.expected - testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith049_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith049.ae)) @@ -54576,12 +53833,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith049.expected - testfile-arith049_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith049_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith049.ae)) @@ -54600,12 +53856,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith049.expected - testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith049_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith049.ae)) @@ -54624,12 +53879,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith049.expected - testfile-arith049_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith049_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith049_cdcl.output) (deps (:input testfile-arith049.ae)) @@ -54647,10 +53901,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith049.expected testfile-arith049_cdcl.output))) + (deps testfile-arith049_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_cdcl.output))) (rule (target testfile-arith049_tableaux_cdcl.output) (deps (:input testfile-arith049.ae)) @@ -54668,12 +53923,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith049.expected - testfile-arith049_tableaux_cdcl.output))) + (deps testfile-arith049_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_tableaux_cdcl.output))) (rule (target testfile-arith049_tableaux.output) (deps (:input testfile-arith049.ae)) @@ -54691,10 +53945,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith049.expected testfile-arith049_tableaux.output))) + (deps testfile-arith049_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_tableaux.output))) (rule (target testfile-arith049_legacy.output) (deps (:input testfile-arith049.ae)) @@ -54711,10 +53966,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith049.expected testfile-arith049_legacy.output))) + (deps testfile-arith049_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_legacy.output))) (rule (target testfile-arith049_dolmen.output) (deps (:input testfile-arith049.ae)) @@ -54731,10 +53987,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith049.expected testfile-arith049_dolmen.output))) + (deps testfile-arith049_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_dolmen.output))) (rule (target testfile-arith049_fpa.output) (deps (:input testfile-arith049.ae)) @@ -54751,10 +54008,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith049.expected testfile-arith049_fpa.output))) + (deps testfile-arith049_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith049.expected testfile-arith049_fpa.output))) (rule (target testfile-arith048_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith048.ae)) @@ -54773,12 +54031,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith048.expected - testfile-arith048_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith048_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith048.ae)) @@ -54799,12 +54056,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith048.expected - testfile-arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith048.ae)) @@ -54824,12 +54080,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith048.expected - testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith048_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith048.ae)) @@ -54848,12 +54103,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith048.expected - testfile-arith048_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith048_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith048.ae)) @@ -54872,12 +54126,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith048.expected - testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith048_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith048.ae)) @@ -54896,12 +54149,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith048.expected - testfile-arith048_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith048_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith048_cdcl.output) (deps (:input testfile-arith048.ae)) @@ -54919,10 +54171,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith048.expected testfile-arith048_cdcl.output))) + (deps testfile-arith048_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_cdcl.output))) (rule (target testfile-arith048_tableaux_cdcl.output) (deps (:input testfile-arith048.ae)) @@ -54940,12 +54193,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith048.expected - testfile-arith048_tableaux_cdcl.output))) + (deps testfile-arith048_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_tableaux_cdcl.output))) (rule (target testfile-arith048_tableaux.output) (deps (:input testfile-arith048.ae)) @@ -54963,10 +54215,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith048.expected testfile-arith048_tableaux.output))) + (deps testfile-arith048_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_tableaux.output))) (rule (target testfile-arith048_legacy.output) (deps (:input testfile-arith048.ae)) @@ -54983,10 +54236,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith048.expected testfile-arith048_legacy.output))) + (deps testfile-arith048_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_legacy.output))) (rule (target testfile-arith048_dolmen.output) (deps (:input testfile-arith048.ae)) @@ -55003,10 +54257,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith048.expected testfile-arith048_dolmen.output))) + (deps testfile-arith048_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_dolmen.output))) (rule (target testfile-arith048_fpa.output) (deps (:input testfile-arith048.ae)) @@ -55023,10 +54278,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith048.expected testfile-arith048_fpa.output))) + (deps testfile-arith048_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith048.expected testfile-arith048_fpa.output))) (rule (target testfile-arith047_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith047.ae)) @@ -55045,12 +54301,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith047.expected - testfile-arith047_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith047_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith047.ae)) @@ -55071,12 +54326,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith047.expected - testfile-arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith047.ae)) @@ -55096,12 +54350,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith047.expected - testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith047_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith047.ae)) @@ -55120,12 +54373,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith047.expected - testfile-arith047_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith047_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith047.ae)) @@ -55144,12 +54396,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith047.expected - testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith047_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith047.ae)) @@ -55168,12 +54419,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith047.expected - testfile-arith047_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith047_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith047_cdcl.output) (deps (:input testfile-arith047.ae)) @@ -55191,10 +54441,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith047.expected testfile-arith047_cdcl.output))) + (deps testfile-arith047_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_cdcl.output))) (rule (target testfile-arith047_tableaux_cdcl.output) (deps (:input testfile-arith047.ae)) @@ -55212,12 +54463,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith047.expected - testfile-arith047_tableaux_cdcl.output))) + (deps testfile-arith047_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_tableaux_cdcl.output))) (rule (target testfile-arith047_tableaux.output) (deps (:input testfile-arith047.ae)) @@ -55235,10 +54485,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith047.expected testfile-arith047_tableaux.output))) + (deps testfile-arith047_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_tableaux.output))) (rule (target testfile-arith047_legacy.output) (deps (:input testfile-arith047.ae)) @@ -55255,10 +54506,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith047.expected testfile-arith047_legacy.output))) + (deps testfile-arith047_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_legacy.output))) (rule (target testfile-arith047_dolmen.output) (deps (:input testfile-arith047.ae)) @@ -55275,10 +54527,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith047.expected testfile-arith047_dolmen.output))) + (deps testfile-arith047_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_dolmen.output))) (rule (target testfile-arith047_fpa.output) (deps (:input testfile-arith047.ae)) @@ -55295,10 +54548,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith047.expected testfile-arith047_fpa.output))) + (deps testfile-arith047_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith047.expected testfile-arith047_fpa.output))) (rule (target testfile-arith046_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith046.ae)) @@ -55317,12 +54571,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith046.expected - testfile-arith046_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith046_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith046.ae)) @@ -55343,12 +54596,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith046.expected - testfile-arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith046.ae)) @@ -55368,12 +54620,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith046.expected - testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith046_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith046.ae)) @@ -55392,12 +54643,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith046.expected - testfile-arith046_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith046_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith046.ae)) @@ -55416,12 +54666,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith046.expected - testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith046_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith046.ae)) @@ -55440,12 +54689,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith046.expected - testfile-arith046_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith046_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith046_cdcl.output) (deps (:input testfile-arith046.ae)) @@ -55463,10 +54711,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith046.expected testfile-arith046_cdcl.output))) + (deps testfile-arith046_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_cdcl.output))) (rule (target testfile-arith046_tableaux_cdcl.output) (deps (:input testfile-arith046.ae)) @@ -55484,12 +54733,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith046.expected - testfile-arith046_tableaux_cdcl.output))) + (deps testfile-arith046_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_tableaux_cdcl.output))) (rule (target testfile-arith046_tableaux.output) (deps (:input testfile-arith046.ae)) @@ -55507,10 +54755,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith046.expected testfile-arith046_tableaux.output))) + (deps testfile-arith046_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_tableaux.output))) (rule (target testfile-arith046_legacy.output) (deps (:input testfile-arith046.ae)) @@ -55527,10 +54776,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith046.expected testfile-arith046_legacy.output))) + (deps testfile-arith046_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_legacy.output))) (rule (target testfile-arith046_dolmen.output) (deps (:input testfile-arith046.ae)) @@ -55547,10 +54797,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith046.expected testfile-arith046_dolmen.output))) + (deps testfile-arith046_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_dolmen.output))) (rule (target testfile-arith046_fpa.output) (deps (:input testfile-arith046.ae)) @@ -55567,10 +54818,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith046.expected testfile-arith046_fpa.output))) + (deps testfile-arith046_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith046.expected testfile-arith046_fpa.output))) (rule (target testfile-arith045_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith045.ae)) @@ -55589,12 +54841,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith045.expected - testfile-arith045_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith045_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith045.ae)) @@ -55615,12 +54866,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith045.expected - testfile-arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith045.ae)) @@ -55640,12 +54890,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith045.expected - testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith045_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith045.ae)) @@ -55664,12 +54913,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith045.expected - testfile-arith045_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith045_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith045.ae)) @@ -55688,12 +54936,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith045.expected - testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith045_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith045.ae)) @@ -55712,12 +54959,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith045.expected - testfile-arith045_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith045_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith045_cdcl.output) (deps (:input testfile-arith045.ae)) @@ -55735,10 +54981,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith045.expected testfile-arith045_cdcl.output))) + (deps testfile-arith045_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_cdcl.output))) (rule (target testfile-arith045_tableaux_cdcl.output) (deps (:input testfile-arith045.ae)) @@ -55756,12 +55003,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith045.expected - testfile-arith045_tableaux_cdcl.output))) + (deps testfile-arith045_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_tableaux_cdcl.output))) (rule (target testfile-arith045_tableaux.output) (deps (:input testfile-arith045.ae)) @@ -55779,10 +55025,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith045.expected testfile-arith045_tableaux.output))) + (deps testfile-arith045_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_tableaux.output))) (rule (target testfile-arith045_legacy.output) (deps (:input testfile-arith045.ae)) @@ -55799,10 +55046,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith045.expected testfile-arith045_legacy.output))) + (deps testfile-arith045_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_legacy.output))) (rule (target testfile-arith045_dolmen.output) (deps (:input testfile-arith045.ae)) @@ -55819,10 +55067,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith045.expected testfile-arith045_dolmen.output))) + (deps testfile-arith045_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_dolmen.output))) (rule (target testfile-arith045_fpa.output) (deps (:input testfile-arith045.ae)) @@ -55839,10 +55088,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith045.expected testfile-arith045_fpa.output))) + (deps testfile-arith045_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith045.expected testfile-arith045_fpa.output))) (rule (target testfile-arith044_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith044.ae)) @@ -55861,12 +55111,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith044.expected - testfile-arith044_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith044_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith044.ae)) @@ -55887,12 +55136,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith044.expected - testfile-arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith044.ae)) @@ -55912,12 +55160,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith044.expected - testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith044_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith044.ae)) @@ -55936,12 +55183,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith044.expected - testfile-arith044_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith044_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith044.ae)) @@ -55960,12 +55206,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith044.expected - testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith044_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith044.ae)) @@ -55984,12 +55229,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith044.expected - testfile-arith044_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith044_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith044_cdcl.output) (deps (:input testfile-arith044.ae)) @@ -56007,10 +55251,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith044.expected testfile-arith044_cdcl.output))) + (deps testfile-arith044_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_cdcl.output))) (rule (target testfile-arith044_tableaux_cdcl.output) (deps (:input testfile-arith044.ae)) @@ -56028,12 +55273,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith044.expected - testfile-arith044_tableaux_cdcl.output))) + (deps testfile-arith044_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_tableaux_cdcl.output))) (rule (target testfile-arith044_tableaux.output) (deps (:input testfile-arith044.ae)) @@ -56051,10 +55295,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith044.expected testfile-arith044_tableaux.output))) + (deps testfile-arith044_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_tableaux.output))) (rule (target testfile-arith044_legacy.output) (deps (:input testfile-arith044.ae)) @@ -56071,10 +55316,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith044.expected testfile-arith044_legacy.output))) + (deps testfile-arith044_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_legacy.output))) (rule (target testfile-arith044_dolmen.output) (deps (:input testfile-arith044.ae)) @@ -56091,10 +55337,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith044.expected testfile-arith044_dolmen.output))) + (deps testfile-arith044_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_dolmen.output))) (rule (target testfile-arith044_fpa.output) (deps (:input testfile-arith044.ae)) @@ -56111,10 +55358,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith044.expected testfile-arith044_fpa.output))) + (deps testfile-arith044_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith044.expected testfile-arith044_fpa.output))) (rule (target testfile-arith043_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith043.ae)) @@ -56133,12 +55381,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith043.expected - testfile-arith043_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith043_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith043.ae)) @@ -56159,12 +55406,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith043.expected - testfile-arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith043.ae)) @@ -56184,12 +55430,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith043.expected - testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith043_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith043.ae)) @@ -56208,12 +55453,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith043.expected - testfile-arith043_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith043_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith043.ae)) @@ -56232,12 +55476,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith043.expected - testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith043_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith043.ae)) @@ -56256,12 +55499,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith043.expected - testfile-arith043_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith043_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith043_cdcl.output) (deps (:input testfile-arith043.ae)) @@ -56279,10 +55521,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith043.expected testfile-arith043_cdcl.output))) + (deps testfile-arith043_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_cdcl.output))) (rule (target testfile-arith043_tableaux_cdcl.output) (deps (:input testfile-arith043.ae)) @@ -56300,12 +55543,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith043.expected - testfile-arith043_tableaux_cdcl.output))) + (deps testfile-arith043_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_tableaux_cdcl.output))) (rule (target testfile-arith043_tableaux.output) (deps (:input testfile-arith043.ae)) @@ -56323,10 +55565,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith043.expected testfile-arith043_tableaux.output))) + (deps testfile-arith043_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_tableaux.output))) (rule (target testfile-arith043_legacy.output) (deps (:input testfile-arith043.ae)) @@ -56343,10 +55586,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith043.expected testfile-arith043_legacy.output))) + (deps testfile-arith043_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_legacy.output))) (rule (target testfile-arith043_dolmen.output) (deps (:input testfile-arith043.ae)) @@ -56363,10 +55607,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith043.expected testfile-arith043_dolmen.output))) + (deps testfile-arith043_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_dolmen.output))) (rule (target testfile-arith043_fpa.output) (deps (:input testfile-arith043.ae)) @@ -56383,10 +55628,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith043.expected testfile-arith043_fpa.output))) + (deps testfile-arith043_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith043.expected testfile-arith043_fpa.output))) (rule (target testfile-arith041_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith041.ae)) @@ -56405,12 +55651,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith041.expected - testfile-arith041_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith041_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith041.ae)) @@ -56431,12 +55676,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith041.expected - testfile-arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith041.ae)) @@ -56456,12 +55700,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith041.expected - testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith041_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith041.ae)) @@ -56480,12 +55723,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith041.expected - testfile-arith041_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith041_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith041.ae)) @@ -56504,12 +55746,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith041.expected - testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith041_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith041.ae)) @@ -56528,12 +55769,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith041.expected - testfile-arith041_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith041_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith041_cdcl.output) (deps (:input testfile-arith041.ae)) @@ -56551,10 +55791,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith041.expected testfile-arith041_cdcl.output))) + (deps testfile-arith041_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_cdcl.output))) (rule (target testfile-arith041_tableaux_cdcl.output) (deps (:input testfile-arith041.ae)) @@ -56572,12 +55813,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith041.expected - testfile-arith041_tableaux_cdcl.output))) + (deps testfile-arith041_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_tableaux_cdcl.output))) (rule (target testfile-arith041_tableaux.output) (deps (:input testfile-arith041.ae)) @@ -56595,10 +55835,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith041.expected testfile-arith041_tableaux.output))) + (deps testfile-arith041_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_tableaux.output))) (rule (target testfile-arith041_legacy.output) (deps (:input testfile-arith041.ae)) @@ -56615,10 +55856,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith041.expected testfile-arith041_legacy.output))) + (deps testfile-arith041_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_legacy.output))) (rule (target testfile-arith041_dolmen.output) (deps (:input testfile-arith041.ae)) @@ -56635,10 +55877,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith041.expected testfile-arith041_dolmen.output))) + (deps testfile-arith041_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_dolmen.output))) (rule (target testfile-arith041_fpa.output) (deps (:input testfile-arith041.ae)) @@ -56655,10 +55898,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith041.expected testfile-arith041_fpa.output))) + (deps testfile-arith041_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith041.expected testfile-arith041_fpa.output))) (rule (target testfile-arith040_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith040.ae)) @@ -56677,12 +55921,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith040.expected - testfile-arith040_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith040_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith040.ae)) @@ -56703,12 +55946,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith040.expected - testfile-arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith040.ae)) @@ -56728,12 +55970,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith040.expected - testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith040_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith040.ae)) @@ -56752,12 +55993,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith040.expected - testfile-arith040_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith040_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith040.ae)) @@ -56776,12 +56016,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith040.expected - testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith040_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith040.ae)) @@ -56800,12 +56039,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith040.expected - testfile-arith040_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith040_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith040_cdcl.output) (deps (:input testfile-arith040.ae)) @@ -56823,10 +56061,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith040.expected testfile-arith040_cdcl.output))) + (deps testfile-arith040_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_cdcl.output))) (rule (target testfile-arith040_tableaux_cdcl.output) (deps (:input testfile-arith040.ae)) @@ -56844,12 +56083,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith040.expected - testfile-arith040_tableaux_cdcl.output))) + (deps testfile-arith040_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_tableaux_cdcl.output))) (rule (target testfile-arith040_tableaux.output) (deps (:input testfile-arith040.ae)) @@ -56867,10 +56105,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith040.expected testfile-arith040_tableaux.output))) + (deps testfile-arith040_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_tableaux.output))) (rule (target testfile-arith040_legacy.output) (deps (:input testfile-arith040.ae)) @@ -56887,10 +56126,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith040.expected testfile-arith040_legacy.output))) + (deps testfile-arith040_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_legacy.output))) (rule (target testfile-arith040_dolmen.output) (deps (:input testfile-arith040.ae)) @@ -56907,10 +56147,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith040.expected testfile-arith040_dolmen.output))) + (deps testfile-arith040_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_dolmen.output))) (rule (target testfile-arith040_fpa.output) (deps (:input testfile-arith040.ae)) @@ -56927,10 +56168,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith040.expected testfile-arith040_fpa.output))) + (deps testfile-arith040_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith040.expected testfile-arith040_fpa.output))) (rule (target testfile-arith039_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith039.ae)) @@ -56949,12 +56191,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith039.expected - testfile-arith039_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith039_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith039.ae)) @@ -56975,12 +56216,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith039.expected - testfile-arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith039.ae)) @@ -57000,12 +56240,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith039.expected - testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith039_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith039.ae)) @@ -57024,12 +56263,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith039.expected - testfile-arith039_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith039_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith039.ae)) @@ -57048,12 +56286,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith039.expected - testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith039_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith039.ae)) @@ -57072,12 +56309,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith039.expected - testfile-arith039_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith039_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith039_cdcl.output) (deps (:input testfile-arith039.ae)) @@ -57095,10 +56331,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith039.expected testfile-arith039_cdcl.output))) + (deps testfile-arith039_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_cdcl.output))) (rule (target testfile-arith039_tableaux_cdcl.output) (deps (:input testfile-arith039.ae)) @@ -57116,12 +56353,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith039.expected - testfile-arith039_tableaux_cdcl.output))) + (deps testfile-arith039_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_tableaux_cdcl.output))) (rule (target testfile-arith039_tableaux.output) (deps (:input testfile-arith039.ae)) @@ -57139,10 +56375,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith039.expected testfile-arith039_tableaux.output))) + (deps testfile-arith039_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_tableaux.output))) (rule (target testfile-arith039_legacy.output) (deps (:input testfile-arith039.ae)) @@ -57159,10 +56396,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith039.expected testfile-arith039_legacy.output))) + (deps testfile-arith039_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_legacy.output))) (rule (target testfile-arith039_dolmen.output) (deps (:input testfile-arith039.ae)) @@ -57179,10 +56417,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith039.expected testfile-arith039_dolmen.output))) + (deps testfile-arith039_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_dolmen.output))) (rule (target testfile-arith039_fpa.output) (deps (:input testfile-arith039.ae)) @@ -57199,10 +56438,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith039.expected testfile-arith039_fpa.output))) + (deps testfile-arith039_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith039.expected testfile-arith039_fpa.output))) (rule (target testfile-arith038_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith038.ae)) @@ -57221,12 +56461,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith038.expected - testfile-arith038_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith038_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith038.ae)) @@ -57247,12 +56486,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith038.expected - testfile-arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith038.ae)) @@ -57272,12 +56510,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith038.expected - testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith038_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith038.ae)) @@ -57296,12 +56533,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith038.expected - testfile-arith038_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith038_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith038.ae)) @@ -57320,12 +56556,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith038.expected - testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith038_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith038.ae)) @@ -57344,12 +56579,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith038.expected - testfile-arith038_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith038_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith038_cdcl.output) (deps (:input testfile-arith038.ae)) @@ -57367,10 +56601,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith038.expected testfile-arith038_cdcl.output))) + (deps testfile-arith038_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_cdcl.output))) (rule (target testfile-arith038_tableaux_cdcl.output) (deps (:input testfile-arith038.ae)) @@ -57388,12 +56623,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith038.expected - testfile-arith038_tableaux_cdcl.output))) + (deps testfile-arith038_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_tableaux_cdcl.output))) (rule (target testfile-arith038_tableaux.output) (deps (:input testfile-arith038.ae)) @@ -57411,10 +56645,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith038.expected testfile-arith038_tableaux.output))) + (deps testfile-arith038_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_tableaux.output))) (rule (target testfile-arith038_legacy.output) (deps (:input testfile-arith038.ae)) @@ -57431,10 +56666,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith038.expected testfile-arith038_legacy.output))) + (deps testfile-arith038_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_legacy.output))) (rule (target testfile-arith038_dolmen.output) (deps (:input testfile-arith038.ae)) @@ -57451,10 +56687,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith038.expected testfile-arith038_dolmen.output))) + (deps testfile-arith038_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_dolmen.output))) (rule (target testfile-arith038_fpa.output) (deps (:input testfile-arith038.ae)) @@ -57471,10 +56708,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith038.expected testfile-arith038_fpa.output))) + (deps testfile-arith038_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith038.expected testfile-arith038_fpa.output))) (rule (target testfile-arith037_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith037.ae)) @@ -57493,12 +56731,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith037.expected - testfile-arith037_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith037_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith037.ae)) @@ -57519,12 +56756,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith037.expected - testfile-arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith037.ae)) @@ -57544,12 +56780,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith037.expected - testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith037_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith037.ae)) @@ -57568,12 +56803,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith037.expected - testfile-arith037_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith037_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith037.ae)) @@ -57592,12 +56826,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith037.expected - testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith037_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith037.ae)) @@ -57616,12 +56849,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith037.expected - testfile-arith037_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith037_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith037_cdcl.output) (deps (:input testfile-arith037.ae)) @@ -57639,10 +56871,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith037.expected testfile-arith037_cdcl.output))) + (deps testfile-arith037_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_cdcl.output))) (rule (target testfile-arith037_tableaux_cdcl.output) (deps (:input testfile-arith037.ae)) @@ -57660,12 +56893,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith037.expected - testfile-arith037_tableaux_cdcl.output))) + (deps testfile-arith037_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_tableaux_cdcl.output))) (rule (target testfile-arith037_tableaux.output) (deps (:input testfile-arith037.ae)) @@ -57683,10 +56915,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith037.expected testfile-arith037_tableaux.output))) + (deps testfile-arith037_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_tableaux.output))) (rule (target testfile-arith037_legacy.output) (deps (:input testfile-arith037.ae)) @@ -57703,10 +56936,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith037.expected testfile-arith037_legacy.output))) + (deps testfile-arith037_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_legacy.output))) (rule (target testfile-arith037_dolmen.output) (deps (:input testfile-arith037.ae)) @@ -57723,10 +56957,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith037.expected testfile-arith037_dolmen.output))) + (deps testfile-arith037_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_dolmen.output))) (rule (target testfile-arith037_fpa.output) (deps (:input testfile-arith037.ae)) @@ -57743,10 +56978,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith037.expected testfile-arith037_fpa.output))) + (deps testfile-arith037_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith037.expected testfile-arith037_fpa.output))) (rule (target testfile-arith036_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith036.ae)) @@ -57765,12 +57001,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith036.expected - testfile-arith036_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith036_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith036.ae)) @@ -57791,12 +57026,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith036.expected - testfile-arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith036.ae)) @@ -57816,12 +57050,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith036.expected - testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith036_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith036.ae)) @@ -57840,12 +57073,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith036.expected - testfile-arith036_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith036_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith036.ae)) @@ -57864,12 +57096,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith036.expected - testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith036_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith036.ae)) @@ -57888,12 +57119,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith036.expected - testfile-arith036_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith036_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith036_cdcl.output) (deps (:input testfile-arith036.ae)) @@ -57911,10 +57141,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith036.expected testfile-arith036_cdcl.output))) + (deps testfile-arith036_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_cdcl.output))) (rule (target testfile-arith036_tableaux_cdcl.output) (deps (:input testfile-arith036.ae)) @@ -57932,12 +57163,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith036.expected - testfile-arith036_tableaux_cdcl.output))) + (deps testfile-arith036_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_tableaux_cdcl.output))) (rule (target testfile-arith036_tableaux.output) (deps (:input testfile-arith036.ae)) @@ -57955,10 +57185,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith036.expected testfile-arith036_tableaux.output))) + (deps testfile-arith036_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_tableaux.output))) (rule (target testfile-arith036_legacy.output) (deps (:input testfile-arith036.ae)) @@ -57975,10 +57206,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith036.expected testfile-arith036_legacy.output))) + (deps testfile-arith036_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_legacy.output))) (rule (target testfile-arith036_dolmen.output) (deps (:input testfile-arith036.ae)) @@ -57995,10 +57227,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith036.expected testfile-arith036_dolmen.output))) + (deps testfile-arith036_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_dolmen.output))) (rule (target testfile-arith036_fpa.output) (deps (:input testfile-arith036.ae)) @@ -58015,10 +57248,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith036.expected testfile-arith036_fpa.output))) + (deps testfile-arith036_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith036.expected testfile-arith036_fpa.output))) (rule (target testfile-arith035_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith035.ae)) @@ -58037,12 +57271,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith035.expected - testfile-arith035_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith035_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith035.ae)) @@ -58063,12 +57296,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith035.expected - testfile-arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith035.ae)) @@ -58088,12 +57320,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith035.expected - testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith035_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith035.ae)) @@ -58112,12 +57343,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith035.expected - testfile-arith035_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith035_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith035.ae)) @@ -58136,12 +57366,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith035.expected - testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith035_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith035.ae)) @@ -58160,12 +57389,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith035.expected - testfile-arith035_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith035_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith035_cdcl.output) (deps (:input testfile-arith035.ae)) @@ -58183,10 +57411,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith035.expected testfile-arith035_cdcl.output))) + (deps testfile-arith035_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_cdcl.output))) (rule (target testfile-arith035_tableaux_cdcl.output) (deps (:input testfile-arith035.ae)) @@ -58204,12 +57433,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith035.expected - testfile-arith035_tableaux_cdcl.output))) + (deps testfile-arith035_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_tableaux_cdcl.output))) (rule (target testfile-arith035_tableaux.output) (deps (:input testfile-arith035.ae)) @@ -58227,10 +57455,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith035.expected testfile-arith035_tableaux.output))) + (deps testfile-arith035_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_tableaux.output))) (rule (target testfile-arith035_legacy.output) (deps (:input testfile-arith035.ae)) @@ -58247,10 +57476,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith035.expected testfile-arith035_legacy.output))) + (deps testfile-arith035_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_legacy.output))) (rule (target testfile-arith035_dolmen.output) (deps (:input testfile-arith035.ae)) @@ -58267,10 +57497,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith035.expected testfile-arith035_dolmen.output))) + (deps testfile-arith035_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_dolmen.output))) (rule (target testfile-arith035_fpa.output) (deps (:input testfile-arith035.ae)) @@ -58287,10 +57518,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith035.expected testfile-arith035_fpa.output))) + (deps testfile-arith035_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith035.expected testfile-arith035_fpa.output))) (rule (target testfile-arith034_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith034.ae)) @@ -58309,12 +57541,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith034.expected - testfile-arith034_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith034_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith034.ae)) @@ -58335,12 +57566,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith034.expected - testfile-arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith034.ae)) @@ -58360,12 +57590,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith034.expected - testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith034_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith034.ae)) @@ -58384,12 +57613,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith034.expected - testfile-arith034_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith034_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith034.ae)) @@ -58408,12 +57636,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith034.expected - testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith034_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith034.ae)) @@ -58432,12 +57659,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith034.expected - testfile-arith034_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith034_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith034_cdcl.output) (deps (:input testfile-arith034.ae)) @@ -58455,10 +57681,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith034.expected testfile-arith034_cdcl.output))) + (deps testfile-arith034_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_cdcl.output))) (rule (target testfile-arith034_tableaux_cdcl.output) (deps (:input testfile-arith034.ae)) @@ -58476,12 +57703,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith034.expected - testfile-arith034_tableaux_cdcl.output))) + (deps testfile-arith034_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_tableaux_cdcl.output))) (rule (target testfile-arith034_tableaux.output) (deps (:input testfile-arith034.ae)) @@ -58499,10 +57725,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith034.expected testfile-arith034_tableaux.output))) + (deps testfile-arith034_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_tableaux.output))) (rule (target testfile-arith034_legacy.output) (deps (:input testfile-arith034.ae)) @@ -58519,10 +57746,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith034.expected testfile-arith034_legacy.output))) + (deps testfile-arith034_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_legacy.output))) (rule (target testfile-arith034_dolmen.output) (deps (:input testfile-arith034.ae)) @@ -58539,10 +57767,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith034.expected testfile-arith034_dolmen.output))) + (deps testfile-arith034_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_dolmen.output))) (rule (target testfile-arith034_fpa.output) (deps (:input testfile-arith034.ae)) @@ -58559,10 +57788,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith034.expected testfile-arith034_fpa.output))) + (deps testfile-arith034_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith034.expected testfile-arith034_fpa.output))) (rule (target testfile-arith033_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith033.ae)) @@ -58581,12 +57811,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith033.expected - testfile-arith033_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith033_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith033.ae)) @@ -58607,12 +57836,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith033.expected - testfile-arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith033.ae)) @@ -58632,12 +57860,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith033.expected - testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith033_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith033.ae)) @@ -58656,12 +57883,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith033.expected - testfile-arith033_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith033_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith033.ae)) @@ -58680,12 +57906,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith033.expected - testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith033_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith033.ae)) @@ -58704,12 +57929,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith033.expected - testfile-arith033_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith033_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith033_cdcl.output) (deps (:input testfile-arith033.ae)) @@ -58727,10 +57951,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith033.expected testfile-arith033_cdcl.output))) + (deps testfile-arith033_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_cdcl.output))) (rule (target testfile-arith033_tableaux_cdcl.output) (deps (:input testfile-arith033.ae)) @@ -58748,12 +57973,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith033.expected - testfile-arith033_tableaux_cdcl.output))) + (deps testfile-arith033_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_tableaux_cdcl.output))) (rule (target testfile-arith033_tableaux.output) (deps (:input testfile-arith033.ae)) @@ -58771,10 +57995,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith033.expected testfile-arith033_tableaux.output))) + (deps testfile-arith033_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_tableaux.output))) (rule (target testfile-arith033_legacy.output) (deps (:input testfile-arith033.ae)) @@ -58791,10 +58016,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith033.expected testfile-arith033_legacy.output))) + (deps testfile-arith033_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_legacy.output))) (rule (target testfile-arith033_dolmen.output) (deps (:input testfile-arith033.ae)) @@ -58811,10 +58037,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith033.expected testfile-arith033_dolmen.output))) + (deps testfile-arith033_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_dolmen.output))) (rule (target testfile-arith033_fpa.output) (deps (:input testfile-arith033.ae)) @@ -58831,10 +58058,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith033.expected testfile-arith033_fpa.output))) + (deps testfile-arith033_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith033.expected testfile-arith033_fpa.output))) (rule (target testfile-arith032_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith032.ae)) @@ -58853,12 +58081,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith032.expected - testfile-arith032_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith032_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith032.ae)) @@ -58879,12 +58106,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith032.expected - testfile-arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith032.ae)) @@ -58904,12 +58130,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith032.expected - testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith032_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith032.ae)) @@ -58928,12 +58153,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith032.expected - testfile-arith032_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith032_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith032.ae)) @@ -58952,12 +58176,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith032.expected - testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith032_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith032.ae)) @@ -58976,12 +58199,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith032.expected - testfile-arith032_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith032_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith032_cdcl.output) (deps (:input testfile-arith032.ae)) @@ -58999,10 +58221,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith032.expected testfile-arith032_cdcl.output))) + (deps testfile-arith032_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_cdcl.output))) (rule (target testfile-arith032_tableaux_cdcl.output) (deps (:input testfile-arith032.ae)) @@ -59020,12 +58243,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith032.expected - testfile-arith032_tableaux_cdcl.output))) + (deps testfile-arith032_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_tableaux_cdcl.output))) (rule (target testfile-arith032_tableaux.output) (deps (:input testfile-arith032.ae)) @@ -59043,10 +58265,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith032.expected testfile-arith032_tableaux.output))) + (deps testfile-arith032_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_tableaux.output))) (rule (target testfile-arith032_legacy.output) (deps (:input testfile-arith032.ae)) @@ -59063,10 +58286,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith032.expected testfile-arith032_legacy.output))) + (deps testfile-arith032_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_legacy.output))) (rule (target testfile-arith032_dolmen.output) (deps (:input testfile-arith032.ae)) @@ -59083,10 +58307,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith032.expected testfile-arith032_dolmen.output))) + (deps testfile-arith032_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_dolmen.output))) (rule (target testfile-arith032_fpa.output) (deps (:input testfile-arith032.ae)) @@ -59103,10 +58328,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith032.expected testfile-arith032_fpa.output))) + (deps testfile-arith032_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith032.expected testfile-arith032_fpa.output))) (rule (target testfile-arith031_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith031.ae)) @@ -59125,12 +58351,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith031.expected - testfile-arith031_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith031_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith031.ae)) @@ -59151,12 +58376,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith031.expected - testfile-arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith031.ae)) @@ -59176,12 +58400,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith031.expected - testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith031_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith031.ae)) @@ -59200,12 +58423,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith031.expected - testfile-arith031_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith031_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith031.ae)) @@ -59224,12 +58446,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith031.expected - testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith031_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith031.ae)) @@ -59248,12 +58469,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith031.expected - testfile-arith031_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith031_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith031_cdcl.output) (deps (:input testfile-arith031.ae)) @@ -59271,10 +58491,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith031.expected testfile-arith031_cdcl.output))) + (deps testfile-arith031_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_cdcl.output))) (rule (target testfile-arith031_tableaux_cdcl.output) (deps (:input testfile-arith031.ae)) @@ -59292,12 +58513,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith031.expected - testfile-arith031_tableaux_cdcl.output))) + (deps testfile-arith031_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_tableaux_cdcl.output))) (rule (target testfile-arith031_tableaux.output) (deps (:input testfile-arith031.ae)) @@ -59315,10 +58535,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith031.expected testfile-arith031_tableaux.output))) + (deps testfile-arith031_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_tableaux.output))) (rule (target testfile-arith031_legacy.output) (deps (:input testfile-arith031.ae)) @@ -59335,10 +58556,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith031.expected testfile-arith031_legacy.output))) + (deps testfile-arith031_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_legacy.output))) (rule (target testfile-arith031_dolmen.output) (deps (:input testfile-arith031.ae)) @@ -59355,10 +58577,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith031.expected testfile-arith031_dolmen.output))) + (deps testfile-arith031_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_dolmen.output))) (rule (target testfile-arith031_fpa.output) (deps (:input testfile-arith031.ae)) @@ -59375,10 +58598,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith031.expected testfile-arith031_fpa.output))) + (deps testfile-arith031_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith031.expected testfile-arith031_fpa.output))) (rule (target testfile-arith030_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith030.ae)) @@ -59397,12 +58621,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith030.expected - testfile-arith030_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith030_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith030.ae)) @@ -59423,12 +58646,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith030.expected - testfile-arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith030.ae)) @@ -59448,12 +58670,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith030.expected - testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith030_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith030.ae)) @@ -59472,12 +58693,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith030.expected - testfile-arith030_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith030_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith030.ae)) @@ -59496,12 +58716,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith030.expected - testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith030_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith030.ae)) @@ -59520,12 +58739,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith030.expected - testfile-arith030_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith030_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith030_cdcl.output) (deps (:input testfile-arith030.ae)) @@ -59543,10 +58761,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith030.expected testfile-arith030_cdcl.output))) + (deps testfile-arith030_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_cdcl.output))) (rule (target testfile-arith030_tableaux_cdcl.output) (deps (:input testfile-arith030.ae)) @@ -59564,12 +58783,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith030.expected - testfile-arith030_tableaux_cdcl.output))) + (deps testfile-arith030_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_tableaux_cdcl.output))) (rule (target testfile-arith030_tableaux.output) (deps (:input testfile-arith030.ae)) @@ -59587,10 +58805,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith030.expected testfile-arith030_tableaux.output))) + (deps testfile-arith030_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_tableaux.output))) (rule (target testfile-arith030_legacy.output) (deps (:input testfile-arith030.ae)) @@ -59607,10 +58826,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith030.expected testfile-arith030_legacy.output))) + (deps testfile-arith030_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_legacy.output))) (rule (target testfile-arith030_dolmen.output) (deps (:input testfile-arith030.ae)) @@ -59627,10 +58847,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith030.expected testfile-arith030_dolmen.output))) + (deps testfile-arith030_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_dolmen.output))) (rule (target testfile-arith030_fpa.output) (deps (:input testfile-arith030.ae)) @@ -59647,10 +58868,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith030.expected testfile-arith030_fpa.output))) + (deps testfile-arith030_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith030.expected testfile-arith030_fpa.output))) (rule (target testfile-arith029_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith029.ae)) @@ -59669,12 +58891,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith029.expected - testfile-arith029_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith029_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith029.ae)) @@ -59695,12 +58916,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith029.expected - testfile-arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith029.ae)) @@ -59720,12 +58940,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith029.expected - testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith029_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith029.ae)) @@ -59744,12 +58963,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith029.expected - testfile-arith029_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith029_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith029.ae)) @@ -59768,12 +58986,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith029.expected - testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith029_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith029.ae)) @@ -59792,12 +59009,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith029.expected - testfile-arith029_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith029_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith029_cdcl.output) (deps (:input testfile-arith029.ae)) @@ -59815,10 +59031,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith029.expected testfile-arith029_cdcl.output))) + (deps testfile-arith029_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_cdcl.output))) (rule (target testfile-arith029_tableaux_cdcl.output) (deps (:input testfile-arith029.ae)) @@ -59836,12 +59053,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith029.expected - testfile-arith029_tableaux_cdcl.output))) + (deps testfile-arith029_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_tableaux_cdcl.output))) (rule (target testfile-arith029_tableaux.output) (deps (:input testfile-arith029.ae)) @@ -59859,10 +59075,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith029.expected testfile-arith029_tableaux.output))) + (deps testfile-arith029_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_tableaux.output))) (rule (target testfile-arith029_legacy.output) (deps (:input testfile-arith029.ae)) @@ -59879,10 +59096,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith029.expected testfile-arith029_legacy.output))) + (deps testfile-arith029_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_legacy.output))) (rule (target testfile-arith029_dolmen.output) (deps (:input testfile-arith029.ae)) @@ -59899,10 +59117,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith029.expected testfile-arith029_dolmen.output))) + (deps testfile-arith029_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_dolmen.output))) (rule (target testfile-arith029_fpa.output) (deps (:input testfile-arith029.ae)) @@ -59919,10 +59138,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith029.expected testfile-arith029_fpa.output))) + (deps testfile-arith029_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith029.expected testfile-arith029_fpa.output))) (rule (target testfile-arith028_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith028.ae)) @@ -59941,12 +59161,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith028.expected - testfile-arith028_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith028_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith028.ae)) @@ -59967,12 +59186,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith028.expected - testfile-arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith028.ae)) @@ -59992,12 +59210,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith028.expected - testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith028_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith028.ae)) @@ -60016,12 +59233,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith028.expected - testfile-arith028_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith028_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith028.ae)) @@ -60040,12 +59256,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith028.expected - testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith028_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith028.ae)) @@ -60064,12 +59279,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith028.expected - testfile-arith028_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith028_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith028_cdcl.output) (deps (:input testfile-arith028.ae)) @@ -60087,10 +59301,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith028.expected testfile-arith028_cdcl.output))) + (deps testfile-arith028_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_cdcl.output))) (rule (target testfile-arith028_tableaux_cdcl.output) (deps (:input testfile-arith028.ae)) @@ -60108,12 +59323,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith028.expected - testfile-arith028_tableaux_cdcl.output))) + (deps testfile-arith028_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_tableaux_cdcl.output))) (rule (target testfile-arith028_tableaux.output) (deps (:input testfile-arith028.ae)) @@ -60131,10 +59345,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith028.expected testfile-arith028_tableaux.output))) + (deps testfile-arith028_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_tableaux.output))) (rule (target testfile-arith028_legacy.output) (deps (:input testfile-arith028.ae)) @@ -60151,10 +59366,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith028.expected testfile-arith028_legacy.output))) + (deps testfile-arith028_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_legacy.output))) (rule (target testfile-arith028_dolmen.output) (deps (:input testfile-arith028.ae)) @@ -60171,10 +59387,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith028.expected testfile-arith028_dolmen.output))) + (deps testfile-arith028_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_dolmen.output))) (rule (target testfile-arith028_fpa.output) (deps (:input testfile-arith028.ae)) @@ -60191,10 +59408,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith028.expected testfile-arith028_fpa.output))) + (deps testfile-arith028_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith028.expected testfile-arith028_fpa.output))) (rule (target testfile-arith027_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith027.ae)) @@ -60213,12 +59431,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith027.expected - testfile-arith027_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith027_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith027.ae)) @@ -60239,12 +59456,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith027.expected - testfile-arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith027.ae)) @@ -60264,12 +59480,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith027.expected - testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith027_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith027.ae)) @@ -60288,12 +59503,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith027.expected - testfile-arith027_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith027_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith027.ae)) @@ -60312,12 +59526,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith027.expected - testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith027_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith027.ae)) @@ -60336,12 +59549,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith027.expected - testfile-arith027_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith027_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith027_cdcl.output) (deps (:input testfile-arith027.ae)) @@ -60359,10 +59571,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith027.expected testfile-arith027_cdcl.output))) + (deps testfile-arith027_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_cdcl.output))) (rule (target testfile-arith027_tableaux_cdcl.output) (deps (:input testfile-arith027.ae)) @@ -60380,12 +59593,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith027.expected - testfile-arith027_tableaux_cdcl.output))) + (deps testfile-arith027_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_tableaux_cdcl.output))) (rule (target testfile-arith027_tableaux.output) (deps (:input testfile-arith027.ae)) @@ -60403,10 +59615,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith027.expected testfile-arith027_tableaux.output))) + (deps testfile-arith027_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_tableaux.output))) (rule (target testfile-arith027_legacy.output) (deps (:input testfile-arith027.ae)) @@ -60423,10 +59636,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith027.expected testfile-arith027_legacy.output))) + (deps testfile-arith027_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_legacy.output))) (rule (target testfile-arith027_dolmen.output) (deps (:input testfile-arith027.ae)) @@ -60443,10 +59657,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith027.expected testfile-arith027_dolmen.output))) + (deps testfile-arith027_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_dolmen.output))) (rule (target testfile-arith027_fpa.output) (deps (:input testfile-arith027.ae)) @@ -60463,10 +59678,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith027.expected testfile-arith027_fpa.output))) + (deps testfile-arith027_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith027.expected testfile-arith027_fpa.output))) (rule (target testfile-arith026_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith026.ae)) @@ -60485,12 +59701,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith026.expected - testfile-arith026_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith026_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith026.ae)) @@ -60511,12 +59726,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith026.expected - testfile-arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith026.ae)) @@ -60536,12 +59750,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith026.expected - testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith026_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith026.ae)) @@ -60560,12 +59773,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith026.expected - testfile-arith026_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith026_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith026.ae)) @@ -60584,12 +59796,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith026.expected - testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith026_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith026.ae)) @@ -60608,12 +59819,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith026.expected - testfile-arith026_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith026_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith026_cdcl.output) (deps (:input testfile-arith026.ae)) @@ -60631,10 +59841,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith026.expected testfile-arith026_cdcl.output))) + (deps testfile-arith026_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_cdcl.output))) (rule (target testfile-arith026_tableaux_cdcl.output) (deps (:input testfile-arith026.ae)) @@ -60652,12 +59863,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith026.expected - testfile-arith026_tableaux_cdcl.output))) + (deps testfile-arith026_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_tableaux_cdcl.output))) (rule (target testfile-arith026_tableaux.output) (deps (:input testfile-arith026.ae)) @@ -60675,10 +59885,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith026.expected testfile-arith026_tableaux.output))) + (deps testfile-arith026_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_tableaux.output))) (rule (target testfile-arith026_legacy.output) (deps (:input testfile-arith026.ae)) @@ -60695,10 +59906,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith026.expected testfile-arith026_legacy.output))) + (deps testfile-arith026_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_legacy.output))) (rule (target testfile-arith026_dolmen.output) (deps (:input testfile-arith026.ae)) @@ -60715,10 +59927,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith026.expected testfile-arith026_dolmen.output))) + (deps testfile-arith026_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_dolmen.output))) (rule (target testfile-arith026_fpa.output) (deps (:input testfile-arith026.ae)) @@ -60735,10 +59948,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith026.expected testfile-arith026_fpa.output))) + (deps testfile-arith026_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith026.expected testfile-arith026_fpa.output))) (rule (target testfile-arith025_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith025.ae)) @@ -60757,12 +59971,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith025.expected - testfile-arith025_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith025_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith025.ae)) @@ -60783,12 +59996,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith025.expected - testfile-arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith025.ae)) @@ -60808,12 +60020,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith025.expected - testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith025_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith025.ae)) @@ -60832,12 +60043,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith025.expected - testfile-arith025_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith025_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith025.ae)) @@ -60856,12 +60066,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith025.expected - testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith025_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith025.ae)) @@ -60880,12 +60089,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith025.expected - testfile-arith025_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith025_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith025_cdcl.output) (deps (:input testfile-arith025.ae)) @@ -60903,10 +60111,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith025.expected testfile-arith025_cdcl.output))) + (deps testfile-arith025_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_cdcl.output))) (rule (target testfile-arith025_tableaux_cdcl.output) (deps (:input testfile-arith025.ae)) @@ -60924,12 +60133,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith025.expected - testfile-arith025_tableaux_cdcl.output))) + (deps testfile-arith025_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_tableaux_cdcl.output))) (rule (target testfile-arith025_tableaux.output) (deps (:input testfile-arith025.ae)) @@ -60947,10 +60155,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith025.expected testfile-arith025_tableaux.output))) + (deps testfile-arith025_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_tableaux.output))) (rule (target testfile-arith025_legacy.output) (deps (:input testfile-arith025.ae)) @@ -60967,10 +60176,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith025.expected testfile-arith025_legacy.output))) + (deps testfile-arith025_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_legacy.output))) (rule (target testfile-arith025_dolmen.output) (deps (:input testfile-arith025.ae)) @@ -60987,10 +60197,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith025.expected testfile-arith025_dolmen.output))) + (deps testfile-arith025_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_dolmen.output))) (rule (target testfile-arith025_fpa.output) (deps (:input testfile-arith025.ae)) @@ -61007,10 +60218,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith025.expected testfile-arith025_fpa.output))) + (deps testfile-arith025_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith025.expected testfile-arith025_fpa.output))) (rule (target testfile-arith024_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith024.ae)) @@ -61029,12 +60241,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith024.expected - testfile-arith024_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith024_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith024.ae)) @@ -61055,12 +60266,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith024.expected - testfile-arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith024.ae)) @@ -61080,12 +60290,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith024.expected - testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith024_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith024.ae)) @@ -61104,12 +60313,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith024.expected - testfile-arith024_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith024_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith024.ae)) @@ -61128,12 +60336,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith024.expected - testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith024_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith024.ae)) @@ -61152,12 +60359,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith024.expected - testfile-arith024_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith024_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith024_cdcl.output) (deps (:input testfile-arith024.ae)) @@ -61175,10 +60381,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith024.expected testfile-arith024_cdcl.output))) + (deps testfile-arith024_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_cdcl.output))) (rule (target testfile-arith024_tableaux_cdcl.output) (deps (:input testfile-arith024.ae)) @@ -61196,12 +60403,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith024.expected - testfile-arith024_tableaux_cdcl.output))) + (deps testfile-arith024_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_tableaux_cdcl.output))) (rule (target testfile-arith024_tableaux.output) (deps (:input testfile-arith024.ae)) @@ -61219,10 +60425,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith024.expected testfile-arith024_tableaux.output))) + (deps testfile-arith024_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_tableaux.output))) (rule (target testfile-arith024_legacy.output) (deps (:input testfile-arith024.ae)) @@ -61239,10 +60446,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith024.expected testfile-arith024_legacy.output))) + (deps testfile-arith024_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_legacy.output))) (rule (target testfile-arith024_dolmen.output) (deps (:input testfile-arith024.ae)) @@ -61259,10 +60467,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith024.expected testfile-arith024_dolmen.output))) + (deps testfile-arith024_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_dolmen.output))) (rule (target testfile-arith024_fpa.output) (deps (:input testfile-arith024.ae)) @@ -61279,10 +60488,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith024.expected testfile-arith024_fpa.output))) + (deps testfile-arith024_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith024.expected testfile-arith024_fpa.output))) (rule (target testfile-arith023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith023.ae)) @@ -61301,12 +60511,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith023.expected - testfile-arith023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith023.ae)) @@ -61327,12 +60536,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith023.expected - testfile-arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith023.ae)) @@ -61352,12 +60560,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith023.expected - testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith023.ae)) @@ -61376,12 +60583,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith023.expected - testfile-arith023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith023.ae)) @@ -61400,12 +60606,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith023.expected - testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith023.ae)) @@ -61424,12 +60629,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith023.expected - testfile-arith023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith023_cdcl.output) (deps (:input testfile-arith023.ae)) @@ -61447,10 +60651,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith023.expected testfile-arith023_cdcl.output))) + (deps testfile-arith023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_cdcl.output))) (rule (target testfile-arith023_tableaux_cdcl.output) (deps (:input testfile-arith023.ae)) @@ -61468,12 +60673,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith023.expected - testfile-arith023_tableaux_cdcl.output))) + (deps testfile-arith023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_tableaux_cdcl.output))) (rule (target testfile-arith023_tableaux.output) (deps (:input testfile-arith023.ae)) @@ -61491,10 +60695,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith023.expected testfile-arith023_tableaux.output))) + (deps testfile-arith023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_tableaux.output))) (rule (target testfile-arith023_legacy.output) (deps (:input testfile-arith023.ae)) @@ -61511,10 +60716,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith023.expected testfile-arith023_legacy.output))) + (deps testfile-arith023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_legacy.output))) (rule (target testfile-arith023_dolmen.output) (deps (:input testfile-arith023.ae)) @@ -61531,10 +60737,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith023.expected testfile-arith023_dolmen.output))) + (deps testfile-arith023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_dolmen.output))) (rule (target testfile-arith023_fpa.output) (deps (:input testfile-arith023.ae)) @@ -61551,10 +60758,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith023.expected testfile-arith023_fpa.output))) + (deps testfile-arith023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith023.expected testfile-arith023_fpa.output))) (rule (target testfile-arith022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith022.ae)) @@ -61573,12 +60781,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith022.expected - testfile-arith022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith022.ae)) @@ -61599,12 +60806,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith022.expected - testfile-arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith022.ae)) @@ -61624,12 +60830,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith022.expected - testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith022.ae)) @@ -61648,12 +60853,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith022.expected - testfile-arith022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith022.ae)) @@ -61672,12 +60876,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith022.expected - testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith022.ae)) @@ -61696,12 +60899,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith022.expected - testfile-arith022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith022_cdcl.output) (deps (:input testfile-arith022.ae)) @@ -61719,10 +60921,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith022.expected testfile-arith022_cdcl.output))) + (deps testfile-arith022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_cdcl.output))) (rule (target testfile-arith022_tableaux_cdcl.output) (deps (:input testfile-arith022.ae)) @@ -61740,12 +60943,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith022.expected - testfile-arith022_tableaux_cdcl.output))) + (deps testfile-arith022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_tableaux_cdcl.output))) (rule (target testfile-arith022_tableaux.output) (deps (:input testfile-arith022.ae)) @@ -61763,10 +60965,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith022.expected testfile-arith022_tableaux.output))) + (deps testfile-arith022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_tableaux.output))) (rule (target testfile-arith022_legacy.output) (deps (:input testfile-arith022.ae)) @@ -61783,10 +60986,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith022.expected testfile-arith022_legacy.output))) + (deps testfile-arith022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_legacy.output))) (rule (target testfile-arith022_dolmen.output) (deps (:input testfile-arith022.ae)) @@ -61803,10 +61007,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith022.expected testfile-arith022_dolmen.output))) + (deps testfile-arith022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_dolmen.output))) (rule (target testfile-arith022_fpa.output) (deps (:input testfile-arith022.ae)) @@ -61823,10 +61028,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith022.expected testfile-arith022_fpa.output))) + (deps testfile-arith022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith022.expected testfile-arith022_fpa.output))) (rule (target testfile-arith021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith021.ae)) @@ -61845,12 +61051,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith021.expected - testfile-arith021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith021.ae)) @@ -61871,12 +61076,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith021.expected - testfile-arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith021.ae)) @@ -61896,12 +61100,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith021.expected - testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith021.ae)) @@ -61920,12 +61123,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith021.expected - testfile-arith021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith021.ae)) @@ -61944,12 +61146,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith021.expected - testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith021.ae)) @@ -61968,12 +61169,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith021.expected - testfile-arith021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith021_cdcl.output) (deps (:input testfile-arith021.ae)) @@ -61991,10 +61191,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith021.expected testfile-arith021_cdcl.output))) + (deps testfile-arith021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_cdcl.output))) (rule (target testfile-arith021_tableaux_cdcl.output) (deps (:input testfile-arith021.ae)) @@ -62012,12 +61213,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith021.expected - testfile-arith021_tableaux_cdcl.output))) + (deps testfile-arith021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_tableaux_cdcl.output))) (rule (target testfile-arith021_tableaux.output) (deps (:input testfile-arith021.ae)) @@ -62035,10 +61235,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith021.expected testfile-arith021_tableaux.output))) + (deps testfile-arith021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_tableaux.output))) (rule (target testfile-arith021_legacy.output) (deps (:input testfile-arith021.ae)) @@ -62055,10 +61256,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith021.expected testfile-arith021_legacy.output))) + (deps testfile-arith021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_legacy.output))) (rule (target testfile-arith021_dolmen.output) (deps (:input testfile-arith021.ae)) @@ -62075,10 +61277,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith021.expected testfile-arith021_dolmen.output))) + (deps testfile-arith021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_dolmen.output))) (rule (target testfile-arith021_fpa.output) (deps (:input testfile-arith021.ae)) @@ -62095,10 +61298,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith021.expected testfile-arith021_fpa.output))) + (deps testfile-arith021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith021.expected testfile-arith021_fpa.output))) (rule (target testfile-arith020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith020.ae)) @@ -62117,12 +61321,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith020.expected - testfile-arith020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith020.ae)) @@ -62143,12 +61346,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith020.expected - testfile-arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith020.ae)) @@ -62168,12 +61370,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith020.expected - testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith020.ae)) @@ -62192,12 +61393,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith020.expected - testfile-arith020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith020.ae)) @@ -62216,12 +61416,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith020.expected - testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith020.ae)) @@ -62240,12 +61439,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith020.expected - testfile-arith020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith020_cdcl.output) (deps (:input testfile-arith020.ae)) @@ -62263,10 +61461,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith020.expected testfile-arith020_cdcl.output))) + (deps testfile-arith020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_cdcl.output))) (rule (target testfile-arith020_tableaux_cdcl.output) (deps (:input testfile-arith020.ae)) @@ -62284,12 +61483,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith020.expected - testfile-arith020_tableaux_cdcl.output))) + (deps testfile-arith020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_tableaux_cdcl.output))) (rule (target testfile-arith020_tableaux.output) (deps (:input testfile-arith020.ae)) @@ -62307,10 +61505,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith020.expected testfile-arith020_tableaux.output))) + (deps testfile-arith020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_tableaux.output))) (rule (target testfile-arith020_legacy.output) (deps (:input testfile-arith020.ae)) @@ -62327,10 +61526,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith020.expected testfile-arith020_legacy.output))) + (deps testfile-arith020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_legacy.output))) (rule (target testfile-arith020_dolmen.output) (deps (:input testfile-arith020.ae)) @@ -62347,10 +61547,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith020.expected testfile-arith020_dolmen.output))) + (deps testfile-arith020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_dolmen.output))) (rule (target testfile-arith020_fpa.output) (deps (:input testfile-arith020.ae)) @@ -62367,10 +61568,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith020.expected testfile-arith020_fpa.output))) + (deps testfile-arith020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith020.expected testfile-arith020_fpa.output))) (rule (target testfile-arith019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith019.ae)) @@ -62389,12 +61591,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith019.expected - testfile-arith019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith019.ae)) @@ -62415,12 +61616,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith019.expected - testfile-arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith019.ae)) @@ -62440,12 +61640,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith019.expected - testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith019.ae)) @@ -62464,12 +61663,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith019.expected - testfile-arith019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith019.ae)) @@ -62488,12 +61686,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith019.expected - testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith019.ae)) @@ -62512,12 +61709,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith019.expected - testfile-arith019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith019_cdcl.output) (deps (:input testfile-arith019.ae)) @@ -62535,10 +61731,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith019.expected testfile-arith019_cdcl.output))) + (deps testfile-arith019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_cdcl.output))) (rule (target testfile-arith019_tableaux_cdcl.output) (deps (:input testfile-arith019.ae)) @@ -62556,12 +61753,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith019.expected - testfile-arith019_tableaux_cdcl.output))) + (deps testfile-arith019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_tableaux_cdcl.output))) (rule (target testfile-arith019_tableaux.output) (deps (:input testfile-arith019.ae)) @@ -62579,10 +61775,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith019.expected testfile-arith019_tableaux.output))) + (deps testfile-arith019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_tableaux.output))) (rule (target testfile-arith019_legacy.output) (deps (:input testfile-arith019.ae)) @@ -62599,10 +61796,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith019.expected testfile-arith019_legacy.output))) + (deps testfile-arith019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_legacy.output))) (rule (target testfile-arith019_dolmen.output) (deps (:input testfile-arith019.ae)) @@ -62619,10 +61817,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith019.expected testfile-arith019_dolmen.output))) + (deps testfile-arith019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_dolmen.output))) (rule (target testfile-arith019_fpa.output) (deps (:input testfile-arith019.ae)) @@ -62639,10 +61838,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith019.expected testfile-arith019_fpa.output))) + (deps testfile-arith019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith019.expected testfile-arith019_fpa.output))) (rule (target testfile-arith018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith018.ae)) @@ -62661,12 +61861,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith018.expected - testfile-arith018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith018.ae)) @@ -62687,12 +61886,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith018.expected - testfile-arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith018.ae)) @@ -62712,12 +61910,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith018.expected - testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith018.ae)) @@ -62736,12 +61933,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith018.expected - testfile-arith018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith018.ae)) @@ -62760,12 +61956,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith018.expected - testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith018.ae)) @@ -62784,12 +61979,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith018.expected - testfile-arith018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith018_cdcl.output) (deps (:input testfile-arith018.ae)) @@ -62807,10 +62001,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith018.expected testfile-arith018_cdcl.output))) + (deps testfile-arith018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_cdcl.output))) (rule (target testfile-arith018_tableaux_cdcl.output) (deps (:input testfile-arith018.ae)) @@ -62828,12 +62023,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith018.expected - testfile-arith018_tableaux_cdcl.output))) + (deps testfile-arith018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_tableaux_cdcl.output))) (rule (target testfile-arith018_tableaux.output) (deps (:input testfile-arith018.ae)) @@ -62851,10 +62045,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith018.expected testfile-arith018_tableaux.output))) + (deps testfile-arith018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_tableaux.output))) (rule (target testfile-arith018_legacy.output) (deps (:input testfile-arith018.ae)) @@ -62871,10 +62066,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith018.expected testfile-arith018_legacy.output))) + (deps testfile-arith018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_legacy.output))) (rule (target testfile-arith018_dolmen.output) (deps (:input testfile-arith018.ae)) @@ -62891,10 +62087,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith018.expected testfile-arith018_dolmen.output))) + (deps testfile-arith018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_dolmen.output))) (rule (target testfile-arith018_fpa.output) (deps (:input testfile-arith018.ae)) @@ -62911,10 +62108,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith018.expected testfile-arith018_fpa.output))) + (deps testfile-arith018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith018.expected testfile-arith018_fpa.output))) (rule (target testfile-arith017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith017.ae)) @@ -62933,12 +62131,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith017.expected - testfile-arith017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith017.ae)) @@ -62959,12 +62156,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith017.expected - testfile-arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith017.ae)) @@ -62984,12 +62180,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith017.expected - testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith017.ae)) @@ -63008,12 +62203,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith017.expected - testfile-arith017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith017.ae)) @@ -63032,12 +62226,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith017.expected - testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith017.ae)) @@ -63056,12 +62249,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith017.expected - testfile-arith017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith017_cdcl.output) (deps (:input testfile-arith017.ae)) @@ -63079,10 +62271,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith017.expected testfile-arith017_cdcl.output))) + (deps testfile-arith017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_cdcl.output))) (rule (target testfile-arith017_tableaux_cdcl.output) (deps (:input testfile-arith017.ae)) @@ -63100,12 +62293,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith017.expected - testfile-arith017_tableaux_cdcl.output))) + (deps testfile-arith017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_tableaux_cdcl.output))) (rule (target testfile-arith017_tableaux.output) (deps (:input testfile-arith017.ae)) @@ -63123,10 +62315,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith017.expected testfile-arith017_tableaux.output))) + (deps testfile-arith017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_tableaux.output))) (rule (target testfile-arith017_legacy.output) (deps (:input testfile-arith017.ae)) @@ -63143,10 +62336,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith017.expected testfile-arith017_legacy.output))) + (deps testfile-arith017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_legacy.output))) (rule (target testfile-arith017_dolmen.output) (deps (:input testfile-arith017.ae)) @@ -63163,10 +62357,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith017.expected testfile-arith017_dolmen.output))) + (deps testfile-arith017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_dolmen.output))) (rule (target testfile-arith017_fpa.output) (deps (:input testfile-arith017.ae)) @@ -63183,10 +62378,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith017.expected testfile-arith017_fpa.output))) + (deps testfile-arith017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith017.expected testfile-arith017_fpa.output))) (rule (target testfile-arith016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith016.ae)) @@ -63205,12 +62401,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith016.expected - testfile-arith016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith016.ae)) @@ -63231,12 +62426,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith016.expected - testfile-arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith016.ae)) @@ -63256,12 +62450,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith016.expected - testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith016.ae)) @@ -63280,12 +62473,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith016.expected - testfile-arith016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith016.ae)) @@ -63304,12 +62496,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith016.expected - testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith016.ae)) @@ -63328,12 +62519,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith016.expected - testfile-arith016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith016_cdcl.output) (deps (:input testfile-arith016.ae)) @@ -63351,10 +62541,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith016.expected testfile-arith016_cdcl.output))) + (deps testfile-arith016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_cdcl.output))) (rule (target testfile-arith016_tableaux_cdcl.output) (deps (:input testfile-arith016.ae)) @@ -63372,12 +62563,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith016.expected - testfile-arith016_tableaux_cdcl.output))) + (deps testfile-arith016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_tableaux_cdcl.output))) (rule (target testfile-arith016_tableaux.output) (deps (:input testfile-arith016.ae)) @@ -63395,10 +62585,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith016.expected testfile-arith016_tableaux.output))) + (deps testfile-arith016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_tableaux.output))) (rule (target testfile-arith016_legacy.output) (deps (:input testfile-arith016.ae)) @@ -63415,10 +62606,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith016.expected testfile-arith016_legacy.output))) + (deps testfile-arith016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_legacy.output))) (rule (target testfile-arith016_dolmen.output) (deps (:input testfile-arith016.ae)) @@ -63435,10 +62627,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith016.expected testfile-arith016_dolmen.output))) + (deps testfile-arith016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_dolmen.output))) (rule (target testfile-arith016_fpa.output) (deps (:input testfile-arith016.ae)) @@ -63455,10 +62648,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith016.expected testfile-arith016_fpa.output))) + (deps testfile-arith016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith016.expected testfile-arith016_fpa.output))) (rule (target testfile-arith015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith015.ae)) @@ -63477,12 +62671,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith015.expected - testfile-arith015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith015.ae)) @@ -63503,12 +62696,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith015.expected - testfile-arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith015.ae)) @@ -63528,12 +62720,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith015.expected - testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith015.ae)) @@ -63552,12 +62743,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith015.expected - testfile-arith015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith015.ae)) @@ -63576,12 +62766,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith015.expected - testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith015.ae)) @@ -63600,12 +62789,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith015.expected - testfile-arith015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith015_cdcl.output) (deps (:input testfile-arith015.ae)) @@ -63623,10 +62811,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith015.expected testfile-arith015_cdcl.output))) + (deps testfile-arith015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_cdcl.output))) (rule (target testfile-arith015_tableaux_cdcl.output) (deps (:input testfile-arith015.ae)) @@ -63644,12 +62833,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith015.expected - testfile-arith015_tableaux_cdcl.output))) + (deps testfile-arith015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_tableaux_cdcl.output))) (rule (target testfile-arith015_tableaux.output) (deps (:input testfile-arith015.ae)) @@ -63667,10 +62855,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith015.expected testfile-arith015_tableaux.output))) + (deps testfile-arith015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_tableaux.output))) (rule (target testfile-arith015_legacy.output) (deps (:input testfile-arith015.ae)) @@ -63687,10 +62876,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith015.expected testfile-arith015_legacy.output))) + (deps testfile-arith015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_legacy.output))) (rule (target testfile-arith015_dolmen.output) (deps (:input testfile-arith015.ae)) @@ -63707,10 +62897,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith015.expected testfile-arith015_dolmen.output))) + (deps testfile-arith015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_dolmen.output))) (rule (target testfile-arith015_fpa.output) (deps (:input testfile-arith015.ae)) @@ -63727,10 +62918,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith015.expected testfile-arith015_fpa.output))) + (deps testfile-arith015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith015.expected testfile-arith015_fpa.output))) (rule (target testfile-arith014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith014.ae)) @@ -63749,12 +62941,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith014.expected - testfile-arith014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith014.ae)) @@ -63775,12 +62966,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith014.expected - testfile-arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith014.ae)) @@ -63800,12 +62990,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith014.expected - testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith014.ae)) @@ -63824,12 +63013,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith014.expected - testfile-arith014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith014.ae)) @@ -63848,12 +63036,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith014.expected - testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith014.ae)) @@ -63872,12 +63059,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith014.expected - testfile-arith014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith014_cdcl.output) (deps (:input testfile-arith014.ae)) @@ -63895,10 +63081,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith014.expected testfile-arith014_cdcl.output))) + (deps testfile-arith014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_cdcl.output))) (rule (target testfile-arith014_tableaux_cdcl.output) (deps (:input testfile-arith014.ae)) @@ -63916,12 +63103,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith014.expected - testfile-arith014_tableaux_cdcl.output))) + (deps testfile-arith014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_tableaux_cdcl.output))) (rule (target testfile-arith014_tableaux.output) (deps (:input testfile-arith014.ae)) @@ -63939,10 +63125,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith014.expected testfile-arith014_tableaux.output))) + (deps testfile-arith014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_tableaux.output))) (rule (target testfile-arith014_legacy.output) (deps (:input testfile-arith014.ae)) @@ -63959,10 +63146,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith014.expected testfile-arith014_legacy.output))) + (deps testfile-arith014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_legacy.output))) (rule (target testfile-arith014_dolmen.output) (deps (:input testfile-arith014.ae)) @@ -63979,10 +63167,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith014.expected testfile-arith014_dolmen.output))) + (deps testfile-arith014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_dolmen.output))) (rule (target testfile-arith014_fpa.output) (deps (:input testfile-arith014.ae)) @@ -63999,10 +63188,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith014.expected testfile-arith014_fpa.output))) + (deps testfile-arith014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith014.expected testfile-arith014_fpa.output))) (rule (target testfile-arith013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith013.ae)) @@ -64021,12 +63211,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith013.expected - testfile-arith013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith013.ae)) @@ -64047,12 +63236,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith013.expected - testfile-arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith013.ae)) @@ -64072,12 +63260,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith013.expected - testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith013.ae)) @@ -64096,12 +63283,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith013.expected - testfile-arith013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith013.ae)) @@ -64120,12 +63306,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith013.expected - testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith013.ae)) @@ -64144,12 +63329,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith013.expected - testfile-arith013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith013_cdcl.output) (deps (:input testfile-arith013.ae)) @@ -64167,10 +63351,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith013.expected testfile-arith013_cdcl.output))) + (deps testfile-arith013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_cdcl.output))) (rule (target testfile-arith013_tableaux_cdcl.output) (deps (:input testfile-arith013.ae)) @@ -64188,12 +63373,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith013.expected - testfile-arith013_tableaux_cdcl.output))) + (deps testfile-arith013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_tableaux_cdcl.output))) (rule (target testfile-arith013_tableaux.output) (deps (:input testfile-arith013.ae)) @@ -64211,10 +63395,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith013.expected testfile-arith013_tableaux.output))) + (deps testfile-arith013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_tableaux.output))) (rule (target testfile-arith013_legacy.output) (deps (:input testfile-arith013.ae)) @@ -64231,10 +63416,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith013.expected testfile-arith013_legacy.output))) + (deps testfile-arith013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_legacy.output))) (rule (target testfile-arith013_dolmen.output) (deps (:input testfile-arith013.ae)) @@ -64251,10 +63437,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith013.expected testfile-arith013_dolmen.output))) + (deps testfile-arith013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_dolmen.output))) (rule (target testfile-arith013_fpa.output) (deps (:input testfile-arith013.ae)) @@ -64271,10 +63458,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith013.expected testfile-arith013_fpa.output))) + (deps testfile-arith013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith013.expected testfile-arith013_fpa.output))) (rule (target testfile-arith012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith012.ae)) @@ -64293,12 +63481,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith012.expected - testfile-arith012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith012.ae)) @@ -64319,12 +63506,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith012.expected - testfile-arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith012.ae)) @@ -64344,12 +63530,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith012.expected - testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith012.ae)) @@ -64368,12 +63553,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith012.expected - testfile-arith012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith012.ae)) @@ -64392,12 +63576,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith012.expected - testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith012.ae)) @@ -64416,12 +63599,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith012.expected - testfile-arith012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith012_cdcl.output) (deps (:input testfile-arith012.ae)) @@ -64439,10 +63621,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith012.expected testfile-arith012_cdcl.output))) + (deps testfile-arith012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_cdcl.output))) (rule (target testfile-arith012_tableaux_cdcl.output) (deps (:input testfile-arith012.ae)) @@ -64460,12 +63643,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith012.expected - testfile-arith012_tableaux_cdcl.output))) + (deps testfile-arith012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_tableaux_cdcl.output))) (rule (target testfile-arith012_tableaux.output) (deps (:input testfile-arith012.ae)) @@ -64483,10 +63665,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith012.expected testfile-arith012_tableaux.output))) + (deps testfile-arith012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_tableaux.output))) (rule (target testfile-arith012_legacy.output) (deps (:input testfile-arith012.ae)) @@ -64503,10 +63686,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith012.expected testfile-arith012_legacy.output))) + (deps testfile-arith012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_legacy.output))) (rule (target testfile-arith012_dolmen.output) (deps (:input testfile-arith012.ae)) @@ -64523,10 +63707,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith012.expected testfile-arith012_dolmen.output))) + (deps testfile-arith012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_dolmen.output))) (rule (target testfile-arith012_fpa.output) (deps (:input testfile-arith012.ae)) @@ -64543,10 +63728,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith012.expected testfile-arith012_fpa.output))) + (deps testfile-arith012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith012.expected testfile-arith012_fpa.output))) (rule (target testfile-arith011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith011.ae)) @@ -64565,12 +63751,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith011.expected - testfile-arith011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith011.ae)) @@ -64591,12 +63776,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith011.expected - testfile-arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith011.ae)) @@ -64616,12 +63800,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith011.expected - testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith011.ae)) @@ -64640,12 +63823,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith011.expected - testfile-arith011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith011.ae)) @@ -64664,12 +63846,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith011.expected - testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith011.ae)) @@ -64688,12 +63869,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith011.expected - testfile-arith011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith011_cdcl.output) (deps (:input testfile-arith011.ae)) @@ -64711,10 +63891,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith011.expected testfile-arith011_cdcl.output))) + (deps testfile-arith011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_cdcl.output))) (rule (target testfile-arith011_tableaux_cdcl.output) (deps (:input testfile-arith011.ae)) @@ -64732,12 +63913,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith011.expected - testfile-arith011_tableaux_cdcl.output))) + (deps testfile-arith011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_tableaux_cdcl.output))) (rule (target testfile-arith011_tableaux.output) (deps (:input testfile-arith011.ae)) @@ -64755,10 +63935,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith011.expected testfile-arith011_tableaux.output))) + (deps testfile-arith011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_tableaux.output))) (rule (target testfile-arith011_legacy.output) (deps (:input testfile-arith011.ae)) @@ -64775,10 +63956,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith011.expected testfile-arith011_legacy.output))) + (deps testfile-arith011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_legacy.output))) (rule (target testfile-arith011_dolmen.output) (deps (:input testfile-arith011.ae)) @@ -64795,10 +63977,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith011.expected testfile-arith011_dolmen.output))) + (deps testfile-arith011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_dolmen.output))) (rule (target testfile-arith011_fpa.output) (deps (:input testfile-arith011.ae)) @@ -64815,10 +63998,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith011.expected testfile-arith011_fpa.output))) + (deps testfile-arith011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith011.expected testfile-arith011_fpa.output))) (rule (target testfile-arith010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith010.ae)) @@ -64837,12 +64021,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith010.expected - testfile-arith010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith010.ae)) @@ -64863,12 +64046,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith010.expected - testfile-arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith010.ae)) @@ -64888,12 +64070,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith010.expected - testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith010.ae)) @@ -64912,12 +64093,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith010.expected - testfile-arith010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith010.ae)) @@ -64936,12 +64116,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith010.expected - testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith010.ae)) @@ -64960,12 +64139,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith010.expected - testfile-arith010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith010_cdcl.output) (deps (:input testfile-arith010.ae)) @@ -64983,10 +64161,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith010.expected testfile-arith010_cdcl.output))) + (deps testfile-arith010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_cdcl.output))) (rule (target testfile-arith010_tableaux_cdcl.output) (deps (:input testfile-arith010.ae)) @@ -65004,12 +64183,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith010.expected - testfile-arith010_tableaux_cdcl.output))) + (deps testfile-arith010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_tableaux_cdcl.output))) (rule (target testfile-arith010_tableaux.output) (deps (:input testfile-arith010.ae)) @@ -65027,10 +64205,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith010.expected testfile-arith010_tableaux.output))) + (deps testfile-arith010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_tableaux.output))) (rule (target testfile-arith010_legacy.output) (deps (:input testfile-arith010.ae)) @@ -65047,10 +64226,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith010.expected testfile-arith010_legacy.output))) + (deps testfile-arith010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_legacy.output))) (rule (target testfile-arith010_dolmen.output) (deps (:input testfile-arith010.ae)) @@ -65067,10 +64247,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith010.expected testfile-arith010_dolmen.output))) + (deps testfile-arith010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_dolmen.output))) (rule (target testfile-arith010_fpa.output) (deps (:input testfile-arith010.ae)) @@ -65087,10 +64268,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith010.expected testfile-arith010_fpa.output))) + (deps testfile-arith010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith010.expected testfile-arith010_fpa.output))) (rule (target testfile-arith009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith009.ae)) @@ -65109,12 +64291,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith009.expected - testfile-arith009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith009.ae)) @@ -65135,12 +64316,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith009.expected - testfile-arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith009.ae)) @@ -65160,12 +64340,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith009.expected - testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith009.ae)) @@ -65184,12 +64363,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith009.expected - testfile-arith009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith009.ae)) @@ -65208,12 +64386,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith009.expected - testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith009.ae)) @@ -65232,12 +64409,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith009.expected - testfile-arith009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith009_cdcl.output) (deps (:input testfile-arith009.ae)) @@ -65255,10 +64431,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith009.expected testfile-arith009_cdcl.output))) + (deps testfile-arith009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_cdcl.output))) (rule (target testfile-arith009_tableaux_cdcl.output) (deps (:input testfile-arith009.ae)) @@ -65276,12 +64453,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith009.expected - testfile-arith009_tableaux_cdcl.output))) + (deps testfile-arith009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_tableaux_cdcl.output))) (rule (target testfile-arith009_tableaux.output) (deps (:input testfile-arith009.ae)) @@ -65299,10 +64475,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith009.expected testfile-arith009_tableaux.output))) + (deps testfile-arith009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_tableaux.output))) (rule (target testfile-arith009_legacy.output) (deps (:input testfile-arith009.ae)) @@ -65319,10 +64496,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith009.expected testfile-arith009_legacy.output))) + (deps testfile-arith009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_legacy.output))) (rule (target testfile-arith009_dolmen.output) (deps (:input testfile-arith009.ae)) @@ -65339,10 +64517,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith009.expected testfile-arith009_dolmen.output))) + (deps testfile-arith009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_dolmen.output))) (rule (target testfile-arith009_fpa.output) (deps (:input testfile-arith009.ae)) @@ -65359,10 +64538,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith009.expected testfile-arith009_fpa.output))) + (deps testfile-arith009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith009.expected testfile-arith009_fpa.output))) (rule (target testfile-arith008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith008.ae)) @@ -65381,12 +64561,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith008.expected - testfile-arith008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith008.ae)) @@ -65407,12 +64586,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith008.expected - testfile-arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith008.ae)) @@ -65432,12 +64610,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith008.expected - testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith008.ae)) @@ -65456,12 +64633,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith008.expected - testfile-arith008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith008.ae)) @@ -65480,12 +64656,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith008.expected - testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith008.ae)) @@ -65504,12 +64679,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith008.expected - testfile-arith008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith008_cdcl.output) (deps (:input testfile-arith008.ae)) @@ -65527,10 +64701,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith008.expected testfile-arith008_cdcl.output))) + (deps testfile-arith008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_cdcl.output))) (rule (target testfile-arith008_tableaux_cdcl.output) (deps (:input testfile-arith008.ae)) @@ -65548,12 +64723,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith008.expected - testfile-arith008_tableaux_cdcl.output))) + (deps testfile-arith008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_tableaux_cdcl.output))) (rule (target testfile-arith008_tableaux.output) (deps (:input testfile-arith008.ae)) @@ -65571,10 +64745,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith008.expected testfile-arith008_tableaux.output))) + (deps testfile-arith008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_tableaux.output))) (rule (target testfile-arith008_legacy.output) (deps (:input testfile-arith008.ae)) @@ -65591,10 +64766,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith008.expected testfile-arith008_legacy.output))) + (deps testfile-arith008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_legacy.output))) (rule (target testfile-arith008_dolmen.output) (deps (:input testfile-arith008.ae)) @@ -65611,10 +64787,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith008.expected testfile-arith008_dolmen.output))) + (deps testfile-arith008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_dolmen.output))) (rule (target testfile-arith008_fpa.output) (deps (:input testfile-arith008.ae)) @@ -65631,10 +64808,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith008.expected testfile-arith008_fpa.output))) + (deps testfile-arith008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith008.expected testfile-arith008_fpa.output))) (rule (target testfile-arith007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith007.ae)) @@ -65653,12 +64831,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith007.expected - testfile-arith007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith007.ae)) @@ -65679,12 +64856,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith007.expected - testfile-arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith007.ae)) @@ -65704,12 +64880,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith007.expected - testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith007.ae)) @@ -65728,12 +64903,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith007.expected - testfile-arith007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith007.ae)) @@ -65752,12 +64926,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith007.expected - testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith007.ae)) @@ -65776,12 +64949,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith007.expected - testfile-arith007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith007_cdcl.output) (deps (:input testfile-arith007.ae)) @@ -65799,10 +64971,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith007.expected testfile-arith007_cdcl.output))) + (deps testfile-arith007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_cdcl.output))) (rule (target testfile-arith007_tableaux_cdcl.output) (deps (:input testfile-arith007.ae)) @@ -65820,12 +64993,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith007.expected - testfile-arith007_tableaux_cdcl.output))) + (deps testfile-arith007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_tableaux_cdcl.output))) (rule (target testfile-arith007_tableaux.output) (deps (:input testfile-arith007.ae)) @@ -65843,10 +65015,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith007.expected testfile-arith007_tableaux.output))) + (deps testfile-arith007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_tableaux.output))) (rule (target testfile-arith007_legacy.output) (deps (:input testfile-arith007.ae)) @@ -65863,10 +65036,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith007.expected testfile-arith007_legacy.output))) + (deps testfile-arith007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_legacy.output))) (rule (target testfile-arith007_dolmen.output) (deps (:input testfile-arith007.ae)) @@ -65883,10 +65057,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith007.expected testfile-arith007_dolmen.output))) + (deps testfile-arith007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_dolmen.output))) (rule (target testfile-arith007_fpa.output) (deps (:input testfile-arith007.ae)) @@ -65903,10 +65078,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith007.expected testfile-arith007_fpa.output))) + (deps testfile-arith007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith007.expected testfile-arith007_fpa.output))) (rule (target testfile-arith006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith006.ae)) @@ -65925,12 +65101,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith006.expected - testfile-arith006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith006.ae)) @@ -65951,12 +65126,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith006.expected - testfile-arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith006.ae)) @@ -65976,12 +65150,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith006.expected - testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith006.ae)) @@ -66000,12 +65173,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith006.expected - testfile-arith006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith006.ae)) @@ -66024,12 +65196,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith006.expected - testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith006.ae)) @@ -66048,12 +65219,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith006.expected - testfile-arith006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith006_cdcl.output) (deps (:input testfile-arith006.ae)) @@ -66071,10 +65241,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith006.expected testfile-arith006_cdcl.output))) + (deps testfile-arith006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_cdcl.output))) (rule (target testfile-arith006_tableaux_cdcl.output) (deps (:input testfile-arith006.ae)) @@ -66092,12 +65263,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith006.expected - testfile-arith006_tableaux_cdcl.output))) + (deps testfile-arith006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_tableaux_cdcl.output))) (rule (target testfile-arith006_tableaux.output) (deps (:input testfile-arith006.ae)) @@ -66115,10 +65285,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith006.expected testfile-arith006_tableaux.output))) + (deps testfile-arith006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_tableaux.output))) (rule (target testfile-arith006_legacy.output) (deps (:input testfile-arith006.ae)) @@ -66135,10 +65306,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith006.expected testfile-arith006_legacy.output))) + (deps testfile-arith006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_legacy.output))) (rule (target testfile-arith006_dolmen.output) (deps (:input testfile-arith006.ae)) @@ -66155,10 +65327,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith006.expected testfile-arith006_dolmen.output))) + (deps testfile-arith006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_dolmen.output))) (rule (target testfile-arith006_fpa.output) (deps (:input testfile-arith006.ae)) @@ -66175,10 +65348,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith006.expected testfile-arith006_fpa.output))) + (deps testfile-arith006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith006.expected testfile-arith006_fpa.output))) (rule (target testfile-arith005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith005.ae)) @@ -66197,12 +65371,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith005.expected - testfile-arith005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith005.ae)) @@ -66223,12 +65396,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith005.expected - testfile-arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith005.ae)) @@ -66248,12 +65420,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith005.expected - testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith005.ae)) @@ -66272,12 +65443,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith005.expected - testfile-arith005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith005.ae)) @@ -66296,12 +65466,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith005.expected - testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith005.ae)) @@ -66320,12 +65489,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith005.expected - testfile-arith005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith005_cdcl.output) (deps (:input testfile-arith005.ae)) @@ -66343,10 +65511,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith005.expected testfile-arith005_cdcl.output))) + (deps testfile-arith005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_cdcl.output))) (rule (target testfile-arith005_tableaux_cdcl.output) (deps (:input testfile-arith005.ae)) @@ -66364,12 +65533,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith005.expected - testfile-arith005_tableaux_cdcl.output))) + (deps testfile-arith005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_tableaux_cdcl.output))) (rule (target testfile-arith005_tableaux.output) (deps (:input testfile-arith005.ae)) @@ -66387,10 +65555,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith005.expected testfile-arith005_tableaux.output))) + (deps testfile-arith005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_tableaux.output))) (rule (target testfile-arith005_legacy.output) (deps (:input testfile-arith005.ae)) @@ -66407,10 +65576,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith005.expected testfile-arith005_legacy.output))) + (deps testfile-arith005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_legacy.output))) (rule (target testfile-arith005_dolmen.output) (deps (:input testfile-arith005.ae)) @@ -66427,10 +65597,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith005.expected testfile-arith005_dolmen.output))) + (deps testfile-arith005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_dolmen.output))) (rule (target testfile-arith005_fpa.output) (deps (:input testfile-arith005.ae)) @@ -66447,10 +65618,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith005.expected testfile-arith005_fpa.output))) + (deps testfile-arith005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith005.expected testfile-arith005_fpa.output))) (rule (target testfile-arith004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith004.ae)) @@ -66469,12 +65641,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith004.expected - testfile-arith004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith004.ae)) @@ -66495,12 +65666,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith004.expected - testfile-arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith004.ae)) @@ -66520,12 +65690,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith004.expected - testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith004.ae)) @@ -66544,12 +65713,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith004.expected - testfile-arith004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith004.ae)) @@ -66568,12 +65736,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith004.expected - testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith004.ae)) @@ -66592,12 +65759,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith004.expected - testfile-arith004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith004_cdcl.output) (deps (:input testfile-arith004.ae)) @@ -66615,10 +65781,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith004.expected testfile-arith004_cdcl.output))) + (deps testfile-arith004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_cdcl.output))) (rule (target testfile-arith004_tableaux_cdcl.output) (deps (:input testfile-arith004.ae)) @@ -66636,12 +65803,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith004.expected - testfile-arith004_tableaux_cdcl.output))) + (deps testfile-arith004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_tableaux_cdcl.output))) (rule (target testfile-arith004_tableaux.output) (deps (:input testfile-arith004.ae)) @@ -66659,10 +65825,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith004.expected testfile-arith004_tableaux.output))) + (deps testfile-arith004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_tableaux.output))) (rule (target testfile-arith004_legacy.output) (deps (:input testfile-arith004.ae)) @@ -66679,10 +65846,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith004.expected testfile-arith004_legacy.output))) + (deps testfile-arith004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_legacy.output))) (rule (target testfile-arith004_dolmen.output) (deps (:input testfile-arith004.ae)) @@ -66699,10 +65867,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith004.expected testfile-arith004_dolmen.output))) + (deps testfile-arith004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_dolmen.output))) (rule (target testfile-arith004_fpa.output) (deps (:input testfile-arith004.ae)) @@ -66719,10 +65888,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith004.expected testfile-arith004_fpa.output))) + (deps testfile-arith004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith004.expected testfile-arith004_fpa.output))) (rule (target testfile-arith003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith003.ae)) @@ -66741,12 +65911,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith003.expected - testfile-arith003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith003.ae)) @@ -66767,12 +65936,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith003.expected - testfile-arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith003.ae)) @@ -66792,12 +65960,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith003.expected - testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith003.ae)) @@ -66816,12 +65983,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith003.expected - testfile-arith003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith003.ae)) @@ -66840,12 +66006,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith003.expected - testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith003.ae)) @@ -66864,12 +66029,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith003.expected - testfile-arith003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith003_cdcl.output) (deps (:input testfile-arith003.ae)) @@ -66887,10 +66051,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith003.expected testfile-arith003_cdcl.output))) + (deps testfile-arith003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_cdcl.output))) (rule (target testfile-arith003_tableaux_cdcl.output) (deps (:input testfile-arith003.ae)) @@ -66908,12 +66073,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith003.expected - testfile-arith003_tableaux_cdcl.output))) + (deps testfile-arith003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_tableaux_cdcl.output))) (rule (target testfile-arith003_tableaux.output) (deps (:input testfile-arith003.ae)) @@ -66931,10 +66095,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith003.expected testfile-arith003_tableaux.output))) + (deps testfile-arith003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_tableaux.output))) (rule (target testfile-arith003_legacy.output) (deps (:input testfile-arith003.ae)) @@ -66951,10 +66116,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith003.expected testfile-arith003_legacy.output))) + (deps testfile-arith003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_legacy.output))) (rule (target testfile-arith003_dolmen.output) (deps (:input testfile-arith003.ae)) @@ -66971,10 +66137,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith003.expected testfile-arith003_dolmen.output))) + (deps testfile-arith003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_dolmen.output))) (rule (target testfile-arith003_fpa.output) (deps (:input testfile-arith003.ae)) @@ -66991,10 +66158,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith003.expected testfile-arith003_fpa.output))) + (deps testfile-arith003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith003.expected testfile-arith003_fpa.output))) (rule (target testfile-arith002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith002.ae)) @@ -67013,12 +66181,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith002.expected - testfile-arith002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith002.ae)) @@ -67039,12 +66206,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith002.expected - testfile-arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith002.ae)) @@ -67064,12 +66230,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith002.expected - testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith002.ae)) @@ -67088,12 +66253,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith002.expected - testfile-arith002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith002.ae)) @@ -67112,12 +66276,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith002.expected - testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith002.ae)) @@ -67136,12 +66299,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith002.expected - testfile-arith002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith002_cdcl.output) (deps (:input testfile-arith002.ae)) @@ -67159,10 +66321,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith002.expected testfile-arith002_cdcl.output))) + (deps testfile-arith002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_cdcl.output))) (rule (target testfile-arith002_tableaux_cdcl.output) (deps (:input testfile-arith002.ae)) @@ -67180,12 +66343,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith002.expected - testfile-arith002_tableaux_cdcl.output))) + (deps testfile-arith002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_tableaux_cdcl.output))) (rule (target testfile-arith002_tableaux.output) (deps (:input testfile-arith002.ae)) @@ -67203,10 +66365,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith002.expected testfile-arith002_tableaux.output))) + (deps testfile-arith002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_tableaux.output))) (rule (target testfile-arith002_legacy.output) (deps (:input testfile-arith002.ae)) @@ -67223,10 +66386,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith002.expected testfile-arith002_legacy.output))) + (deps testfile-arith002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_legacy.output))) (rule (target testfile-arith002_dolmen.output) (deps (:input testfile-arith002.ae)) @@ -67243,10 +66407,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith002.expected testfile-arith002_dolmen.output))) + (deps testfile-arith002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_dolmen.output))) (rule (target testfile-arith002_fpa.output) (deps (:input testfile-arith002.ae)) @@ -67263,10 +66428,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith002.expected testfile-arith002_fpa.output))) + (deps testfile-arith002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith002.expected testfile-arith002_fpa.output))) (rule (target testfile-arith001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith001.ae)) @@ -67285,12 +66451,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith001.expected - testfile-arith001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith001.ae)) @@ -67311,12 +66476,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith001.expected - testfile-arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith001.ae)) @@ -67336,12 +66500,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith001.expected - testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith001.ae)) @@ -67360,12 +66523,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith001.expected - testfile-arith001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith001.ae)) @@ -67384,12 +66546,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith001.expected - testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith001.ae)) @@ -67408,12 +66569,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith001.expected - testfile-arith001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith001_cdcl.output) (deps (:input testfile-arith001.ae)) @@ -67431,10 +66591,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith001.expected testfile-arith001_cdcl.output))) + (deps testfile-arith001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_cdcl.output))) (rule (target testfile-arith001_tableaux_cdcl.output) (deps (:input testfile-arith001.ae)) @@ -67452,12 +66613,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith001.expected - testfile-arith001_tableaux_cdcl.output))) + (deps testfile-arith001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_tableaux_cdcl.output))) (rule (target testfile-arith001_tableaux.output) (deps (:input testfile-arith001.ae)) @@ -67475,10 +66635,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith001.expected testfile-arith001_tableaux.output))) + (deps testfile-arith001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_tableaux.output))) (rule (target testfile-arith001_legacy.output) (deps (:input testfile-arith001.ae)) @@ -67495,10 +66656,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith001.expected testfile-arith001_legacy.output))) + (deps testfile-arith001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_legacy.output))) (rule (target testfile-arith001_dolmen.output) (deps (:input testfile-arith001.ae)) @@ -67515,10 +66677,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith001.expected testfile-arith001_dolmen.output))) + (deps testfile-arith001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_dolmen.output))) (rule (target testfile-arith001_fpa.output) (deps (:input testfile-arith001.ae)) @@ -67535,10 +66698,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith001.expected testfile-arith001_fpa.output))) + (deps testfile-arith001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith001.expected testfile-arith001_fpa.output))) (rule (target ceil_floor_propagate.fpa_fpa.output) (deps (:input ceil_floor_propagate.fpa.ae)) @@ -67555,12 +66719,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - ceil_floor_propagate.fpa.expected - ceil_floor_propagate.fpa_fpa.output)))) + (deps ceil_floor_propagate.fpa_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ceil_floor_propagate.fpa.expected ceil_floor_propagate.fpa_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -67584,12 +66747,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67610,12 +66772,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67635,12 +66796,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67659,12 +66819,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67683,12 +66842,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67707,12 +66865,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire010_cdcl.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67730,12 +66887,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_cdcl.output))) + (deps testfile-arith_non_lineaire010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_cdcl.output))) (rule (target testfile-arith_non_lineaire010_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67753,12 +66909,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire010_tableaux.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67776,12 +66931,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_tableaux.output))) + (deps testfile-arith_non_lineaire010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_tableaux.output))) (rule (target testfile-arith_non_lineaire010_legacy.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67798,12 +66952,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_legacy.output))) + (deps testfile-arith_non_lineaire010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_legacy.output))) (rule (target testfile-arith_non_lineaire010_dolmen.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67820,12 +66973,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_dolmen.output))) + (deps testfile-arith_non_lineaire010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_dolmen.output))) (rule (target testfile-arith_non_lineaire010_fpa.output) (deps (:input testfile-arith_non_lineaire010.ae)) @@ -67842,12 +66994,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire010.expected - testfile-arith_non_lineaire010_fpa.output))) + (deps testfile-arith_non_lineaire010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire010.expected testfile-arith_non_lineaire010_fpa.output))) (rule (target testfile-arith_non_lineaire009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -67866,12 +67017,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -67892,12 +67042,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -67917,12 +67066,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -67941,12 +67089,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -67965,12 +67112,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -67989,12 +67135,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire009_cdcl.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -68012,12 +67157,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_cdcl.output))) + (deps testfile-arith_non_lineaire009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_cdcl.output))) (rule (target testfile-arith_non_lineaire009_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -68035,12 +67179,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire009_tableaux.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -68058,12 +67201,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_tableaux.output))) + (deps testfile-arith_non_lineaire009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_tableaux.output))) (rule (target testfile-arith_non_lineaire009_legacy.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -68080,12 +67222,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_legacy.output))) + (deps testfile-arith_non_lineaire009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_legacy.output))) (rule (target testfile-arith_non_lineaire009_dolmen.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -68102,12 +67243,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_dolmen.output))) + (deps testfile-arith_non_lineaire009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_dolmen.output))) (rule (target testfile-arith_non_lineaire009_fpa.output) (deps (:input testfile-arith_non_lineaire009.ae)) @@ -68124,12 +67264,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire009.expected - testfile-arith_non_lineaire009_fpa.output))) + (deps testfile-arith_non_lineaire009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire009.expected testfile-arith_non_lineaire009_fpa.output))) (rule (target testfile-arith_non_lineaire008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68148,12 +67287,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68174,12 +67312,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68199,12 +67336,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68223,12 +67359,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68247,12 +67382,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68271,12 +67405,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire008_cdcl.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68294,12 +67427,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_cdcl.output))) + (deps testfile-arith_non_lineaire008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_cdcl.output))) (rule (target testfile-arith_non_lineaire008_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68317,12 +67449,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire008_tableaux.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68340,12 +67471,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_tableaux.output))) + (deps testfile-arith_non_lineaire008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_tableaux.output))) (rule (target testfile-arith_non_lineaire008_legacy.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68362,12 +67492,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_legacy.output))) + (deps testfile-arith_non_lineaire008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_legacy.output))) (rule (target testfile-arith_non_lineaire008_dolmen.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68384,12 +67513,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_dolmen.output))) + (deps testfile-arith_non_lineaire008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_dolmen.output))) (rule (target testfile-arith_non_lineaire008_fpa.output) (deps (:input testfile-arith_non_lineaire008.ae)) @@ -68406,12 +67534,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire008.expected - testfile-arith_non_lineaire008_fpa.output))) + (deps testfile-arith_non_lineaire008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire008.expected testfile-arith_non_lineaire008_fpa.output))) (rule (target testfile-arith_non_lineaire007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68430,12 +67557,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68456,12 +67582,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68481,12 +67606,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68505,12 +67629,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68529,12 +67652,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68553,12 +67675,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire007_cdcl.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68576,12 +67697,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_cdcl.output))) + (deps testfile-arith_non_lineaire007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_cdcl.output))) (rule (target testfile-arith_non_lineaire007_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68599,12 +67719,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire007_tableaux.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68622,12 +67741,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_tableaux.output))) + (deps testfile-arith_non_lineaire007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_tableaux.output))) (rule (target testfile-arith_non_lineaire007_legacy.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68644,12 +67762,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_legacy.output))) + (deps testfile-arith_non_lineaire007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_legacy.output))) (rule (target testfile-arith_non_lineaire007_dolmen.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68666,12 +67783,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_dolmen.output))) + (deps testfile-arith_non_lineaire007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_dolmen.output))) (rule (target testfile-arith_non_lineaire007_fpa.output) (deps (:input testfile-arith_non_lineaire007.ae)) @@ -68688,12 +67804,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire007.expected - testfile-arith_non_lineaire007_fpa.output))) + (deps testfile-arith_non_lineaire007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire007.expected testfile-arith_non_lineaire007_fpa.output))) (rule (target testfile-arith_non_lineaire006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68712,12 +67827,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68738,12 +67852,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68763,12 +67876,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68787,12 +67899,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68811,12 +67922,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68835,12 +67945,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire006_cdcl.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68858,12 +67967,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_cdcl.output))) + (deps testfile-arith_non_lineaire006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_cdcl.output))) (rule (target testfile-arith_non_lineaire006_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68881,12 +67989,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire006_tableaux.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68904,12 +68011,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_tableaux.output))) + (deps testfile-arith_non_lineaire006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_tableaux.output))) (rule (target testfile-arith_non_lineaire006_legacy.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68926,12 +68032,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_legacy.output))) + (deps testfile-arith_non_lineaire006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_legacy.output))) (rule (target testfile-arith_non_lineaire006_dolmen.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68948,12 +68053,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_dolmen.output))) + (deps testfile-arith_non_lineaire006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_dolmen.output))) (rule (target testfile-arith_non_lineaire006_fpa.output) (deps (:input testfile-arith_non_lineaire006.ae)) @@ -68970,12 +68074,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire006.expected - testfile-arith_non_lineaire006_fpa.output))) + (deps testfile-arith_non_lineaire006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire006.expected testfile-arith_non_lineaire006_fpa.output))) (rule (target testfile-arith_non_lineaire005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -68994,12 +68097,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69020,12 +68122,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69045,12 +68146,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69069,12 +68169,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69093,12 +68192,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69117,12 +68215,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire005_cdcl.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69140,12 +68237,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_cdcl.output))) + (deps testfile-arith_non_lineaire005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_cdcl.output))) (rule (target testfile-arith_non_lineaire005_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69163,12 +68259,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire005_tableaux.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69186,12 +68281,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_tableaux.output))) + (deps testfile-arith_non_lineaire005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_tableaux.output))) (rule (target testfile-arith_non_lineaire005_legacy.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69208,12 +68302,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_legacy.output))) + (deps testfile-arith_non_lineaire005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_legacy.output))) (rule (target testfile-arith_non_lineaire005_dolmen.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69230,12 +68323,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_dolmen.output))) + (deps testfile-arith_non_lineaire005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_dolmen.output))) (rule (target testfile-arith_non_lineaire005_fpa.output) (deps (:input testfile-arith_non_lineaire005.ae)) @@ -69252,12 +68344,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire005.expected - testfile-arith_non_lineaire005_fpa.output))) + (deps testfile-arith_non_lineaire005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire005.expected testfile-arith_non_lineaire005_fpa.output))) (rule (target testfile-arith_non_lineaire004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69276,12 +68367,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69302,12 +68392,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69327,12 +68416,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69351,12 +68439,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69375,12 +68462,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69399,12 +68485,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire004_cdcl.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69422,12 +68507,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_cdcl.output))) + (deps testfile-arith_non_lineaire004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_cdcl.output))) (rule (target testfile-arith_non_lineaire004_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69445,12 +68529,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire004_tableaux.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69468,12 +68551,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_tableaux.output))) + (deps testfile-arith_non_lineaire004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_tableaux.output))) (rule (target testfile-arith_non_lineaire004_legacy.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69490,12 +68572,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_legacy.output))) + (deps testfile-arith_non_lineaire004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_legacy.output))) (rule (target testfile-arith_non_lineaire004_dolmen.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69512,12 +68593,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_dolmen.output))) + (deps testfile-arith_non_lineaire004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_dolmen.output))) (rule (target testfile-arith_non_lineaire004_fpa.output) (deps (:input testfile-arith_non_lineaire004.ae)) @@ -69534,12 +68614,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire004.expected - testfile-arith_non_lineaire004_fpa.output))) + (deps testfile-arith_non_lineaire004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire004.expected testfile-arith_non_lineaire004_fpa.output))) (rule (target testfile-arith_non_lineaire003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69558,12 +68637,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69584,12 +68662,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69609,12 +68686,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69633,12 +68709,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69657,12 +68732,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69681,12 +68755,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire003_cdcl.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69704,12 +68777,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_cdcl.output))) + (deps testfile-arith_non_lineaire003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_cdcl.output))) (rule (target testfile-arith_non_lineaire003_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69727,12 +68799,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire003_tableaux.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69750,12 +68821,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_tableaux.output))) + (deps testfile-arith_non_lineaire003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_tableaux.output))) (rule (target testfile-arith_non_lineaire003_legacy.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69772,12 +68842,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_legacy.output))) + (deps testfile-arith_non_lineaire003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_legacy.output))) (rule (target testfile-arith_non_lineaire003_dolmen.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69794,12 +68863,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_dolmen.output))) + (deps testfile-arith_non_lineaire003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_dolmen.output))) (rule (target testfile-arith_non_lineaire003_fpa.output) (deps (:input testfile-arith_non_lineaire003.ae)) @@ -69816,12 +68884,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire003.expected - testfile-arith_non_lineaire003_fpa.output))) + (deps testfile-arith_non_lineaire003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire003.expected testfile-arith_non_lineaire003_fpa.output))) (rule (target testfile-arith_non_lineaire002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -69840,12 +68907,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -69866,12 +68932,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -69891,12 +68956,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -69915,12 +68979,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -69939,12 +69002,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -69963,12 +69025,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire002_cdcl.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -69986,12 +69047,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_cdcl.output))) + (deps testfile-arith_non_lineaire002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_cdcl.output))) (rule (target testfile-arith_non_lineaire002_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -70009,12 +69069,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire002_tableaux.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -70032,12 +69091,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_tableaux.output))) + (deps testfile-arith_non_lineaire002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_tableaux.output))) (rule (target testfile-arith_non_lineaire002_legacy.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -70054,12 +69112,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_legacy.output))) + (deps testfile-arith_non_lineaire002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_legacy.output))) (rule (target testfile-arith_non_lineaire002_dolmen.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -70076,12 +69133,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_dolmen.output))) + (deps testfile-arith_non_lineaire002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_dolmen.output))) (rule (target testfile-arith_non_lineaire002_fpa.output) (deps (:input testfile-arith_non_lineaire002.ae)) @@ -70098,12 +69154,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire002.expected - testfile-arith_non_lineaire002_fpa.output))) + (deps testfile-arith_non_lineaire002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire002.expected testfile-arith_non_lineaire002_fpa.output))) (rule (target testfile-arith_non_lineaire001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70122,12 +69177,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70148,12 +69202,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70173,12 +69226,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_non_lineaire001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70197,12 +69249,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_non_lineaire001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70221,12 +69272,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_non_lineaire001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70245,12 +69295,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_non_lineaire001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_non_lineaire001_cdcl.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70268,12 +69317,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_cdcl.output))) + (deps testfile-arith_non_lineaire001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_cdcl.output))) (rule (target testfile-arith_non_lineaire001_tableaux_cdcl.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70291,12 +69339,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_tableaux_cdcl.output))) + (deps testfile-arith_non_lineaire001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_tableaux_cdcl.output))) (rule (target testfile-arith_non_lineaire001_tableaux.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70314,12 +69361,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_tableaux.output))) + (deps testfile-arith_non_lineaire001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_tableaux.output))) (rule (target testfile-arith_non_lineaire001_legacy.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70336,12 +69382,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_legacy.output))) + (deps testfile-arith_non_lineaire001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_legacy.output))) (rule (target testfile-arith_non_lineaire001_dolmen.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70358,12 +69403,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_dolmen.output))) + (deps testfile-arith_non_lineaire001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_dolmen.output))) (rule (target testfile-arith_non_lineaire001_fpa.output) (deps (:input testfile-arith_non_lineaire001.ae)) @@ -70380,12 +69424,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_non_lineaire001.expected - testfile-arith_non_lineaire001_fpa.output))) + (deps testfile-arith_non_lineaire001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_non_lineaire001.expected testfile-arith_non_lineaire001_fpa.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70404,12 +69447,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70430,12 +69472,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70455,12 +69496,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70479,12 +69519,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70503,12 +69542,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70527,12 +69565,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_cdcl.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70550,12 +69587,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_cdcl.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_cdcl.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux_cdcl.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70573,12 +69609,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux_cdcl.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux_cdcl.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70596,12 +69631,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_tableaux.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_legacy.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70618,12 +69652,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_legacy.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_legacy.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_dolmen.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70640,12 +69673,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_dolmen.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_dolmen.output))) (rule (target testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_fpa.output) (deps (:input testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.ae)) @@ -70662,12 +69694,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected - testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_fpa.output))) + (deps testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq.expected testfile-arith_mult_nonlin_001_need_interval_tighten_modulo_eq_fpa.output))) (rule (target testfile-arith_mult_interval008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70686,12 +69717,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70712,12 +69742,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70737,12 +69766,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70761,12 +69789,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70785,12 +69812,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70809,12 +69835,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval008_cdcl.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70832,12 +69857,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_cdcl.output))) + (deps testfile-arith_mult_interval008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_cdcl.output))) (rule (target testfile-arith_mult_interval008_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70855,12 +69879,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval008_tableaux.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70878,12 +69901,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_tableaux.output))) + (deps testfile-arith_mult_interval008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_tableaux.output))) (rule (target testfile-arith_mult_interval008_legacy.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70900,12 +69922,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_legacy.output))) + (deps testfile-arith_mult_interval008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_legacy.output))) (rule (target testfile-arith_mult_interval008_dolmen.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70922,12 +69943,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_dolmen.output))) + (deps testfile-arith_mult_interval008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_dolmen.output))) (rule (target testfile-arith_mult_interval008_fpa.output) (deps (:input testfile-arith_mult_interval008.ae)) @@ -70944,12 +69964,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval008.expected - testfile-arith_mult_interval008_fpa.output))) + (deps testfile-arith_mult_interval008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval008.expected testfile-arith_mult_interval008_fpa.output))) (rule (target testfile-arith_mult_interval007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -70968,12 +69987,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -70994,12 +70012,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71019,12 +70036,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71043,12 +70059,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71067,12 +70082,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71091,12 +70105,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval007_cdcl.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71114,12 +70127,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_cdcl.output))) + (deps testfile-arith_mult_interval007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_cdcl.output))) (rule (target testfile-arith_mult_interval007_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71137,12 +70149,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval007_tableaux.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71160,12 +70171,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_tableaux.output))) + (deps testfile-arith_mult_interval007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_tableaux.output))) (rule (target testfile-arith_mult_interval007_legacy.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71182,12 +70192,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_legacy.output))) + (deps testfile-arith_mult_interval007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_legacy.output))) (rule (target testfile-arith_mult_interval007_dolmen.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71204,12 +70213,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_dolmen.output))) + (deps testfile-arith_mult_interval007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_dolmen.output))) (rule (target testfile-arith_mult_interval007_fpa.output) (deps (:input testfile-arith_mult_interval007.ae)) @@ -71226,12 +70234,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval007.expected - testfile-arith_mult_interval007_fpa.output))) + (deps testfile-arith_mult_interval007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval007.expected testfile-arith_mult_interval007_fpa.output))) (rule (target testfile-arith_mult_interval006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71250,12 +70257,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71276,12 +70282,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71301,12 +70306,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71325,12 +70329,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71349,12 +70352,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71373,12 +70375,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval006_cdcl.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71396,12 +70397,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_cdcl.output))) + (deps testfile-arith_mult_interval006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_cdcl.output))) (rule (target testfile-arith_mult_interval006_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71419,12 +70419,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval006_tableaux.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71442,12 +70441,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_tableaux.output))) + (deps testfile-arith_mult_interval006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_tableaux.output))) (rule (target testfile-arith_mult_interval006_legacy.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71464,12 +70462,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_legacy.output))) + (deps testfile-arith_mult_interval006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_legacy.output))) (rule (target testfile-arith_mult_interval006_dolmen.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71486,12 +70483,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_dolmen.output))) + (deps testfile-arith_mult_interval006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_dolmen.output))) (rule (target testfile-arith_mult_interval006_fpa.output) (deps (:input testfile-arith_mult_interval006.ae)) @@ -71508,12 +70504,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval006.expected - testfile-arith_mult_interval006_fpa.output))) + (deps testfile-arith_mult_interval006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval006.expected testfile-arith_mult_interval006_fpa.output))) (rule (target testfile-arith_mult_interval005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71532,12 +70527,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71558,12 +70552,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71583,12 +70576,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71607,12 +70599,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71631,12 +70622,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71655,12 +70645,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval005_cdcl.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71678,12 +70667,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_cdcl.output))) + (deps testfile-arith_mult_interval005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_cdcl.output))) (rule (target testfile-arith_mult_interval005_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71701,12 +70689,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval005_tableaux.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71724,12 +70711,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_tableaux.output))) + (deps testfile-arith_mult_interval005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_tableaux.output))) (rule (target testfile-arith_mult_interval005_legacy.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71746,12 +70732,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_legacy.output))) + (deps testfile-arith_mult_interval005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_legacy.output))) (rule (target testfile-arith_mult_interval005_dolmen.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71768,12 +70753,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_dolmen.output))) + (deps testfile-arith_mult_interval005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_dolmen.output))) (rule (target testfile-arith_mult_interval005_fpa.output) (deps (:input testfile-arith_mult_interval005.ae)) @@ -71790,12 +70774,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval005.expected - testfile-arith_mult_interval005_fpa.output))) + (deps testfile-arith_mult_interval005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval005.expected testfile-arith_mult_interval005_fpa.output))) (rule (target testfile-arith_mult_interval004__KO_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71814,12 +70797,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval004__KO_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71840,12 +70822,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71865,12 +70846,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval004__KO_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71889,12 +70869,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval004__KO_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71913,12 +70892,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval004__KO_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71937,12 +70915,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval004__KO_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval004__KO_cdcl.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71960,12 +70937,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_cdcl.output))) + (deps testfile-arith_mult_interval004__KO_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_cdcl.output))) (rule (target testfile-arith_mult_interval004__KO_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -71983,12 +70959,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval004__KO_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval004__KO_tableaux.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -72006,12 +70981,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_tableaux.output))) + (deps testfile-arith_mult_interval004__KO_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_tableaux.output))) (rule (target testfile-arith_mult_interval004__KO_legacy.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -72028,12 +71002,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_legacy.output))) + (deps testfile-arith_mult_interval004__KO_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_legacy.output))) (rule (target testfile-arith_mult_interval004__KO_dolmen.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -72050,12 +71023,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_dolmen.output))) + (deps testfile-arith_mult_interval004__KO_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_dolmen.output))) (rule (target testfile-arith_mult_interval004__KO_fpa.output) (deps (:input testfile-arith_mult_interval004__KO.ae)) @@ -72072,12 +71044,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004__KO.expected - testfile-arith_mult_interval004__KO_fpa.output))) + (deps testfile-arith_mult_interval004__KO_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004__KO.expected testfile-arith_mult_interval004__KO_fpa.output))) (rule (target testfile-arith_mult_interval004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72096,12 +71067,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72122,12 +71092,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72147,12 +71116,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72171,12 +71139,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72195,12 +71162,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72219,12 +71185,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval004_cdcl.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72242,12 +71207,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_cdcl.output))) + (deps testfile-arith_mult_interval004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_cdcl.output))) (rule (target testfile-arith_mult_interval004_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72265,12 +71229,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval004_tableaux.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72288,12 +71251,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_tableaux.output))) + (deps testfile-arith_mult_interval004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_tableaux.output))) (rule (target testfile-arith_mult_interval004_legacy.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72310,12 +71272,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_legacy.output))) + (deps testfile-arith_mult_interval004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_legacy.output))) (rule (target testfile-arith_mult_interval004_dolmen.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72332,12 +71293,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_dolmen.output))) + (deps testfile-arith_mult_interval004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_dolmen.output))) (rule (target testfile-arith_mult_interval004_fpa.output) (deps (:input testfile-arith_mult_interval004.ae)) @@ -72354,12 +71314,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval004.expected - testfile-arith_mult_interval004_fpa.output))) + (deps testfile-arith_mult_interval004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval004.expected testfile-arith_mult_interval004_fpa.output))) (rule (target testfile-arith_mult_interval003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72378,12 +71337,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72404,12 +71362,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72429,12 +71386,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72453,12 +71409,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72477,12 +71432,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72501,12 +71455,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval003_cdcl.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72524,12 +71477,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_cdcl.output))) + (deps testfile-arith_mult_interval003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_cdcl.output))) (rule (target testfile-arith_mult_interval003_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72547,12 +71499,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval003_tableaux.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72570,12 +71521,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_tableaux.output))) + (deps testfile-arith_mult_interval003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_tableaux.output))) (rule (target testfile-arith_mult_interval003_legacy.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72592,12 +71542,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_legacy.output))) + (deps testfile-arith_mult_interval003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_legacy.output))) (rule (target testfile-arith_mult_interval003_dolmen.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72614,12 +71563,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_dolmen.output))) + (deps testfile-arith_mult_interval003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_dolmen.output))) (rule (target testfile-arith_mult_interval003_fpa.output) (deps (:input testfile-arith_mult_interval003.ae)) @@ -72636,12 +71584,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval003.expected - testfile-arith_mult_interval003_fpa.output))) + (deps testfile-arith_mult_interval003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval003.expected testfile-arith_mult_interval003_fpa.output))) (rule (target testfile-arith_mult_interval002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72660,12 +71607,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72686,12 +71632,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72711,12 +71656,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72735,12 +71679,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72759,12 +71702,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72783,12 +71725,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval002_cdcl.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72806,12 +71747,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_cdcl.output))) + (deps testfile-arith_mult_interval002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_cdcl.output))) (rule (target testfile-arith_mult_interval002_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72829,12 +71769,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval002_tableaux.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72852,12 +71791,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_tableaux.output))) + (deps testfile-arith_mult_interval002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_tableaux.output))) (rule (target testfile-arith_mult_interval002_legacy.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72874,12 +71812,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_legacy.output))) + (deps testfile-arith_mult_interval002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_legacy.output))) (rule (target testfile-arith_mult_interval002_dolmen.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72896,12 +71833,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_dolmen.output))) + (deps testfile-arith_mult_interval002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_dolmen.output))) (rule (target testfile-arith_mult_interval002_fpa.output) (deps (:input testfile-arith_mult_interval002.ae)) @@ -72918,12 +71854,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval002.expected - testfile-arith_mult_interval002_fpa.output))) + (deps testfile-arith_mult_interval002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval002.expected testfile-arith_mult_interval002_fpa.output))) (rule (target testfile-arith_mult_interval001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -72942,12 +71877,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -72968,12 +71902,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -72993,12 +71926,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73017,12 +71949,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73041,12 +71972,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73065,12 +71995,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval001_cdcl.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73088,12 +72017,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_cdcl.output))) + (deps testfile-arith_mult_interval001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_cdcl.output))) (rule (target testfile-arith_mult_interval001_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73111,12 +72039,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval001_tableaux.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73134,12 +72061,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_tableaux.output))) + (deps testfile-arith_mult_interval001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_tableaux.output))) (rule (target testfile-arith_mult_interval001_legacy.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73156,12 +72082,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_legacy.output))) + (deps testfile-arith_mult_interval001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_legacy.output))) (rule (target testfile-arith_mult_interval001_dolmen.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73178,12 +72103,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_dolmen.output))) + (deps testfile-arith_mult_interval001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_dolmen.output))) (rule (target testfile-arith_mult_interval001_fpa.output) (deps (:input testfile-arith_mult_interval001.ae)) @@ -73200,12 +72124,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval001.expected - testfile-arith_mult_interval001_fpa.output))) + (deps testfile-arith_mult_interval001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval001.expected testfile-arith_mult_interval001_fpa.output))) (rule (target testfile-arith_mult_interval_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73224,12 +72147,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73250,12 +72172,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73275,12 +72196,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_mult_interval_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73299,12 +72219,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_mult_interval_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73323,12 +72242,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_mult_interval_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73347,12 +72265,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_mult_interval_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_mult_interval_cdcl.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73370,12 +72287,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_cdcl.output))) + (deps testfile-arith_mult_interval_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_cdcl.output))) (rule (target testfile-arith_mult_interval_tableaux_cdcl.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73393,12 +72309,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_tableaux_cdcl.output))) + (deps testfile-arith_mult_interval_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_tableaux_cdcl.output))) (rule (target testfile-arith_mult_interval_tableaux.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73416,12 +72331,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_tableaux.output))) + (deps testfile-arith_mult_interval_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_tableaux.output))) (rule (target testfile-arith_mult_interval_legacy.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73438,12 +72352,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_legacy.output))) + (deps testfile-arith_mult_interval_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_legacy.output))) (rule (target testfile-arith_mult_interval_dolmen.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73460,12 +72373,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_dolmen.output))) + (deps testfile-arith_mult_interval_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_dolmen.output))) (rule (target testfile-arith_mult_interval_fpa.output) (deps (:input testfile-arith_mult_interval.ae)) @@ -73482,12 +72394,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_mult_interval.expected - testfile-arith_mult_interval_fpa.output))) + (deps testfile-arith_mult_interval_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_mult_interval.expected testfile-arith_mult_interval_fpa.output))) (rule (target testfile-arith_modulo_uniquement018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73506,12 +72417,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73532,12 +72442,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73557,12 +72466,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73581,12 +72489,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73605,12 +72512,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73629,12 +72535,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement018_cdcl.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73652,12 +72557,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_cdcl.output))) + (deps testfile-arith_modulo_uniquement018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_cdcl.output))) (rule (target testfile-arith_modulo_uniquement018_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73675,12 +72579,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement018_tableaux.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73698,12 +72601,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_tableaux.output))) + (deps testfile-arith_modulo_uniquement018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_tableaux.output))) (rule (target testfile-arith_modulo_uniquement018_legacy.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73720,12 +72622,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_legacy.output))) + (deps testfile-arith_modulo_uniquement018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_legacy.output))) (rule (target testfile-arith_modulo_uniquement018_dolmen.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73742,12 +72643,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_dolmen.output))) + (deps testfile-arith_modulo_uniquement018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_dolmen.output))) (rule (target testfile-arith_modulo_uniquement018_fpa.output) (deps (:input testfile-arith_modulo_uniquement018.ae)) @@ -73764,12 +72664,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement018.expected - testfile-arith_modulo_uniquement018_fpa.output))) + (deps testfile-arith_modulo_uniquement018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement018.expected testfile-arith_modulo_uniquement018_fpa.output))) (rule (target testfile-arith_modulo_uniquement017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73788,12 +72687,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73814,12 +72712,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73839,12 +72736,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73863,12 +72759,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73887,12 +72782,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73911,12 +72805,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement017_cdcl.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73934,12 +72827,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_cdcl.output))) + (deps testfile-arith_modulo_uniquement017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_cdcl.output))) (rule (target testfile-arith_modulo_uniquement017_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73957,12 +72849,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement017_tableaux.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -73980,12 +72871,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_tableaux.output))) + (deps testfile-arith_modulo_uniquement017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_tableaux.output))) (rule (target testfile-arith_modulo_uniquement017_legacy.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -74002,12 +72892,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_legacy.output))) + (deps testfile-arith_modulo_uniquement017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_legacy.output))) (rule (target testfile-arith_modulo_uniquement017_dolmen.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -74024,12 +72913,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_dolmen.output))) + (deps testfile-arith_modulo_uniquement017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_dolmen.output))) (rule (target testfile-arith_modulo_uniquement017_fpa.output) (deps (:input testfile-arith_modulo_uniquement017.ae)) @@ -74046,12 +72934,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement017.expected - testfile-arith_modulo_uniquement017_fpa.output))) + (deps testfile-arith_modulo_uniquement017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement017.expected testfile-arith_modulo_uniquement017_fpa.output))) (rule (target testfile-arith_modulo_uniquement016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74070,12 +72957,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74096,12 +72982,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74121,12 +73006,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74145,12 +73029,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74169,12 +73052,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74193,12 +73075,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement016_cdcl.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74216,12 +73097,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_cdcl.output))) + (deps testfile-arith_modulo_uniquement016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_cdcl.output))) (rule (target testfile-arith_modulo_uniquement016_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74239,12 +73119,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement016_tableaux.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74262,12 +73141,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_tableaux.output))) + (deps testfile-arith_modulo_uniquement016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_tableaux.output))) (rule (target testfile-arith_modulo_uniquement016_legacy.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74284,12 +73162,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_legacy.output))) + (deps testfile-arith_modulo_uniquement016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_legacy.output))) (rule (target testfile-arith_modulo_uniquement016_dolmen.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74306,12 +73183,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_dolmen.output))) + (deps testfile-arith_modulo_uniquement016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_dolmen.output))) (rule (target testfile-arith_modulo_uniquement016_fpa.output) (deps (:input testfile-arith_modulo_uniquement016.ae)) @@ -74328,12 +73204,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement016.expected - testfile-arith_modulo_uniquement016_fpa.output))) + (deps testfile-arith_modulo_uniquement016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement016.expected testfile-arith_modulo_uniquement016_fpa.output))) (rule (target testfile-arith_modulo_uniquement015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74352,12 +73227,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74378,12 +73252,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74403,12 +73276,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74427,12 +73299,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74451,12 +73322,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74475,12 +73345,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement015_cdcl.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74498,12 +73367,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_cdcl.output))) + (deps testfile-arith_modulo_uniquement015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_cdcl.output))) (rule (target testfile-arith_modulo_uniquement015_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74521,12 +73389,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement015_tableaux.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74544,12 +73411,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_tableaux.output))) + (deps testfile-arith_modulo_uniquement015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_tableaux.output))) (rule (target testfile-arith_modulo_uniquement015_legacy.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74566,12 +73432,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_legacy.output))) + (deps testfile-arith_modulo_uniquement015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_legacy.output))) (rule (target testfile-arith_modulo_uniquement015_dolmen.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74588,12 +73453,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_dolmen.output))) + (deps testfile-arith_modulo_uniquement015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_dolmen.output))) (rule (target testfile-arith_modulo_uniquement015_fpa.output) (deps (:input testfile-arith_modulo_uniquement015.ae)) @@ -74610,12 +73474,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement015.expected - testfile-arith_modulo_uniquement015_fpa.output))) + (deps testfile-arith_modulo_uniquement015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement015.expected testfile-arith_modulo_uniquement015_fpa.output))) (rule (target testfile-arith_modulo_uniquement014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74634,12 +73497,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74660,12 +73522,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74685,12 +73546,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74709,12 +73569,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74733,12 +73592,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74757,12 +73615,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement014_cdcl.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74780,12 +73637,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_cdcl.output))) + (deps testfile-arith_modulo_uniquement014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_cdcl.output))) (rule (target testfile-arith_modulo_uniquement014_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74803,12 +73659,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement014_tableaux.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74826,12 +73681,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_tableaux.output))) + (deps testfile-arith_modulo_uniquement014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_tableaux.output))) (rule (target testfile-arith_modulo_uniquement014_legacy.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74848,12 +73702,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_legacy.output))) + (deps testfile-arith_modulo_uniquement014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_legacy.output))) (rule (target testfile-arith_modulo_uniquement014_dolmen.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74870,12 +73723,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_dolmen.output))) + (deps testfile-arith_modulo_uniquement014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_dolmen.output))) (rule (target testfile-arith_modulo_uniquement014_fpa.output) (deps (:input testfile-arith_modulo_uniquement014.ae)) @@ -74892,12 +73744,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement014.expected - testfile-arith_modulo_uniquement014_fpa.output))) + (deps testfile-arith_modulo_uniquement014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement014.expected testfile-arith_modulo_uniquement014_fpa.output))) (rule (target testfile-arith_modulo_uniquement013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -74916,12 +73767,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -74942,12 +73792,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -74967,12 +73816,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -74991,12 +73839,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75015,12 +73862,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75039,12 +73885,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement013_cdcl.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75062,12 +73907,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_cdcl.output))) + (deps testfile-arith_modulo_uniquement013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_cdcl.output))) (rule (target testfile-arith_modulo_uniquement013_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75085,12 +73929,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement013_tableaux.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75108,12 +73951,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_tableaux.output))) + (deps testfile-arith_modulo_uniquement013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_tableaux.output))) (rule (target testfile-arith_modulo_uniquement013_legacy.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75130,12 +73972,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_legacy.output))) + (deps testfile-arith_modulo_uniquement013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_legacy.output))) (rule (target testfile-arith_modulo_uniquement013_dolmen.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75152,12 +73993,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_dolmen.output))) + (deps testfile-arith_modulo_uniquement013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_dolmen.output))) (rule (target testfile-arith_modulo_uniquement013_fpa.output) (deps (:input testfile-arith_modulo_uniquement013.ae)) @@ -75174,12 +74014,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement013.expected - testfile-arith_modulo_uniquement013_fpa.output))) + (deps testfile-arith_modulo_uniquement013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement013.expected testfile-arith_modulo_uniquement013_fpa.output))) (rule (target testfile-arith_modulo_uniquement012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75198,12 +74037,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75224,12 +74062,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75249,12 +74086,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75273,12 +74109,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75297,12 +74132,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75321,12 +74155,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement012_cdcl.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75344,12 +74177,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_cdcl.output))) + (deps testfile-arith_modulo_uniquement012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_cdcl.output))) (rule (target testfile-arith_modulo_uniquement012_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75367,12 +74199,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement012_tableaux.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75390,12 +74221,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_tableaux.output))) + (deps testfile-arith_modulo_uniquement012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_tableaux.output))) (rule (target testfile-arith_modulo_uniquement012_legacy.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75412,12 +74242,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_legacy.output))) + (deps testfile-arith_modulo_uniquement012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_legacy.output))) (rule (target testfile-arith_modulo_uniquement012_dolmen.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75434,12 +74263,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_dolmen.output))) + (deps testfile-arith_modulo_uniquement012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_dolmen.output))) (rule (target testfile-arith_modulo_uniquement012_fpa.output) (deps (:input testfile-arith_modulo_uniquement012.ae)) @@ -75456,12 +74284,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement012.expected - testfile-arith_modulo_uniquement012_fpa.output))) + (deps testfile-arith_modulo_uniquement012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement012.expected testfile-arith_modulo_uniquement012_fpa.output))) (rule (target testfile-arith_modulo_uniquement011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75480,12 +74307,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75506,12 +74332,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75531,12 +74356,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75555,12 +74379,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75579,12 +74402,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75603,12 +74425,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement011_cdcl.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75626,12 +74447,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_cdcl.output))) + (deps testfile-arith_modulo_uniquement011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_cdcl.output))) (rule (target testfile-arith_modulo_uniquement011_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75649,12 +74469,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement011_tableaux.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75672,12 +74491,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_tableaux.output))) + (deps testfile-arith_modulo_uniquement011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_tableaux.output))) (rule (target testfile-arith_modulo_uniquement011_legacy.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75694,12 +74512,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_legacy.output))) + (deps testfile-arith_modulo_uniquement011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_legacy.output))) (rule (target testfile-arith_modulo_uniquement011_dolmen.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75716,12 +74533,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_dolmen.output))) + (deps testfile-arith_modulo_uniquement011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_dolmen.output))) (rule (target testfile-arith_modulo_uniquement011_fpa.output) (deps (:input testfile-arith_modulo_uniquement011.ae)) @@ -75738,12 +74554,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement011.expected - testfile-arith_modulo_uniquement011_fpa.output))) + (deps testfile-arith_modulo_uniquement011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement011.expected testfile-arith_modulo_uniquement011_fpa.output))) (rule (target testfile-arith_modulo_uniquement010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75762,12 +74577,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75788,12 +74602,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75813,12 +74626,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75837,12 +74649,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75861,12 +74672,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75885,12 +74695,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement010_cdcl.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75908,12 +74717,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_cdcl.output))) + (deps testfile-arith_modulo_uniquement010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_cdcl.output))) (rule (target testfile-arith_modulo_uniquement010_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75931,12 +74739,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement010_tableaux.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75954,12 +74761,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_tableaux.output))) + (deps testfile-arith_modulo_uniquement010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_tableaux.output))) (rule (target testfile-arith_modulo_uniquement010_legacy.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75976,12 +74782,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_legacy.output))) + (deps testfile-arith_modulo_uniquement010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_legacy.output))) (rule (target testfile-arith_modulo_uniquement010_dolmen.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -75998,12 +74803,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_dolmen.output))) + (deps testfile-arith_modulo_uniquement010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_dolmen.output))) (rule (target testfile-arith_modulo_uniquement010_fpa.output) (deps (:input testfile-arith_modulo_uniquement010.ae)) @@ -76020,12 +74824,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement010.expected - testfile-arith_modulo_uniquement010_fpa.output))) + (deps testfile-arith_modulo_uniquement010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement010.expected testfile-arith_modulo_uniquement010_fpa.output))) (rule (target testfile-arith_modulo_uniquement009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76044,12 +74847,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76070,12 +74872,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76095,12 +74896,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76119,12 +74919,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76143,12 +74942,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76167,12 +74965,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement009_cdcl.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76190,12 +74987,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_cdcl.output))) + (deps testfile-arith_modulo_uniquement009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_cdcl.output))) (rule (target testfile-arith_modulo_uniquement009_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76213,12 +75009,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement009_tableaux.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76236,12 +75031,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_tableaux.output))) + (deps testfile-arith_modulo_uniquement009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_tableaux.output))) (rule (target testfile-arith_modulo_uniquement009_legacy.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76258,12 +75052,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_legacy.output))) + (deps testfile-arith_modulo_uniquement009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_legacy.output))) (rule (target testfile-arith_modulo_uniquement009_dolmen.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76280,12 +75073,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_dolmen.output))) + (deps testfile-arith_modulo_uniquement009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_dolmen.output))) (rule (target testfile-arith_modulo_uniquement009_fpa.output) (deps (:input testfile-arith_modulo_uniquement009.ae)) @@ -76302,12 +75094,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement009.expected - testfile-arith_modulo_uniquement009_fpa.output))) + (deps testfile-arith_modulo_uniquement009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement009.expected testfile-arith_modulo_uniquement009_fpa.output))) (rule (target testfile-arith_modulo_uniquement008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76326,12 +75117,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76352,12 +75142,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76377,12 +75166,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76401,12 +75189,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76425,12 +75212,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76449,12 +75235,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement008_cdcl.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76472,12 +75257,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_cdcl.output))) + (deps testfile-arith_modulo_uniquement008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_cdcl.output))) (rule (target testfile-arith_modulo_uniquement008_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76495,12 +75279,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement008_tableaux.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76518,12 +75301,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_tableaux.output))) + (deps testfile-arith_modulo_uniquement008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_tableaux.output))) (rule (target testfile-arith_modulo_uniquement008_legacy.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76540,12 +75322,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_legacy.output))) + (deps testfile-arith_modulo_uniquement008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_legacy.output))) (rule (target testfile-arith_modulo_uniquement008_dolmen.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76562,12 +75343,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_dolmen.output))) + (deps testfile-arith_modulo_uniquement008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_dolmen.output))) (rule (target testfile-arith_modulo_uniquement008_fpa.output) (deps (:input testfile-arith_modulo_uniquement008.ae)) @@ -76584,12 +75364,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement008.expected - testfile-arith_modulo_uniquement008_fpa.output))) + (deps testfile-arith_modulo_uniquement008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement008.expected testfile-arith_modulo_uniquement008_fpa.output))) (rule (target testfile-arith_modulo_uniquement007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76608,12 +75387,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76634,12 +75412,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76659,12 +75436,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76683,12 +75459,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76707,12 +75482,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76731,12 +75505,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement007_cdcl.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76754,12 +75527,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_cdcl.output))) + (deps testfile-arith_modulo_uniquement007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_cdcl.output))) (rule (target testfile-arith_modulo_uniquement007_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76777,12 +75549,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement007_tableaux.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76800,12 +75571,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_tableaux.output))) + (deps testfile-arith_modulo_uniquement007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_tableaux.output))) (rule (target testfile-arith_modulo_uniquement007_legacy.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76822,12 +75592,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_legacy.output))) + (deps testfile-arith_modulo_uniquement007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_legacy.output))) (rule (target testfile-arith_modulo_uniquement007_dolmen.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76844,12 +75613,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_dolmen.output))) + (deps testfile-arith_modulo_uniquement007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_dolmen.output))) (rule (target testfile-arith_modulo_uniquement007_fpa.output) (deps (:input testfile-arith_modulo_uniquement007.ae)) @@ -76866,12 +75634,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement007.expected - testfile-arith_modulo_uniquement007_fpa.output))) + (deps testfile-arith_modulo_uniquement007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement007.expected testfile-arith_modulo_uniquement007_fpa.output))) (rule (target testfile-arith_modulo_uniquement006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -76890,12 +75657,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -76916,12 +75682,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -76941,12 +75706,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -76965,12 +75729,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -76989,12 +75752,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -77013,12 +75775,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement006_cdcl.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -77036,12 +75797,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_cdcl.output))) + (deps testfile-arith_modulo_uniquement006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_cdcl.output))) (rule (target testfile-arith_modulo_uniquement006_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -77059,12 +75819,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement006_tableaux.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -77082,12 +75841,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_tableaux.output))) + (deps testfile-arith_modulo_uniquement006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_tableaux.output))) (rule (target testfile-arith_modulo_uniquement006_legacy.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -77104,12 +75862,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_legacy.output))) + (deps testfile-arith_modulo_uniquement006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_legacy.output))) (rule (target testfile-arith_modulo_uniquement006_dolmen.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -77126,12 +75883,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_dolmen.output))) + (deps testfile-arith_modulo_uniquement006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_dolmen.output))) (rule (target testfile-arith_modulo_uniquement006_fpa.output) (deps (:input testfile-arith_modulo_uniquement006.ae)) @@ -77148,12 +75904,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement006.expected - testfile-arith_modulo_uniquement006_fpa.output))) + (deps testfile-arith_modulo_uniquement006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement006.expected testfile-arith_modulo_uniquement006_fpa.output))) (rule (target testfile-arith_modulo_uniquement005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77172,12 +75927,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77198,12 +75952,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77223,12 +75976,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77247,12 +75999,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77271,12 +76022,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77295,12 +76045,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement005_cdcl.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77318,12 +76067,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_cdcl.output))) + (deps testfile-arith_modulo_uniquement005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_cdcl.output))) (rule (target testfile-arith_modulo_uniquement005_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77341,12 +76089,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement005_tableaux.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77364,12 +76111,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_tableaux.output))) + (deps testfile-arith_modulo_uniquement005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_tableaux.output))) (rule (target testfile-arith_modulo_uniquement005_legacy.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77386,12 +76132,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_legacy.output))) + (deps testfile-arith_modulo_uniquement005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_legacy.output))) (rule (target testfile-arith_modulo_uniquement005_dolmen.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77408,12 +76153,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_dolmen.output))) + (deps testfile-arith_modulo_uniquement005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_dolmen.output))) (rule (target testfile-arith_modulo_uniquement005_fpa.output) (deps (:input testfile-arith_modulo_uniquement005.ae)) @@ -77430,12 +76174,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement005.expected - testfile-arith_modulo_uniquement005_fpa.output))) + (deps testfile-arith_modulo_uniquement005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement005.expected testfile-arith_modulo_uniquement005_fpa.output))) (rule (target testfile-arith_modulo_uniquement004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77454,12 +76197,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77480,12 +76222,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77505,12 +76246,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77529,12 +76269,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77553,12 +76292,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77577,12 +76315,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement004_cdcl.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77600,12 +76337,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_cdcl.output))) + (deps testfile-arith_modulo_uniquement004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_cdcl.output))) (rule (target testfile-arith_modulo_uniquement004_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77623,12 +76359,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement004_tableaux.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77646,12 +76381,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_tableaux.output))) + (deps testfile-arith_modulo_uniquement004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_tableaux.output))) (rule (target testfile-arith_modulo_uniquement004_legacy.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77668,12 +76402,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_legacy.output))) + (deps testfile-arith_modulo_uniquement004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_legacy.output))) (rule (target testfile-arith_modulo_uniquement004_dolmen.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77690,12 +76423,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_dolmen.output))) + (deps testfile-arith_modulo_uniquement004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_dolmen.output))) (rule (target testfile-arith_modulo_uniquement004_fpa.output) (deps (:input testfile-arith_modulo_uniquement004.ae)) @@ -77712,12 +76444,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement004.expected - testfile-arith_modulo_uniquement004_fpa.output))) + (deps testfile-arith_modulo_uniquement004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement004.expected testfile-arith_modulo_uniquement004_fpa.output))) (rule (target testfile-arith_modulo_uniquement003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77736,12 +76467,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77762,12 +76492,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77787,12 +76516,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77811,12 +76539,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77835,12 +76562,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77859,12 +76585,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement003_cdcl.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77882,12 +76607,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_cdcl.output))) + (deps testfile-arith_modulo_uniquement003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_cdcl.output))) (rule (target testfile-arith_modulo_uniquement003_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77905,12 +76629,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement003_tableaux.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77928,12 +76651,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_tableaux.output))) + (deps testfile-arith_modulo_uniquement003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_tableaux.output))) (rule (target testfile-arith_modulo_uniquement003_legacy.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77950,12 +76672,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_legacy.output))) + (deps testfile-arith_modulo_uniquement003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_legacy.output))) (rule (target testfile-arith_modulo_uniquement003_dolmen.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77972,12 +76693,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_dolmen.output))) + (deps testfile-arith_modulo_uniquement003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_dolmen.output))) (rule (target testfile-arith_modulo_uniquement003_fpa.output) (deps (:input testfile-arith_modulo_uniquement003.ae)) @@ -77994,12 +76714,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement003.expected - testfile-arith_modulo_uniquement003_fpa.output))) + (deps testfile-arith_modulo_uniquement003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement003.expected testfile-arith_modulo_uniquement003_fpa.output))) (rule (target testfile-arith_modulo_uniquement002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78018,12 +76737,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78044,12 +76762,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78069,12 +76786,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78093,12 +76809,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78117,12 +76832,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78141,12 +76855,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement002_cdcl.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78164,12 +76877,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_cdcl.output))) + (deps testfile-arith_modulo_uniquement002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_cdcl.output))) (rule (target testfile-arith_modulo_uniquement002_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78187,12 +76899,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement002_tableaux.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78210,12 +76921,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_tableaux.output))) + (deps testfile-arith_modulo_uniquement002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_tableaux.output))) (rule (target testfile-arith_modulo_uniquement002_legacy.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78232,12 +76942,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_legacy.output))) + (deps testfile-arith_modulo_uniquement002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_legacy.output))) (rule (target testfile-arith_modulo_uniquement002_dolmen.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78254,12 +76963,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_dolmen.output))) + (deps testfile-arith_modulo_uniquement002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_dolmen.output))) (rule (target testfile-arith_modulo_uniquement002_fpa.output) (deps (:input testfile-arith_modulo_uniquement002.ae)) @@ -78276,12 +76984,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement002.expected - testfile-arith_modulo_uniquement002_fpa.output))) + (deps testfile-arith_modulo_uniquement002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement002.expected testfile-arith_modulo_uniquement002_fpa.output))) (rule (target testfile-arith_modulo_uniquement001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78300,12 +77007,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78326,12 +77032,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78351,12 +77056,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_uniquement001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78375,12 +77079,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_uniquement001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78399,12 +77102,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_uniquement001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78423,12 +77125,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_uniquement001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_uniquement001_cdcl.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78446,12 +77147,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_cdcl.output))) + (deps testfile-arith_modulo_uniquement001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_cdcl.output))) (rule (target testfile-arith_modulo_uniquement001_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78469,12 +77169,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_tableaux_cdcl.output))) + (deps testfile-arith_modulo_uniquement001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_uniquement001_tableaux.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78492,12 +77191,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_tableaux.output))) + (deps testfile-arith_modulo_uniquement001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_tableaux.output))) (rule (target testfile-arith_modulo_uniquement001_legacy.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78514,12 +77212,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_legacy.output))) + (deps testfile-arith_modulo_uniquement001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_legacy.output))) (rule (target testfile-arith_modulo_uniquement001_dolmen.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78536,12 +77233,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_dolmen.output))) + (deps testfile-arith_modulo_uniquement001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_dolmen.output))) (rule (target testfile-arith_modulo_uniquement001_fpa.output) (deps (:input testfile-arith_modulo_uniquement001.ae)) @@ -78558,12 +77254,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_uniquement001.expected - testfile-arith_modulo_uniquement001_fpa.output))) + (deps testfile-arith_modulo_uniquement001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_uniquement001.expected testfile-arith_modulo_uniquement001_fpa.output))) (rule (target testfile-arith_modulo_div007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78582,12 +77277,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78608,12 +77302,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78633,12 +77326,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78657,12 +77349,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_div007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78681,12 +77372,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_div007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78705,12 +77395,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div007_cdcl.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78728,12 +77417,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_cdcl.output))) + (deps testfile-arith_modulo_div007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_cdcl.output))) (rule (target testfile-arith_modulo_div007_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78751,12 +77439,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_tableaux_cdcl.output))) + (deps testfile-arith_modulo_div007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_div007_tableaux.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78774,12 +77461,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_tableaux.output))) + (deps testfile-arith_modulo_div007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_tableaux.output))) (rule (target testfile-arith_modulo_div007_legacy.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78796,12 +77482,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_legacy.output))) + (deps testfile-arith_modulo_div007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_legacy.output))) (rule (target testfile-arith_modulo_div007_dolmen.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78818,12 +77503,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_dolmen.output))) + (deps testfile-arith_modulo_div007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_dolmen.output))) (rule (target testfile-arith_modulo_div007_fpa.output) (deps (:input testfile-arith_modulo_div007.ae)) @@ -78840,12 +77524,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div007.expected - testfile-arith_modulo_div007_fpa.output))) + (deps testfile-arith_modulo_div007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div007.expected testfile-arith_modulo_div007_fpa.output))) (rule (target testfile-arith_modulo_div006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -78864,12 +77547,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -78890,12 +77572,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -78915,12 +77596,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -78939,12 +77619,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_div006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -78963,12 +77642,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_div006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -78987,12 +77665,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div006_cdcl.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -79010,12 +77687,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_cdcl.output))) + (deps testfile-arith_modulo_div006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_cdcl.output))) (rule (target testfile-arith_modulo_div006_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -79033,12 +77709,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_tableaux_cdcl.output))) + (deps testfile-arith_modulo_div006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_div006_tableaux.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -79056,12 +77731,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_tableaux.output))) + (deps testfile-arith_modulo_div006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_tableaux.output))) (rule (target testfile-arith_modulo_div006_legacy.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -79078,12 +77752,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_legacy.output))) + (deps testfile-arith_modulo_div006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_legacy.output))) (rule (target testfile-arith_modulo_div006_dolmen.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -79100,12 +77773,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_dolmen.output))) + (deps testfile-arith_modulo_div006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_dolmen.output))) (rule (target testfile-arith_modulo_div006_fpa.output) (deps (:input testfile-arith_modulo_div006.ae)) @@ -79122,12 +77794,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div006.expected - testfile-arith_modulo_div006_fpa.output))) + (deps testfile-arith_modulo_div006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div006.expected testfile-arith_modulo_div006_fpa.output))) (rule (target testfile-arith_modulo_div005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79146,12 +77817,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79172,12 +77842,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79197,12 +77866,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79221,12 +77889,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_div005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79245,12 +77912,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_div005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79269,12 +77935,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div005_cdcl.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79292,12 +77957,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_cdcl.output))) + (deps testfile-arith_modulo_div005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_cdcl.output))) (rule (target testfile-arith_modulo_div005_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79315,12 +77979,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_tableaux_cdcl.output))) + (deps testfile-arith_modulo_div005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_div005_tableaux.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79338,12 +78001,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_tableaux.output))) + (deps testfile-arith_modulo_div005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_tableaux.output))) (rule (target testfile-arith_modulo_div005_legacy.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79360,12 +78022,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_legacy.output))) + (deps testfile-arith_modulo_div005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_legacy.output))) (rule (target testfile-arith_modulo_div005_dolmen.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79382,12 +78043,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_dolmen.output))) + (deps testfile-arith_modulo_div005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_dolmen.output))) (rule (target testfile-arith_modulo_div005_fpa.output) (deps (:input testfile-arith_modulo_div005.ae)) @@ -79404,12 +78064,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div005.expected - testfile-arith_modulo_div005_fpa.output))) + (deps testfile-arith_modulo_div005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div005.expected testfile-arith_modulo_div005_fpa.output))) (rule (target testfile-arith_modulo_div004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79428,12 +78087,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79454,12 +78112,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79479,12 +78136,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79503,12 +78159,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_div004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79527,12 +78182,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_div004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79551,12 +78205,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div004_cdcl.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79574,12 +78227,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_cdcl.output))) + (deps testfile-arith_modulo_div004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_cdcl.output))) (rule (target testfile-arith_modulo_div004_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79597,12 +78249,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_tableaux_cdcl.output))) + (deps testfile-arith_modulo_div004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_div004_tableaux.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79620,12 +78271,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_tableaux.output))) + (deps testfile-arith_modulo_div004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_tableaux.output))) (rule (target testfile-arith_modulo_div004_legacy.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79642,12 +78292,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_legacy.output))) + (deps testfile-arith_modulo_div004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_legacy.output))) (rule (target testfile-arith_modulo_div004_dolmen.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79664,12 +78313,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_dolmen.output))) + (deps testfile-arith_modulo_div004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_dolmen.output))) (rule (target testfile-arith_modulo_div004_fpa.output) (deps (:input testfile-arith_modulo_div004.ae)) @@ -79686,12 +78334,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div004.expected - testfile-arith_modulo_div004_fpa.output))) + (deps testfile-arith_modulo_div004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div004.expected testfile-arith_modulo_div004_fpa.output))) (rule (target testfile-arith_modulo_div003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79710,12 +78357,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79736,12 +78382,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79761,12 +78406,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79785,12 +78429,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_div003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79809,12 +78452,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_div003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79833,12 +78475,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div003_cdcl.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79856,12 +78497,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_cdcl.output))) + (deps testfile-arith_modulo_div003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_cdcl.output))) (rule (target testfile-arith_modulo_div003_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79879,12 +78519,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_tableaux_cdcl.output))) + (deps testfile-arith_modulo_div003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_div003_tableaux.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79902,12 +78541,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_tableaux.output))) + (deps testfile-arith_modulo_div003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_tableaux.output))) (rule (target testfile-arith_modulo_div003_legacy.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79924,12 +78562,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_legacy.output))) + (deps testfile-arith_modulo_div003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_legacy.output))) (rule (target testfile-arith_modulo_div003_dolmen.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79946,12 +78583,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_dolmen.output))) + (deps testfile-arith_modulo_div003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_dolmen.output))) (rule (target testfile-arith_modulo_div003_fpa.output) (deps (:input testfile-arith_modulo_div003.ae)) @@ -79968,12 +78604,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div003.expected - testfile-arith_modulo_div003_fpa.output))) + (deps testfile-arith_modulo_div003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div003.expected testfile-arith_modulo_div003_fpa.output))) (rule (target testfile-arith_modulo_div002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -79992,12 +78627,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80018,12 +78652,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80043,12 +78676,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80067,12 +78699,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_div002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80091,12 +78722,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_div002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80115,12 +78745,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div002_cdcl.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80138,12 +78767,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_cdcl.output))) + (deps testfile-arith_modulo_div002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_cdcl.output))) (rule (target testfile-arith_modulo_div002_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80161,12 +78789,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_tableaux_cdcl.output))) + (deps testfile-arith_modulo_div002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_div002_tableaux.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80184,12 +78811,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_tableaux.output))) + (deps testfile-arith_modulo_div002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_tableaux.output))) (rule (target testfile-arith_modulo_div002_legacy.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80206,12 +78832,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_legacy.output))) + (deps testfile-arith_modulo_div002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_legacy.output))) (rule (target testfile-arith_modulo_div002_dolmen.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80228,12 +78853,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_dolmen.output))) + (deps testfile-arith_modulo_div002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_dolmen.output))) (rule (target testfile-arith_modulo_div002_fpa.output) (deps (:input testfile-arith_modulo_div002.ae)) @@ -80250,12 +78874,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div002.expected - testfile-arith_modulo_div002_fpa.output))) + (deps testfile-arith_modulo_div002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div002.expected testfile-arith_modulo_div002_fpa.output))) (rule (target testfile-arith_modulo_div001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80274,12 +78897,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80300,12 +78922,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80325,12 +78946,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_modulo_div001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80349,12 +78969,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_modulo_div001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80373,12 +78992,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_modulo_div001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80397,12 +79015,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_modulo_div001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_modulo_div001_cdcl.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80420,12 +79037,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_cdcl.output))) + (deps testfile-arith_modulo_div001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_cdcl.output))) (rule (target testfile-arith_modulo_div001_tableaux_cdcl.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80443,12 +79059,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_tableaux_cdcl.output))) + (deps testfile-arith_modulo_div001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_tableaux_cdcl.output))) (rule (target testfile-arith_modulo_div001_tableaux.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80466,12 +79081,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_tableaux.output))) + (deps testfile-arith_modulo_div001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_tableaux.output))) (rule (target testfile-arith_modulo_div001_legacy.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80488,12 +79102,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_legacy.output))) + (deps testfile-arith_modulo_div001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_legacy.output))) (rule (target testfile-arith_modulo_div001_dolmen.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80510,12 +79123,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_dolmen.output))) + (deps testfile-arith_modulo_div001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_dolmen.output))) (rule (target testfile-arith_modulo_div001_fpa.output) (deps (:input testfile-arith_modulo_div001.ae)) @@ -80532,12 +79144,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_modulo_div001.expected - testfile-arith_modulo_div001_fpa.output))) + (deps testfile-arith_modulo_div001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_modulo_div001.expected testfile-arith_modulo_div001_fpa.output))) (rule (target testfile-arith_div_interval009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80556,12 +79167,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80582,12 +79192,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80607,12 +79216,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80631,12 +79239,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80655,12 +79262,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80679,12 +79285,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval009_cdcl.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80702,12 +79307,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_cdcl.output))) + (deps testfile-arith_div_interval009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_cdcl.output))) (rule (target testfile-arith_div_interval009_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80725,12 +79329,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_tableaux_cdcl.output))) + (deps testfile-arith_div_interval009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval009_tableaux.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80748,12 +79351,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_tableaux.output))) + (deps testfile-arith_div_interval009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_tableaux.output))) (rule (target testfile-arith_div_interval009_legacy.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80770,12 +79372,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_legacy.output))) + (deps testfile-arith_div_interval009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_legacy.output))) (rule (target testfile-arith_div_interval009_dolmen.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80792,12 +79393,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_dolmen.output))) + (deps testfile-arith_div_interval009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_dolmen.output))) (rule (target testfile-arith_div_interval009_fpa.output) (deps (:input testfile-arith_div_interval009.ae)) @@ -80814,12 +79414,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval009.expected - testfile-arith_div_interval009_fpa.output))) + (deps testfile-arith_div_interval009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval009.expected testfile-arith_div_interval009_fpa.output))) (rule (target testfile-arith_div_interval008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -80838,12 +79437,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -80864,12 +79462,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -80889,12 +79486,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -80913,12 +79509,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -80937,12 +79532,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -80961,12 +79555,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval008_cdcl.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -80984,12 +79577,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_cdcl.output))) + (deps testfile-arith_div_interval008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_cdcl.output))) (rule (target testfile-arith_div_interval008_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -81007,12 +79599,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_tableaux_cdcl.output))) + (deps testfile-arith_div_interval008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval008_tableaux.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -81030,12 +79621,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_tableaux.output))) + (deps testfile-arith_div_interval008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_tableaux.output))) (rule (target testfile-arith_div_interval008_legacy.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -81052,12 +79642,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_legacy.output))) + (deps testfile-arith_div_interval008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_legacy.output))) (rule (target testfile-arith_div_interval008_dolmen.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -81074,12 +79663,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_dolmen.output))) + (deps testfile-arith_div_interval008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_dolmen.output))) (rule (target testfile-arith_div_interval008_fpa.output) (deps (:input testfile-arith_div_interval008.ae)) @@ -81096,12 +79684,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval008.expected - testfile-arith_div_interval008_fpa.output))) + (deps testfile-arith_div_interval008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval008.expected testfile-arith_div_interval008_fpa.output))) (rule (target testfile-arith_div_interval007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81120,12 +79707,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81146,12 +79732,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81171,12 +79756,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81195,12 +79779,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81219,12 +79802,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81243,12 +79825,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval007_cdcl.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81266,12 +79847,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_cdcl.output))) + (deps testfile-arith_div_interval007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_cdcl.output))) (rule (target testfile-arith_div_interval007_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81289,12 +79869,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_tableaux_cdcl.output))) + (deps testfile-arith_div_interval007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval007_tableaux.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81312,12 +79891,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_tableaux.output))) + (deps testfile-arith_div_interval007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_tableaux.output))) (rule (target testfile-arith_div_interval007_legacy.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81334,12 +79912,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_legacy.output))) + (deps testfile-arith_div_interval007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_legacy.output))) (rule (target testfile-arith_div_interval007_dolmen.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81356,12 +79933,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_dolmen.output))) + (deps testfile-arith_div_interval007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_dolmen.output))) (rule (target testfile-arith_div_interval007_fpa.output) (deps (:input testfile-arith_div_interval007.ae)) @@ -81378,12 +79954,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval007.expected - testfile-arith_div_interval007_fpa.output))) + (deps testfile-arith_div_interval007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval007.expected testfile-arith_div_interval007_fpa.output))) (rule (target testfile-arith_div_interval006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81402,12 +79977,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81428,12 +80002,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81453,12 +80026,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81477,12 +80049,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81501,12 +80072,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81525,12 +80095,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval006_cdcl.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81548,12 +80117,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_cdcl.output))) + (deps testfile-arith_div_interval006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_cdcl.output))) (rule (target testfile-arith_div_interval006_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81571,12 +80139,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_tableaux_cdcl.output))) + (deps testfile-arith_div_interval006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval006_tableaux.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81594,12 +80161,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_tableaux.output))) + (deps testfile-arith_div_interval006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_tableaux.output))) (rule (target testfile-arith_div_interval006_legacy.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81616,12 +80182,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_legacy.output))) + (deps testfile-arith_div_interval006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_legacy.output))) (rule (target testfile-arith_div_interval006_dolmen.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81638,12 +80203,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_dolmen.output))) + (deps testfile-arith_div_interval006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_dolmen.output))) (rule (target testfile-arith_div_interval006_fpa.output) (deps (:input testfile-arith_div_interval006.ae)) @@ -81660,12 +80224,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval006.expected - testfile-arith_div_interval006_fpa.output))) + (deps testfile-arith_div_interval006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval006.expected testfile-arith_div_interval006_fpa.output))) (rule (target testfile-arith_div_interval005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81684,12 +80247,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81710,12 +80272,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81735,12 +80296,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81759,12 +80319,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81783,12 +80342,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81807,12 +80365,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval005_cdcl.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81830,12 +80387,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_cdcl.output))) + (deps testfile-arith_div_interval005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_cdcl.output))) (rule (target testfile-arith_div_interval005_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81853,12 +80409,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_tableaux_cdcl.output))) + (deps testfile-arith_div_interval005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval005_tableaux.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81876,12 +80431,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_tableaux.output))) + (deps testfile-arith_div_interval005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_tableaux.output))) (rule (target testfile-arith_div_interval005_legacy.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81898,12 +80452,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_legacy.output))) + (deps testfile-arith_div_interval005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_legacy.output))) (rule (target testfile-arith_div_interval005_dolmen.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81920,12 +80473,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_dolmen.output))) + (deps testfile-arith_div_interval005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_dolmen.output))) (rule (target testfile-arith_div_interval005_fpa.output) (deps (:input testfile-arith_div_interval005.ae)) @@ -81942,12 +80494,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval005.expected - testfile-arith_div_interval005_fpa.output))) + (deps testfile-arith_div_interval005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval005.expected testfile-arith_div_interval005_fpa.output))) (rule (target testfile-arith_div_interval004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -81966,12 +80517,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -81992,12 +80542,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82017,12 +80566,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82041,12 +80589,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82065,12 +80612,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82089,12 +80635,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval004_cdcl.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82112,12 +80657,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_cdcl.output))) + (deps testfile-arith_div_interval004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_cdcl.output))) (rule (target testfile-arith_div_interval004_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82135,12 +80679,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_tableaux_cdcl.output))) + (deps testfile-arith_div_interval004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval004_tableaux.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82158,12 +80701,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_tableaux.output))) + (deps testfile-arith_div_interval004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_tableaux.output))) (rule (target testfile-arith_div_interval004_legacy.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82180,12 +80722,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_legacy.output))) + (deps testfile-arith_div_interval004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_legacy.output))) (rule (target testfile-arith_div_interval004_dolmen.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82202,12 +80743,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_dolmen.output))) + (deps testfile-arith_div_interval004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_dolmen.output))) (rule (target testfile-arith_div_interval004_fpa.output) (deps (:input testfile-arith_div_interval004.ae)) @@ -82224,12 +80764,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval004.expected - testfile-arith_div_interval004_fpa.output))) + (deps testfile-arith_div_interval004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval004.expected testfile-arith_div_interval004_fpa.output))) (rule (target testfile-arith_div_interval003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82248,12 +80787,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82274,12 +80812,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82299,12 +80836,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82323,12 +80859,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82347,12 +80882,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82371,12 +80905,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval003_cdcl.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82394,12 +80927,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_cdcl.output))) + (deps testfile-arith_div_interval003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_cdcl.output))) (rule (target testfile-arith_div_interval003_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82417,12 +80949,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_tableaux_cdcl.output))) + (deps testfile-arith_div_interval003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval003_tableaux.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82440,12 +80971,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_tableaux.output))) + (deps testfile-arith_div_interval003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_tableaux.output))) (rule (target testfile-arith_div_interval003_legacy.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82462,12 +80992,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_legacy.output))) + (deps testfile-arith_div_interval003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_legacy.output))) (rule (target testfile-arith_div_interval003_dolmen.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82484,12 +81013,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_dolmen.output))) + (deps testfile-arith_div_interval003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_dolmen.output))) (rule (target testfile-arith_div_interval003_fpa.output) (deps (:input testfile-arith_div_interval003.ae)) @@ -82506,12 +81034,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval003.expected - testfile-arith_div_interval003_fpa.output))) + (deps testfile-arith_div_interval003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval003.expected testfile-arith_div_interval003_fpa.output))) (rule (target testfile-arith_div_interval002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82530,12 +81057,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82556,12 +81082,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82581,12 +81106,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82605,12 +81129,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82629,12 +81152,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82653,12 +81175,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval002_cdcl.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82676,12 +81197,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_cdcl.output))) + (deps testfile-arith_div_interval002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_cdcl.output))) (rule (target testfile-arith_div_interval002_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82699,12 +81219,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_tableaux_cdcl.output))) + (deps testfile-arith_div_interval002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval002_tableaux.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82722,12 +81241,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_tableaux.output))) + (deps testfile-arith_div_interval002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_tableaux.output))) (rule (target testfile-arith_div_interval002_legacy.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82744,12 +81262,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_legacy.output))) + (deps testfile-arith_div_interval002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_legacy.output))) (rule (target testfile-arith_div_interval002_dolmen.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82766,12 +81283,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_dolmen.output))) + (deps testfile-arith_div_interval002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_dolmen.output))) (rule (target testfile-arith_div_interval002_fpa.output) (deps (:input testfile-arith_div_interval002.ae)) @@ -82788,12 +81304,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval002.expected - testfile-arith_div_interval002_fpa.output))) + (deps testfile-arith_div_interval002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval002.expected testfile-arith_div_interval002_fpa.output))) (rule (target testfile-arith_div_interval001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82812,12 +81327,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82838,12 +81352,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82863,12 +81376,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div_interval001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82887,12 +81399,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div_interval001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82911,12 +81422,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div_interval001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82935,12 +81445,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div_interval001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div_interval001_cdcl.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82958,12 +81467,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_cdcl.output))) + (deps testfile-arith_div_interval001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_cdcl.output))) (rule (target testfile-arith_div_interval001_tableaux_cdcl.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -82981,12 +81489,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_tableaux_cdcl.output))) + (deps testfile-arith_div_interval001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_tableaux_cdcl.output))) (rule (target testfile-arith_div_interval001_tableaux.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -83004,12 +81511,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_tableaux.output))) + (deps testfile-arith_div_interval001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_tableaux.output))) (rule (target testfile-arith_div_interval001_legacy.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -83026,12 +81532,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_legacy.output))) + (deps testfile-arith_div_interval001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_legacy.output))) (rule (target testfile-arith_div_interval001_dolmen.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -83048,12 +81553,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_dolmen.output))) + (deps testfile-arith_div_interval001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_dolmen.output))) (rule (target testfile-arith_div_interval001_fpa.output) (deps (:input testfile-arith_div_interval001.ae)) @@ -83070,12 +81574,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div_interval001.expected - testfile-arith_div_interval001_fpa.output))) + (deps testfile-arith_div_interval001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div_interval001.expected testfile-arith_div_interval001_fpa.output))) (rule (target testfile-arith_div030_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div030.ae)) @@ -83094,12 +81597,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div030_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div030.ae)) @@ -83120,12 +81622,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div030.ae)) @@ -83145,12 +81646,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div030_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div030.ae)) @@ -83169,12 +81669,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div030_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div030.ae)) @@ -83193,12 +81692,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div030_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div030.ae)) @@ -83217,12 +81715,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div030_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div030_cdcl.output) (deps (:input testfile-arith_div030.ae)) @@ -83240,10 +81737,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div030.expected testfile-arith_div030_cdcl.output))) + (deps testfile-arith_div030_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_cdcl.output))) (rule (target testfile-arith_div030_tableaux_cdcl.output) (deps (:input testfile-arith_div030.ae)) @@ -83261,12 +81759,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_tableaux_cdcl.output))) + (deps testfile-arith_div030_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_tableaux_cdcl.output))) (rule (target testfile-arith_div030_tableaux.output) (deps (:input testfile-arith_div030.ae)) @@ -83284,12 +81781,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_tableaux.output))) + (deps testfile-arith_div030_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_tableaux.output))) (rule (target testfile-arith_div030_legacy.output) (deps (:input testfile-arith_div030.ae)) @@ -83306,12 +81802,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_legacy.output))) + (deps testfile-arith_div030_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_legacy.output))) (rule (target testfile-arith_div030_dolmen.output) (deps (:input testfile-arith_div030.ae)) @@ -83328,12 +81823,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div030.expected - testfile-arith_div030_dolmen.output))) + (deps testfile-arith_div030_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_dolmen.output))) (rule (target testfile-arith_div030_fpa.output) (deps (:input testfile-arith_div030.ae)) @@ -83350,10 +81844,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div030.expected testfile-arith_div030_fpa.output))) + (deps testfile-arith_div030_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div030.expected testfile-arith_div030_fpa.output))) (rule (target testfile-arith_div029_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div029.ae)) @@ -83372,12 +81867,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div029_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div029.ae)) @@ -83398,12 +81892,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div029.ae)) @@ -83423,12 +81916,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div029_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div029.ae)) @@ -83447,12 +81939,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div029_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div029.ae)) @@ -83471,12 +81962,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div029_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div029.ae)) @@ -83495,12 +81985,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div029_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div029_cdcl.output) (deps (:input testfile-arith_div029.ae)) @@ -83518,10 +82007,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div029.expected testfile-arith_div029_cdcl.output))) + (deps testfile-arith_div029_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_cdcl.output))) (rule (target testfile-arith_div029_tableaux_cdcl.output) (deps (:input testfile-arith_div029.ae)) @@ -83539,12 +82029,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_tableaux_cdcl.output))) + (deps testfile-arith_div029_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_tableaux_cdcl.output))) (rule (target testfile-arith_div029_tableaux.output) (deps (:input testfile-arith_div029.ae)) @@ -83562,12 +82051,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_tableaux.output))) + (deps testfile-arith_div029_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_tableaux.output))) (rule (target testfile-arith_div029_legacy.output) (deps (:input testfile-arith_div029.ae)) @@ -83584,12 +82072,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_legacy.output))) + (deps testfile-arith_div029_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_legacy.output))) (rule (target testfile-arith_div029_dolmen.output) (deps (:input testfile-arith_div029.ae)) @@ -83606,12 +82093,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div029.expected - testfile-arith_div029_dolmen.output))) + (deps testfile-arith_div029_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_dolmen.output))) (rule (target testfile-arith_div029_fpa.output) (deps (:input testfile-arith_div029.ae)) @@ -83628,10 +82114,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div029.expected testfile-arith_div029_fpa.output))) + (deps testfile-arith_div029_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div029.expected testfile-arith_div029_fpa.output))) (rule (target testfile-arith_div028_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div028.ae)) @@ -83650,12 +82137,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div028_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div028.ae)) @@ -83676,12 +82162,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div028.ae)) @@ -83701,12 +82186,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div028_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div028.ae)) @@ -83725,12 +82209,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div028_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div028.ae)) @@ -83749,12 +82232,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div028_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div028.ae)) @@ -83773,12 +82255,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div028_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div028_cdcl.output) (deps (:input testfile-arith_div028.ae)) @@ -83796,10 +82277,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div028.expected testfile-arith_div028_cdcl.output))) + (deps testfile-arith_div028_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_cdcl.output))) (rule (target testfile-arith_div028_tableaux_cdcl.output) (deps (:input testfile-arith_div028.ae)) @@ -83817,12 +82299,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_tableaux_cdcl.output))) + (deps testfile-arith_div028_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_tableaux_cdcl.output))) (rule (target testfile-arith_div028_tableaux.output) (deps (:input testfile-arith_div028.ae)) @@ -83840,12 +82321,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_tableaux.output))) + (deps testfile-arith_div028_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_tableaux.output))) (rule (target testfile-arith_div028_legacy.output) (deps (:input testfile-arith_div028.ae)) @@ -83862,12 +82342,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_legacy.output))) + (deps testfile-arith_div028_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_legacy.output))) (rule (target testfile-arith_div028_dolmen.output) (deps (:input testfile-arith_div028.ae)) @@ -83884,12 +82363,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div028.expected - testfile-arith_div028_dolmen.output))) + (deps testfile-arith_div028_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_dolmen.output))) (rule (target testfile-arith_div028_fpa.output) (deps (:input testfile-arith_div028.ae)) @@ -83906,10 +82384,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div028.expected testfile-arith_div028_fpa.output))) + (deps testfile-arith_div028_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div028.expected testfile-arith_div028_fpa.output))) (rule (target testfile-arith_div027_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div027.ae)) @@ -83928,12 +82407,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div027_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div027.ae)) @@ -83954,12 +82432,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div027.ae)) @@ -83979,12 +82456,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div027_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div027.ae)) @@ -84003,12 +82479,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div027_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div027.ae)) @@ -84027,12 +82502,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div027_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div027.ae)) @@ -84051,12 +82525,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div027_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div027_cdcl.output) (deps (:input testfile-arith_div027.ae)) @@ -84074,10 +82547,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div027.expected testfile-arith_div027_cdcl.output))) + (deps testfile-arith_div027_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_cdcl.output))) (rule (target testfile-arith_div027_tableaux_cdcl.output) (deps (:input testfile-arith_div027.ae)) @@ -84095,12 +82569,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_tableaux_cdcl.output))) + (deps testfile-arith_div027_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_tableaux_cdcl.output))) (rule (target testfile-arith_div027_tableaux.output) (deps (:input testfile-arith_div027.ae)) @@ -84118,12 +82591,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_tableaux.output))) + (deps testfile-arith_div027_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_tableaux.output))) (rule (target testfile-arith_div027_legacy.output) (deps (:input testfile-arith_div027.ae)) @@ -84140,12 +82612,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_legacy.output))) + (deps testfile-arith_div027_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_legacy.output))) (rule (target testfile-arith_div027_dolmen.output) (deps (:input testfile-arith_div027.ae)) @@ -84162,12 +82633,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div027.expected - testfile-arith_div027_dolmen.output))) + (deps testfile-arith_div027_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_dolmen.output))) (rule (target testfile-arith_div027_fpa.output) (deps (:input testfile-arith_div027.ae)) @@ -84184,10 +82654,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div027.expected testfile-arith_div027_fpa.output))) + (deps testfile-arith_div027_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div027.expected testfile-arith_div027_fpa.output))) (rule (target testfile-arith_div026_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div026.ae)) @@ -84206,12 +82677,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div026_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div026.ae)) @@ -84232,12 +82702,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div026.ae)) @@ -84257,12 +82726,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div026_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div026.ae)) @@ -84281,12 +82749,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div026_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div026.ae)) @@ -84305,12 +82772,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div026_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div026.ae)) @@ -84329,12 +82795,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div026_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div026_cdcl.output) (deps (:input testfile-arith_div026.ae)) @@ -84352,10 +82817,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div026.expected testfile-arith_div026_cdcl.output))) + (deps testfile-arith_div026_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_cdcl.output))) (rule (target testfile-arith_div026_tableaux_cdcl.output) (deps (:input testfile-arith_div026.ae)) @@ -84373,12 +82839,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_tableaux_cdcl.output))) + (deps testfile-arith_div026_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_tableaux_cdcl.output))) (rule (target testfile-arith_div026_tableaux.output) (deps (:input testfile-arith_div026.ae)) @@ -84396,12 +82861,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_tableaux.output))) + (deps testfile-arith_div026_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_tableaux.output))) (rule (target testfile-arith_div026_legacy.output) (deps (:input testfile-arith_div026.ae)) @@ -84418,12 +82882,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_legacy.output))) + (deps testfile-arith_div026_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_legacy.output))) (rule (target testfile-arith_div026_dolmen.output) (deps (:input testfile-arith_div026.ae)) @@ -84440,12 +82903,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div026.expected - testfile-arith_div026_dolmen.output))) + (deps testfile-arith_div026_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_dolmen.output))) (rule (target testfile-arith_div026_fpa.output) (deps (:input testfile-arith_div026.ae)) @@ -84462,10 +82924,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div026.expected testfile-arith_div026_fpa.output))) + (deps testfile-arith_div026_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div026.expected testfile-arith_div026_fpa.output))) (rule (target testfile-arith_div025_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div025.ae)) @@ -84484,12 +82947,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div025_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div025.ae)) @@ -84510,12 +82972,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div025.ae)) @@ -84535,12 +82996,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div025_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div025.ae)) @@ -84559,12 +83019,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div025_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div025.ae)) @@ -84583,12 +83042,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div025_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div025.ae)) @@ -84607,12 +83065,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div025_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div025_cdcl.output) (deps (:input testfile-arith_div025.ae)) @@ -84630,10 +83087,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div025.expected testfile-arith_div025_cdcl.output))) + (deps testfile-arith_div025_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_cdcl.output))) (rule (target testfile-arith_div025_tableaux_cdcl.output) (deps (:input testfile-arith_div025.ae)) @@ -84651,12 +83109,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_tableaux_cdcl.output))) + (deps testfile-arith_div025_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_tableaux_cdcl.output))) (rule (target testfile-arith_div025_tableaux.output) (deps (:input testfile-arith_div025.ae)) @@ -84674,12 +83131,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_tableaux.output))) + (deps testfile-arith_div025_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_tableaux.output))) (rule (target testfile-arith_div025_legacy.output) (deps (:input testfile-arith_div025.ae)) @@ -84696,12 +83152,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_legacy.output))) + (deps testfile-arith_div025_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_legacy.output))) (rule (target testfile-arith_div025_dolmen.output) (deps (:input testfile-arith_div025.ae)) @@ -84718,12 +83173,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div025.expected - testfile-arith_div025_dolmen.output))) + (deps testfile-arith_div025_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_dolmen.output))) (rule (target testfile-arith_div025_fpa.output) (deps (:input testfile-arith_div025.ae)) @@ -84740,10 +83194,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div025.expected testfile-arith_div025_fpa.output))) + (deps testfile-arith_div025_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div025.expected testfile-arith_div025_fpa.output))) (rule (target testfile-arith_div024_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div024.ae)) @@ -84762,12 +83217,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div024_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div024.ae)) @@ -84788,12 +83242,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div024.ae)) @@ -84813,12 +83266,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div024_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div024.ae)) @@ -84837,12 +83289,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div024_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div024.ae)) @@ -84861,12 +83312,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div024_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div024.ae)) @@ -84885,12 +83335,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div024_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div024_cdcl.output) (deps (:input testfile-arith_div024.ae)) @@ -84908,10 +83357,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div024.expected testfile-arith_div024_cdcl.output))) + (deps testfile-arith_div024_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_cdcl.output))) (rule (target testfile-arith_div024_tableaux_cdcl.output) (deps (:input testfile-arith_div024.ae)) @@ -84929,12 +83379,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_tableaux_cdcl.output))) + (deps testfile-arith_div024_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_tableaux_cdcl.output))) (rule (target testfile-arith_div024_tableaux.output) (deps (:input testfile-arith_div024.ae)) @@ -84952,12 +83401,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_tableaux.output))) + (deps testfile-arith_div024_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_tableaux.output))) (rule (target testfile-arith_div024_legacy.output) (deps (:input testfile-arith_div024.ae)) @@ -84974,12 +83422,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_legacy.output))) + (deps testfile-arith_div024_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_legacy.output))) (rule (target testfile-arith_div024_dolmen.output) (deps (:input testfile-arith_div024.ae)) @@ -84996,12 +83443,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div024.expected - testfile-arith_div024_dolmen.output))) + (deps testfile-arith_div024_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_dolmen.output))) (rule (target testfile-arith_div024_fpa.output) (deps (:input testfile-arith_div024.ae)) @@ -85018,10 +83464,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div024.expected testfile-arith_div024_fpa.output))) + (deps testfile-arith_div024_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div024.expected testfile-arith_div024_fpa.output))) (rule (target testfile-arith_div023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div023.ae)) @@ -85040,12 +83487,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div023.ae)) @@ -85066,12 +83512,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div023.ae)) @@ -85091,12 +83536,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div023.ae)) @@ -85115,12 +83559,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div023.ae)) @@ -85139,12 +83582,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div023.ae)) @@ -85163,12 +83605,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div023_cdcl.output) (deps (:input testfile-arith_div023.ae)) @@ -85186,10 +83627,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div023.expected testfile-arith_div023_cdcl.output))) + (deps testfile-arith_div023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_cdcl.output))) (rule (target testfile-arith_div023_tableaux_cdcl.output) (deps (:input testfile-arith_div023.ae)) @@ -85207,12 +83649,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_tableaux_cdcl.output))) + (deps testfile-arith_div023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_tableaux_cdcl.output))) (rule (target testfile-arith_div023_tableaux.output) (deps (:input testfile-arith_div023.ae)) @@ -85230,12 +83671,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_tableaux.output))) + (deps testfile-arith_div023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_tableaux.output))) (rule (target testfile-arith_div023_legacy.output) (deps (:input testfile-arith_div023.ae)) @@ -85252,12 +83692,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_legacy.output))) + (deps testfile-arith_div023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_legacy.output))) (rule (target testfile-arith_div023_dolmen.output) (deps (:input testfile-arith_div023.ae)) @@ -85274,12 +83713,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div023.expected - testfile-arith_div023_dolmen.output))) + (deps testfile-arith_div023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_dolmen.output))) (rule (target testfile-arith_div023_fpa.output) (deps (:input testfile-arith_div023.ae)) @@ -85296,10 +83734,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div023.expected testfile-arith_div023_fpa.output))) + (deps testfile-arith_div023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div023.expected testfile-arith_div023_fpa.output))) (rule (target testfile-arith_div022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div022.ae)) @@ -85318,12 +83757,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div022.ae)) @@ -85344,12 +83782,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div022.ae)) @@ -85369,12 +83806,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div022.ae)) @@ -85393,12 +83829,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div022.ae)) @@ -85417,12 +83852,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div022.ae)) @@ -85441,12 +83875,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div022_cdcl.output) (deps (:input testfile-arith_div022.ae)) @@ -85464,10 +83897,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div022.expected testfile-arith_div022_cdcl.output))) + (deps testfile-arith_div022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_cdcl.output))) (rule (target testfile-arith_div022_tableaux_cdcl.output) (deps (:input testfile-arith_div022.ae)) @@ -85485,12 +83919,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_tableaux_cdcl.output))) + (deps testfile-arith_div022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_tableaux_cdcl.output))) (rule (target testfile-arith_div022_tableaux.output) (deps (:input testfile-arith_div022.ae)) @@ -85508,12 +83941,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_tableaux.output))) + (deps testfile-arith_div022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_tableaux.output))) (rule (target testfile-arith_div022_legacy.output) (deps (:input testfile-arith_div022.ae)) @@ -85530,12 +83962,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_legacy.output))) + (deps testfile-arith_div022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_legacy.output))) (rule (target testfile-arith_div022_dolmen.output) (deps (:input testfile-arith_div022.ae)) @@ -85552,12 +83983,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div022.expected - testfile-arith_div022_dolmen.output))) + (deps testfile-arith_div022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_dolmen.output))) (rule (target testfile-arith_div022_fpa.output) (deps (:input testfile-arith_div022.ae)) @@ -85574,10 +84004,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div022.expected testfile-arith_div022_fpa.output))) + (deps testfile-arith_div022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div022.expected testfile-arith_div022_fpa.output))) (rule (target testfile-arith_div021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div021.ae)) @@ -85596,12 +84027,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div021.ae)) @@ -85622,12 +84052,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div021.ae)) @@ -85647,12 +84076,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div021.ae)) @@ -85671,12 +84099,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div021.ae)) @@ -85695,12 +84122,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div021.ae)) @@ -85719,12 +84145,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div021_cdcl.output) (deps (:input testfile-arith_div021.ae)) @@ -85742,10 +84167,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div021.expected testfile-arith_div021_cdcl.output))) + (deps testfile-arith_div021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_cdcl.output))) (rule (target testfile-arith_div021_tableaux_cdcl.output) (deps (:input testfile-arith_div021.ae)) @@ -85763,12 +84189,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_tableaux_cdcl.output))) + (deps testfile-arith_div021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_tableaux_cdcl.output))) (rule (target testfile-arith_div021_tableaux.output) (deps (:input testfile-arith_div021.ae)) @@ -85786,12 +84211,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_tableaux.output))) + (deps testfile-arith_div021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_tableaux.output))) (rule (target testfile-arith_div021_legacy.output) (deps (:input testfile-arith_div021.ae)) @@ -85808,12 +84232,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_legacy.output))) + (deps testfile-arith_div021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_legacy.output))) (rule (target testfile-arith_div021_dolmen.output) (deps (:input testfile-arith_div021.ae)) @@ -85830,12 +84253,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div021.expected - testfile-arith_div021_dolmen.output))) + (deps testfile-arith_div021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_dolmen.output))) (rule (target testfile-arith_div021_fpa.output) (deps (:input testfile-arith_div021.ae)) @@ -85852,10 +84274,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div021.expected testfile-arith_div021_fpa.output))) + (deps testfile-arith_div021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div021.expected testfile-arith_div021_fpa.output))) (rule (target testfile-arith_div020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div020.ae)) @@ -85874,12 +84297,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div020.ae)) @@ -85900,12 +84322,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div020.ae)) @@ -85925,12 +84346,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div020.ae)) @@ -85949,12 +84369,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div020.ae)) @@ -85973,12 +84392,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div020.ae)) @@ -85997,12 +84415,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div020_cdcl.output) (deps (:input testfile-arith_div020.ae)) @@ -86020,10 +84437,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div020.expected testfile-arith_div020_cdcl.output))) + (deps testfile-arith_div020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_cdcl.output))) (rule (target testfile-arith_div020_tableaux_cdcl.output) (deps (:input testfile-arith_div020.ae)) @@ -86041,12 +84459,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_tableaux_cdcl.output))) + (deps testfile-arith_div020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_tableaux_cdcl.output))) (rule (target testfile-arith_div020_tableaux.output) (deps (:input testfile-arith_div020.ae)) @@ -86064,12 +84481,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_tableaux.output))) + (deps testfile-arith_div020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_tableaux.output))) (rule (target testfile-arith_div020_legacy.output) (deps (:input testfile-arith_div020.ae)) @@ -86086,12 +84502,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_legacy.output))) + (deps testfile-arith_div020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_legacy.output))) (rule (target testfile-arith_div020_dolmen.output) (deps (:input testfile-arith_div020.ae)) @@ -86108,12 +84523,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div020.expected - testfile-arith_div020_dolmen.output))) + (deps testfile-arith_div020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_dolmen.output))) (rule (target testfile-arith_div020_fpa.output) (deps (:input testfile-arith_div020.ae)) @@ -86130,10 +84544,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div020.expected testfile-arith_div020_fpa.output))) + (deps testfile-arith_div020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div020.expected testfile-arith_div020_fpa.output))) (rule (target testfile-arith_div019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div019.ae)) @@ -86152,12 +84567,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div019.ae)) @@ -86178,12 +84592,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div019.ae)) @@ -86203,12 +84616,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div019.ae)) @@ -86227,12 +84639,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div019.ae)) @@ -86251,12 +84662,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div019.ae)) @@ -86275,12 +84685,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div019_cdcl.output) (deps (:input testfile-arith_div019.ae)) @@ -86298,10 +84707,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div019.expected testfile-arith_div019_cdcl.output))) + (deps testfile-arith_div019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_cdcl.output))) (rule (target testfile-arith_div019_tableaux_cdcl.output) (deps (:input testfile-arith_div019.ae)) @@ -86319,12 +84729,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_tableaux_cdcl.output))) + (deps testfile-arith_div019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_tableaux_cdcl.output))) (rule (target testfile-arith_div019_tableaux.output) (deps (:input testfile-arith_div019.ae)) @@ -86342,12 +84751,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_tableaux.output))) + (deps testfile-arith_div019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_tableaux.output))) (rule (target testfile-arith_div019_legacy.output) (deps (:input testfile-arith_div019.ae)) @@ -86364,12 +84772,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_legacy.output))) + (deps testfile-arith_div019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_legacy.output))) (rule (target testfile-arith_div019_dolmen.output) (deps (:input testfile-arith_div019.ae)) @@ -86386,12 +84793,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div019.expected - testfile-arith_div019_dolmen.output))) + (deps testfile-arith_div019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_dolmen.output))) (rule (target testfile-arith_div019_fpa.output) (deps (:input testfile-arith_div019.ae)) @@ -86408,10 +84814,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div019.expected testfile-arith_div019_fpa.output))) + (deps testfile-arith_div019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div019.expected testfile-arith_div019_fpa.output))) (rule (target testfile-arith_div018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div018.ae)) @@ -86430,12 +84837,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div018.ae)) @@ -86456,12 +84862,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div018.ae)) @@ -86481,12 +84886,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div018.ae)) @@ -86505,12 +84909,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div018.ae)) @@ -86529,12 +84932,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div018.ae)) @@ -86553,12 +84955,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div018_cdcl.output) (deps (:input testfile-arith_div018.ae)) @@ -86576,10 +84977,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div018.expected testfile-arith_div018_cdcl.output))) + (deps testfile-arith_div018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_cdcl.output))) (rule (target testfile-arith_div018_tableaux_cdcl.output) (deps (:input testfile-arith_div018.ae)) @@ -86597,12 +84999,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_tableaux_cdcl.output))) + (deps testfile-arith_div018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_tableaux_cdcl.output))) (rule (target testfile-arith_div018_tableaux.output) (deps (:input testfile-arith_div018.ae)) @@ -86620,12 +85021,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_tableaux.output))) + (deps testfile-arith_div018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_tableaux.output))) (rule (target testfile-arith_div018_legacy.output) (deps (:input testfile-arith_div018.ae)) @@ -86642,12 +85042,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_legacy.output))) + (deps testfile-arith_div018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_legacy.output))) (rule (target testfile-arith_div018_dolmen.output) (deps (:input testfile-arith_div018.ae)) @@ -86664,12 +85063,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div018.expected - testfile-arith_div018_dolmen.output))) + (deps testfile-arith_div018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_dolmen.output))) (rule (target testfile-arith_div018_fpa.output) (deps (:input testfile-arith_div018.ae)) @@ -86686,10 +85084,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div018.expected testfile-arith_div018_fpa.output))) + (deps testfile-arith_div018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div018.expected testfile-arith_div018_fpa.output))) (rule (target testfile-arith_div017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div017.ae)) @@ -86708,12 +85107,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div017.ae)) @@ -86734,12 +85132,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div017.ae)) @@ -86759,12 +85156,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div017.ae)) @@ -86783,12 +85179,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div017.ae)) @@ -86807,12 +85202,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div017.ae)) @@ -86831,12 +85225,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div017_cdcl.output) (deps (:input testfile-arith_div017.ae)) @@ -86854,10 +85247,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div017.expected testfile-arith_div017_cdcl.output))) + (deps testfile-arith_div017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_cdcl.output))) (rule (target testfile-arith_div017_tableaux_cdcl.output) (deps (:input testfile-arith_div017.ae)) @@ -86875,12 +85269,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_tableaux_cdcl.output))) + (deps testfile-arith_div017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_tableaux_cdcl.output))) (rule (target testfile-arith_div017_tableaux.output) (deps (:input testfile-arith_div017.ae)) @@ -86898,12 +85291,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_tableaux.output))) + (deps testfile-arith_div017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_tableaux.output))) (rule (target testfile-arith_div017_legacy.output) (deps (:input testfile-arith_div017.ae)) @@ -86920,12 +85312,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_legacy.output))) + (deps testfile-arith_div017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_legacy.output))) (rule (target testfile-arith_div017_dolmen.output) (deps (:input testfile-arith_div017.ae)) @@ -86942,12 +85333,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div017.expected - testfile-arith_div017_dolmen.output))) + (deps testfile-arith_div017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_dolmen.output))) (rule (target testfile-arith_div017_fpa.output) (deps (:input testfile-arith_div017.ae)) @@ -86964,10 +85354,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div017.expected testfile-arith_div017_fpa.output))) + (deps testfile-arith_div017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div017.expected testfile-arith_div017_fpa.output))) (rule (target testfile-arith_div016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div016.ae)) @@ -86986,12 +85377,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div016.ae)) @@ -87012,12 +85402,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div016.ae)) @@ -87037,12 +85426,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div016.ae)) @@ -87061,12 +85449,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div016.ae)) @@ -87085,12 +85472,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div016.ae)) @@ -87109,12 +85495,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div016_cdcl.output) (deps (:input testfile-arith_div016.ae)) @@ -87132,10 +85517,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div016.expected testfile-arith_div016_cdcl.output))) + (deps testfile-arith_div016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_cdcl.output))) (rule (target testfile-arith_div016_tableaux_cdcl.output) (deps (:input testfile-arith_div016.ae)) @@ -87153,12 +85539,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_tableaux_cdcl.output))) + (deps testfile-arith_div016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_tableaux_cdcl.output))) (rule (target testfile-arith_div016_tableaux.output) (deps (:input testfile-arith_div016.ae)) @@ -87176,12 +85561,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_tableaux.output))) + (deps testfile-arith_div016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_tableaux.output))) (rule (target testfile-arith_div016_legacy.output) (deps (:input testfile-arith_div016.ae)) @@ -87198,12 +85582,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_legacy.output))) + (deps testfile-arith_div016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_legacy.output))) (rule (target testfile-arith_div016_dolmen.output) (deps (:input testfile-arith_div016.ae)) @@ -87220,12 +85603,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div016.expected - testfile-arith_div016_dolmen.output))) + (deps testfile-arith_div016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_dolmen.output))) (rule (target testfile-arith_div016_fpa.output) (deps (:input testfile-arith_div016.ae)) @@ -87242,10 +85624,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div016.expected testfile-arith_div016_fpa.output))) + (deps testfile-arith_div016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div016.expected testfile-arith_div016_fpa.output))) (rule (target testfile-arith_div015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div015.ae)) @@ -87264,12 +85647,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div015.ae)) @@ -87290,12 +85672,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div015.ae)) @@ -87315,12 +85696,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div015.ae)) @@ -87339,12 +85719,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div015.ae)) @@ -87363,12 +85742,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div015.ae)) @@ -87387,12 +85765,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div015_cdcl.output) (deps (:input testfile-arith_div015.ae)) @@ -87410,10 +85787,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div015.expected testfile-arith_div015_cdcl.output))) + (deps testfile-arith_div015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_cdcl.output))) (rule (target testfile-arith_div015_tableaux_cdcl.output) (deps (:input testfile-arith_div015.ae)) @@ -87431,12 +85809,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_tableaux_cdcl.output))) + (deps testfile-arith_div015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_tableaux_cdcl.output))) (rule (target testfile-arith_div015_tableaux.output) (deps (:input testfile-arith_div015.ae)) @@ -87454,12 +85831,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_tableaux.output))) + (deps testfile-arith_div015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_tableaux.output))) (rule (target testfile-arith_div015_legacy.output) (deps (:input testfile-arith_div015.ae)) @@ -87476,12 +85852,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_legacy.output))) + (deps testfile-arith_div015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_legacy.output))) (rule (target testfile-arith_div015_dolmen.output) (deps (:input testfile-arith_div015.ae)) @@ -87498,12 +85873,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div015.expected - testfile-arith_div015_dolmen.output))) + (deps testfile-arith_div015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_dolmen.output))) (rule (target testfile-arith_div015_fpa.output) (deps (:input testfile-arith_div015.ae)) @@ -87520,10 +85894,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div015.expected testfile-arith_div015_fpa.output))) + (deps testfile-arith_div015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div015.expected testfile-arith_div015_fpa.output))) (rule (target testfile-arith_div014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div014.ae)) @@ -87542,12 +85917,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div014.ae)) @@ -87568,12 +85942,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div014.ae)) @@ -87593,12 +85966,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div014.ae)) @@ -87617,12 +85989,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div014.ae)) @@ -87641,12 +86012,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div014.ae)) @@ -87665,12 +86035,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div014_cdcl.output) (deps (:input testfile-arith_div014.ae)) @@ -87688,10 +86057,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div014.expected testfile-arith_div014_cdcl.output))) + (deps testfile-arith_div014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_cdcl.output))) (rule (target testfile-arith_div014_tableaux_cdcl.output) (deps (:input testfile-arith_div014.ae)) @@ -87709,12 +86079,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_tableaux_cdcl.output))) + (deps testfile-arith_div014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_tableaux_cdcl.output))) (rule (target testfile-arith_div014_tableaux.output) (deps (:input testfile-arith_div014.ae)) @@ -87732,12 +86101,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_tableaux.output))) + (deps testfile-arith_div014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_tableaux.output))) (rule (target testfile-arith_div014_legacy.output) (deps (:input testfile-arith_div014.ae)) @@ -87754,12 +86122,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_legacy.output))) + (deps testfile-arith_div014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_legacy.output))) (rule (target testfile-arith_div014_dolmen.output) (deps (:input testfile-arith_div014.ae)) @@ -87776,12 +86143,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div014.expected - testfile-arith_div014_dolmen.output))) + (deps testfile-arith_div014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_dolmen.output))) (rule (target testfile-arith_div014_fpa.output) (deps (:input testfile-arith_div014.ae)) @@ -87798,10 +86164,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div014.expected testfile-arith_div014_fpa.output))) + (deps testfile-arith_div014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div014.expected testfile-arith_div014_fpa.output))) (rule (target testfile-arith_div013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div013.ae)) @@ -87820,12 +86187,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div013.ae)) @@ -87846,12 +86212,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div013.ae)) @@ -87871,12 +86236,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div013.ae)) @@ -87895,12 +86259,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div013.ae)) @@ -87919,12 +86282,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div013.ae)) @@ -87943,12 +86305,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div013_cdcl.output) (deps (:input testfile-arith_div013.ae)) @@ -87966,10 +86327,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div013.expected testfile-arith_div013_cdcl.output))) + (deps testfile-arith_div013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_cdcl.output))) (rule (target testfile-arith_div013_tableaux_cdcl.output) (deps (:input testfile-arith_div013.ae)) @@ -87987,12 +86349,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_tableaux_cdcl.output))) + (deps testfile-arith_div013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_tableaux_cdcl.output))) (rule (target testfile-arith_div013_tableaux.output) (deps (:input testfile-arith_div013.ae)) @@ -88010,12 +86371,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_tableaux.output))) + (deps testfile-arith_div013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_tableaux.output))) (rule (target testfile-arith_div013_legacy.output) (deps (:input testfile-arith_div013.ae)) @@ -88032,12 +86392,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_legacy.output))) + (deps testfile-arith_div013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_legacy.output))) (rule (target testfile-arith_div013_dolmen.output) (deps (:input testfile-arith_div013.ae)) @@ -88054,12 +86413,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div013.expected - testfile-arith_div013_dolmen.output))) + (deps testfile-arith_div013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_dolmen.output))) (rule (target testfile-arith_div013_fpa.output) (deps (:input testfile-arith_div013.ae)) @@ -88076,10 +86434,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div013.expected testfile-arith_div013_fpa.output))) + (deps testfile-arith_div013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div013.expected testfile-arith_div013_fpa.output))) (rule (target testfile-arith_div012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div012.ae)) @@ -88098,12 +86457,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div012.ae)) @@ -88124,12 +86482,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div012.ae)) @@ -88149,12 +86506,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div012.ae)) @@ -88173,12 +86529,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div012.ae)) @@ -88197,12 +86552,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div012.ae)) @@ -88221,12 +86575,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div012_cdcl.output) (deps (:input testfile-arith_div012.ae)) @@ -88244,10 +86597,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div012.expected testfile-arith_div012_cdcl.output))) + (deps testfile-arith_div012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_cdcl.output))) (rule (target testfile-arith_div012_tableaux_cdcl.output) (deps (:input testfile-arith_div012.ae)) @@ -88265,12 +86619,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_tableaux_cdcl.output))) + (deps testfile-arith_div012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_tableaux_cdcl.output))) (rule (target testfile-arith_div012_tableaux.output) (deps (:input testfile-arith_div012.ae)) @@ -88288,12 +86641,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_tableaux.output))) + (deps testfile-arith_div012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_tableaux.output))) (rule (target testfile-arith_div012_legacy.output) (deps (:input testfile-arith_div012.ae)) @@ -88310,12 +86662,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_legacy.output))) + (deps testfile-arith_div012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_legacy.output))) (rule (target testfile-arith_div012_dolmen.output) (deps (:input testfile-arith_div012.ae)) @@ -88332,12 +86683,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div012.expected - testfile-arith_div012_dolmen.output))) + (deps testfile-arith_div012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_dolmen.output))) (rule (target testfile-arith_div012_fpa.output) (deps (:input testfile-arith_div012.ae)) @@ -88354,10 +86704,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div012.expected testfile-arith_div012_fpa.output))) + (deps testfile-arith_div012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div012.expected testfile-arith_div012_fpa.output))) (rule (target testfile-arith_div011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div011.ae)) @@ -88376,12 +86727,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div011.ae)) @@ -88402,12 +86752,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div011.ae)) @@ -88427,12 +86776,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div011.ae)) @@ -88451,12 +86799,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div011.ae)) @@ -88475,12 +86822,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div011.ae)) @@ -88499,12 +86845,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div011_cdcl.output) (deps (:input testfile-arith_div011.ae)) @@ -88522,10 +86867,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div011.expected testfile-arith_div011_cdcl.output))) + (deps testfile-arith_div011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_cdcl.output))) (rule (target testfile-arith_div011_tableaux_cdcl.output) (deps (:input testfile-arith_div011.ae)) @@ -88543,12 +86889,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_tableaux_cdcl.output))) + (deps testfile-arith_div011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_tableaux_cdcl.output))) (rule (target testfile-arith_div011_tableaux.output) (deps (:input testfile-arith_div011.ae)) @@ -88566,12 +86911,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_tableaux.output))) + (deps testfile-arith_div011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_tableaux.output))) (rule (target testfile-arith_div011_legacy.output) (deps (:input testfile-arith_div011.ae)) @@ -88588,12 +86932,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_legacy.output))) + (deps testfile-arith_div011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_legacy.output))) (rule (target testfile-arith_div011_dolmen.output) (deps (:input testfile-arith_div011.ae)) @@ -88610,12 +86953,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div011.expected - testfile-arith_div011_dolmen.output))) + (deps testfile-arith_div011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_dolmen.output))) (rule (target testfile-arith_div011_fpa.output) (deps (:input testfile-arith_div011.ae)) @@ -88632,10 +86974,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div011.expected testfile-arith_div011_fpa.output))) + (deps testfile-arith_div011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div011.expected testfile-arith_div011_fpa.output))) (rule (target testfile-arith_div010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div010.ae)) @@ -88654,12 +86997,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div010.ae)) @@ -88680,12 +87022,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div010.ae)) @@ -88705,12 +87046,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div010.ae)) @@ -88729,12 +87069,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div010.ae)) @@ -88753,12 +87092,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div010.ae)) @@ -88777,12 +87115,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div010_cdcl.output) (deps (:input testfile-arith_div010.ae)) @@ -88800,10 +87137,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div010.expected testfile-arith_div010_cdcl.output))) + (deps testfile-arith_div010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_cdcl.output))) (rule (target testfile-arith_div010_tableaux_cdcl.output) (deps (:input testfile-arith_div010.ae)) @@ -88821,12 +87159,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_tableaux_cdcl.output))) + (deps testfile-arith_div010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_tableaux_cdcl.output))) (rule (target testfile-arith_div010_tableaux.output) (deps (:input testfile-arith_div010.ae)) @@ -88844,12 +87181,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_tableaux.output))) + (deps testfile-arith_div010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_tableaux.output))) (rule (target testfile-arith_div010_legacy.output) (deps (:input testfile-arith_div010.ae)) @@ -88866,12 +87202,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_legacy.output))) + (deps testfile-arith_div010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_legacy.output))) (rule (target testfile-arith_div010_dolmen.output) (deps (:input testfile-arith_div010.ae)) @@ -88888,12 +87223,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div010.expected - testfile-arith_div010_dolmen.output))) + (deps testfile-arith_div010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_dolmen.output))) (rule (target testfile-arith_div010_fpa.output) (deps (:input testfile-arith_div010.ae)) @@ -88910,10 +87244,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div010.expected testfile-arith_div010_fpa.output))) + (deps testfile-arith_div010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div010.expected testfile-arith_div010_fpa.output))) (rule (target testfile-arith_div009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div009.ae)) @@ -88932,12 +87267,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div009.ae)) @@ -88958,12 +87292,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div009.ae)) @@ -88983,12 +87316,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div009.ae)) @@ -89007,12 +87339,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div009.ae)) @@ -89031,12 +87362,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div009.ae)) @@ -89055,12 +87385,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div009_cdcl.output) (deps (:input testfile-arith_div009.ae)) @@ -89078,10 +87407,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div009.expected testfile-arith_div009_cdcl.output))) + (deps testfile-arith_div009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_cdcl.output))) (rule (target testfile-arith_div009_tableaux_cdcl.output) (deps (:input testfile-arith_div009.ae)) @@ -89099,12 +87429,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_tableaux_cdcl.output))) + (deps testfile-arith_div009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_tableaux_cdcl.output))) (rule (target testfile-arith_div009_tableaux.output) (deps (:input testfile-arith_div009.ae)) @@ -89122,12 +87451,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_tableaux.output))) + (deps testfile-arith_div009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_tableaux.output))) (rule (target testfile-arith_div009_legacy.output) (deps (:input testfile-arith_div009.ae)) @@ -89144,12 +87472,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_legacy.output))) + (deps testfile-arith_div009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_legacy.output))) (rule (target testfile-arith_div009_dolmen.output) (deps (:input testfile-arith_div009.ae)) @@ -89166,12 +87493,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div009.expected - testfile-arith_div009_dolmen.output))) + (deps testfile-arith_div009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_dolmen.output))) (rule (target testfile-arith_div009_fpa.output) (deps (:input testfile-arith_div009.ae)) @@ -89188,10 +87514,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div009.expected testfile-arith_div009_fpa.output))) + (deps testfile-arith_div009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div009.expected testfile-arith_div009_fpa.output))) (rule (target testfile-arith_div008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div008.ae)) @@ -89210,12 +87537,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div008.ae)) @@ -89236,12 +87562,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div008.ae)) @@ -89261,12 +87586,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div008.ae)) @@ -89285,12 +87609,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div008.ae)) @@ -89309,12 +87632,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div008.ae)) @@ -89333,12 +87655,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div008_cdcl.output) (deps (:input testfile-arith_div008.ae)) @@ -89356,10 +87677,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div008.expected testfile-arith_div008_cdcl.output))) + (deps testfile-arith_div008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_cdcl.output))) (rule (target testfile-arith_div008_tableaux_cdcl.output) (deps (:input testfile-arith_div008.ae)) @@ -89377,12 +87699,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_tableaux_cdcl.output))) + (deps testfile-arith_div008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_tableaux_cdcl.output))) (rule (target testfile-arith_div008_tableaux.output) (deps (:input testfile-arith_div008.ae)) @@ -89400,12 +87721,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_tableaux.output))) + (deps testfile-arith_div008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_tableaux.output))) (rule (target testfile-arith_div008_legacy.output) (deps (:input testfile-arith_div008.ae)) @@ -89422,12 +87742,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_legacy.output))) + (deps testfile-arith_div008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_legacy.output))) (rule (target testfile-arith_div008_dolmen.output) (deps (:input testfile-arith_div008.ae)) @@ -89444,12 +87763,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div008.expected - testfile-arith_div008_dolmen.output))) + (deps testfile-arith_div008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_dolmen.output))) (rule (target testfile-arith_div008_fpa.output) (deps (:input testfile-arith_div008.ae)) @@ -89466,10 +87784,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div008.expected testfile-arith_div008_fpa.output))) + (deps testfile-arith_div008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div008.expected testfile-arith_div008_fpa.output))) (rule (target testfile-arith_div007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div007.ae)) @@ -89488,12 +87807,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div007.ae)) @@ -89514,12 +87832,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div007.ae)) @@ -89539,12 +87856,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div007.ae)) @@ -89563,12 +87879,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div007.ae)) @@ -89587,12 +87902,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div007.ae)) @@ -89611,12 +87925,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div007_cdcl.output) (deps (:input testfile-arith_div007.ae)) @@ -89634,10 +87947,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div007.expected testfile-arith_div007_cdcl.output))) + (deps testfile-arith_div007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_cdcl.output))) (rule (target testfile-arith_div007_tableaux_cdcl.output) (deps (:input testfile-arith_div007.ae)) @@ -89655,12 +87969,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_tableaux_cdcl.output))) + (deps testfile-arith_div007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_tableaux_cdcl.output))) (rule (target testfile-arith_div007_tableaux.output) (deps (:input testfile-arith_div007.ae)) @@ -89678,12 +87991,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_tableaux.output))) + (deps testfile-arith_div007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_tableaux.output))) (rule (target testfile-arith_div007_legacy.output) (deps (:input testfile-arith_div007.ae)) @@ -89700,12 +88012,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_legacy.output))) + (deps testfile-arith_div007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_legacy.output))) (rule (target testfile-arith_div007_dolmen.output) (deps (:input testfile-arith_div007.ae)) @@ -89722,12 +88033,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div007.expected - testfile-arith_div007_dolmen.output))) + (deps testfile-arith_div007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_dolmen.output))) (rule (target testfile-arith_div007_fpa.output) (deps (:input testfile-arith_div007.ae)) @@ -89744,10 +88054,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div007.expected testfile-arith_div007_fpa.output))) + (deps testfile-arith_div007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div007.expected testfile-arith_div007_fpa.output))) (rule (target testfile-arith_div006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div006.ae)) @@ -89766,12 +88077,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div006.ae)) @@ -89792,12 +88102,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div006.ae)) @@ -89817,12 +88126,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div006.ae)) @@ -89841,12 +88149,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div006.ae)) @@ -89865,12 +88172,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div006.ae)) @@ -89889,12 +88195,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div006_cdcl.output) (deps (:input testfile-arith_div006.ae)) @@ -89912,10 +88217,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div006.expected testfile-arith_div006_cdcl.output))) + (deps testfile-arith_div006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_cdcl.output))) (rule (target testfile-arith_div006_tableaux_cdcl.output) (deps (:input testfile-arith_div006.ae)) @@ -89933,12 +88239,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_tableaux_cdcl.output))) + (deps testfile-arith_div006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_tableaux_cdcl.output))) (rule (target testfile-arith_div006_tableaux.output) (deps (:input testfile-arith_div006.ae)) @@ -89956,12 +88261,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_tableaux.output))) + (deps testfile-arith_div006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_tableaux.output))) (rule (target testfile-arith_div006_legacy.output) (deps (:input testfile-arith_div006.ae)) @@ -89978,12 +88282,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_legacy.output))) + (deps testfile-arith_div006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_legacy.output))) (rule (target testfile-arith_div006_dolmen.output) (deps (:input testfile-arith_div006.ae)) @@ -90000,12 +88303,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div006.expected - testfile-arith_div006_dolmen.output))) + (deps testfile-arith_div006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_dolmen.output))) (rule (target testfile-arith_div006_fpa.output) (deps (:input testfile-arith_div006.ae)) @@ -90022,10 +88324,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div006.expected testfile-arith_div006_fpa.output))) + (deps testfile-arith_div006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div006.expected testfile-arith_div006_fpa.output))) (rule (target testfile-arith_div005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div005.ae)) @@ -90044,12 +88347,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div005.ae)) @@ -90070,12 +88372,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div005.ae)) @@ -90095,12 +88396,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div005.ae)) @@ -90119,12 +88419,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div005.ae)) @@ -90143,12 +88442,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div005.ae)) @@ -90167,12 +88465,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div005_cdcl.output) (deps (:input testfile-arith_div005.ae)) @@ -90190,10 +88487,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div005.expected testfile-arith_div005_cdcl.output))) + (deps testfile-arith_div005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_cdcl.output))) (rule (target testfile-arith_div005_tableaux_cdcl.output) (deps (:input testfile-arith_div005.ae)) @@ -90211,12 +88509,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_tableaux_cdcl.output))) + (deps testfile-arith_div005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_tableaux_cdcl.output))) (rule (target testfile-arith_div005_tableaux.output) (deps (:input testfile-arith_div005.ae)) @@ -90234,12 +88531,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_tableaux.output))) + (deps testfile-arith_div005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_tableaux.output))) (rule (target testfile-arith_div005_legacy.output) (deps (:input testfile-arith_div005.ae)) @@ -90256,12 +88552,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_legacy.output))) + (deps testfile-arith_div005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_legacy.output))) (rule (target testfile-arith_div005_dolmen.output) (deps (:input testfile-arith_div005.ae)) @@ -90278,12 +88573,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div005.expected - testfile-arith_div005_dolmen.output))) + (deps testfile-arith_div005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_dolmen.output))) (rule (target testfile-arith_div005_fpa.output) (deps (:input testfile-arith_div005.ae)) @@ -90300,10 +88594,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div005.expected testfile-arith_div005_fpa.output))) + (deps testfile-arith_div005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div005.expected testfile-arith_div005_fpa.output))) (rule (target testfile-arith_div004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div004.ae)) @@ -90322,12 +88617,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div004.ae)) @@ -90348,12 +88642,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div004.ae)) @@ -90373,12 +88666,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div004.ae)) @@ -90397,12 +88689,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div004.ae)) @@ -90421,12 +88712,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div004.ae)) @@ -90445,12 +88735,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div004_cdcl.output) (deps (:input testfile-arith_div004.ae)) @@ -90468,10 +88757,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div004.expected testfile-arith_div004_cdcl.output))) + (deps testfile-arith_div004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_cdcl.output))) (rule (target testfile-arith_div004_tableaux_cdcl.output) (deps (:input testfile-arith_div004.ae)) @@ -90489,12 +88779,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_tableaux_cdcl.output))) + (deps testfile-arith_div004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_tableaux_cdcl.output))) (rule (target testfile-arith_div004_tableaux.output) (deps (:input testfile-arith_div004.ae)) @@ -90512,12 +88801,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_tableaux.output))) + (deps testfile-arith_div004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_tableaux.output))) (rule (target testfile-arith_div004_legacy.output) (deps (:input testfile-arith_div004.ae)) @@ -90534,12 +88822,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_legacy.output))) + (deps testfile-arith_div004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_legacy.output))) (rule (target testfile-arith_div004_dolmen.output) (deps (:input testfile-arith_div004.ae)) @@ -90556,12 +88843,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div004.expected - testfile-arith_div004_dolmen.output))) + (deps testfile-arith_div004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_dolmen.output))) (rule (target testfile-arith_div004_fpa.output) (deps (:input testfile-arith_div004.ae)) @@ -90578,10 +88864,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div004.expected testfile-arith_div004_fpa.output))) + (deps testfile-arith_div004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div004.expected testfile-arith_div004_fpa.output))) (rule (target testfile-arith_div003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div003.ae)) @@ -90600,12 +88887,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div003.ae)) @@ -90626,12 +88912,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div003.ae)) @@ -90651,12 +88936,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div003.ae)) @@ -90675,12 +88959,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div003.ae)) @@ -90699,12 +88982,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div003.ae)) @@ -90723,12 +89005,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div003_cdcl.output) (deps (:input testfile-arith_div003.ae)) @@ -90746,10 +89027,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div003.expected testfile-arith_div003_cdcl.output))) + (deps testfile-arith_div003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_cdcl.output))) (rule (target testfile-arith_div003_tableaux_cdcl.output) (deps (:input testfile-arith_div003.ae)) @@ -90767,12 +89049,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_tableaux_cdcl.output))) + (deps testfile-arith_div003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_tableaux_cdcl.output))) (rule (target testfile-arith_div003_tableaux.output) (deps (:input testfile-arith_div003.ae)) @@ -90790,12 +89071,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_tableaux.output))) + (deps testfile-arith_div003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_tableaux.output))) (rule (target testfile-arith_div003_legacy.output) (deps (:input testfile-arith_div003.ae)) @@ -90812,12 +89092,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_legacy.output))) + (deps testfile-arith_div003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_legacy.output))) (rule (target testfile-arith_div003_dolmen.output) (deps (:input testfile-arith_div003.ae)) @@ -90834,12 +89113,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div003.expected - testfile-arith_div003_dolmen.output))) + (deps testfile-arith_div003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_dolmen.output))) (rule (target testfile-arith_div003_fpa.output) (deps (:input testfile-arith_div003.ae)) @@ -90856,10 +89134,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div003.expected testfile-arith_div003_fpa.output))) + (deps testfile-arith_div003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div003.expected testfile-arith_div003_fpa.output))) (rule (target testfile-arith_div002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div002.ae)) @@ -90878,12 +89157,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div002.ae)) @@ -90904,12 +89182,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div002.ae)) @@ -90929,12 +89206,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div002.ae)) @@ -90953,12 +89229,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div002.ae)) @@ -90977,12 +89252,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div002.ae)) @@ -91001,12 +89275,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div002_cdcl.output) (deps (:input testfile-arith_div002.ae)) @@ -91024,10 +89297,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div002.expected testfile-arith_div002_cdcl.output))) + (deps testfile-arith_div002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_cdcl.output))) (rule (target testfile-arith_div002_tableaux_cdcl.output) (deps (:input testfile-arith_div002.ae)) @@ -91045,12 +89319,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_tableaux_cdcl.output))) + (deps testfile-arith_div002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_tableaux_cdcl.output))) (rule (target testfile-arith_div002_tableaux.output) (deps (:input testfile-arith_div002.ae)) @@ -91068,12 +89341,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_tableaux.output))) + (deps testfile-arith_div002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_tableaux.output))) (rule (target testfile-arith_div002_legacy.output) (deps (:input testfile-arith_div002.ae)) @@ -91090,12 +89362,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_legacy.output))) + (deps testfile-arith_div002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_legacy.output))) (rule (target testfile-arith_div002_dolmen.output) (deps (:input testfile-arith_div002.ae)) @@ -91112,12 +89383,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div002.expected - testfile-arith_div002_dolmen.output))) + (deps testfile-arith_div002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_dolmen.output))) (rule (target testfile-arith_div002_fpa.output) (deps (:input testfile-arith_div002.ae)) @@ -91134,10 +89404,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div002.expected testfile-arith_div002_fpa.output))) + (deps testfile-arith_div002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div002.expected testfile-arith_div002_fpa.output))) (rule (target testfile-arith_div001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div001.ae)) @@ -91156,12 +89427,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div001.ae)) @@ -91182,12 +89452,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arith_div001.ae)) @@ -91207,12 +89476,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arith_div001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arith_div001.ae)) @@ -91231,12 +89499,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arith_div001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arith_div001.ae)) @@ -91255,12 +89522,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arith_div001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arith_div001.ae)) @@ -91279,12 +89545,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arith_div001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arith_div001_cdcl.output) (deps (:input testfile-arith_div001.ae)) @@ -91302,10 +89567,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div001.expected testfile-arith_div001_cdcl.output))) + (deps testfile-arith_div001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_cdcl.output))) (rule (target testfile-arith_div001_tableaux_cdcl.output) (deps (:input testfile-arith_div001.ae)) @@ -91323,12 +89589,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_tableaux_cdcl.output))) + (deps testfile-arith_div001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_tableaux_cdcl.output))) (rule (target testfile-arith_div001_tableaux.output) (deps (:input testfile-arith_div001.ae)) @@ -91346,12 +89611,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_tableaux.output))) + (deps testfile-arith_div001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_tableaux.output))) (rule (target testfile-arith_div001_legacy.output) (deps (:input testfile-arith_div001.ae)) @@ -91368,12 +89632,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_legacy.output))) + (deps testfile-arith_div001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_legacy.output))) (rule (target testfile-arith_div001_dolmen.output) (deps (:input testfile-arith_div001.ae)) @@ -91390,12 +89653,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arith_div001.expected - testfile-arith_div001_dolmen.output))) + (deps testfile-arith_div001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_dolmen.output))) (rule (target testfile-arith_div001_fpa.output) (deps (:input testfile-arith_div001.ae)) @@ -91412,10 +89674,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arith_div001.expected testfile-arith_div001_fpa.output))) + (deps testfile-arith_div001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arith_div001.expected testfile-arith_div001_fpa.output))) (rule (target testfile-ac_arith_mult035_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91434,12 +89697,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult035_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91460,12 +89722,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91485,12 +89746,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult035_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91509,12 +89769,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult035_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91533,12 +89792,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult035_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91557,12 +89815,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult035_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult035_cdcl.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91580,12 +89837,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_cdcl.output))) + (deps testfile-ac_arith_mult035_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_cdcl.output))) (rule (target testfile-ac_arith_mult035_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91603,12 +89859,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult035_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult035_tableaux.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91626,12 +89881,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_tableaux.output))) + (deps testfile-ac_arith_mult035_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_tableaux.output))) (rule (target testfile-ac_arith_mult035_legacy.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91648,12 +89902,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_legacy.output))) + (deps testfile-ac_arith_mult035_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_legacy.output))) (rule (target testfile-ac_arith_mult035_dolmen.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91670,12 +89923,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_dolmen.output))) + (deps testfile-ac_arith_mult035_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_dolmen.output))) (rule (target testfile-ac_arith_mult035_fpa.output) (deps (:input testfile-ac_arith_mult035.ae)) @@ -91692,12 +89944,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult035.expected - testfile-ac_arith_mult035_fpa.output))) + (deps testfile-ac_arith_mult035_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult035.expected testfile-ac_arith_mult035_fpa.output))) (rule (target testfile-ac_arith_mult034_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91716,12 +89967,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult034_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91742,12 +89992,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91767,12 +90016,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult034_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91791,12 +90039,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult034_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91815,12 +90062,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult034_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91839,12 +90085,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult034_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult034_cdcl.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91862,12 +90107,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_cdcl.output))) + (deps testfile-ac_arith_mult034_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_cdcl.output))) (rule (target testfile-ac_arith_mult034_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91885,12 +90129,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult034_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult034_tableaux.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91908,12 +90151,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_tableaux.output))) + (deps testfile-ac_arith_mult034_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_tableaux.output))) (rule (target testfile-ac_arith_mult034_legacy.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91930,12 +90172,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_legacy.output))) + (deps testfile-ac_arith_mult034_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_legacy.output))) (rule (target testfile-ac_arith_mult034_dolmen.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91952,12 +90193,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_dolmen.output))) + (deps testfile-ac_arith_mult034_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_dolmen.output))) (rule (target testfile-ac_arith_mult034_fpa.output) (deps (:input testfile-ac_arith_mult034.ae)) @@ -91974,12 +90214,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult034.expected - testfile-ac_arith_mult034_fpa.output))) + (deps testfile-ac_arith_mult034_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult034.expected testfile-ac_arith_mult034_fpa.output))) (rule (target testfile-ac_arith_mult033_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -91998,12 +90237,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult033_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92024,12 +90262,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92049,12 +90286,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult033_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92073,12 +90309,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult033_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92097,12 +90332,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult033_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92121,12 +90355,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult033_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult033_cdcl.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92144,12 +90377,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_cdcl.output))) + (deps testfile-ac_arith_mult033_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_cdcl.output))) (rule (target testfile-ac_arith_mult033_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92167,12 +90399,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult033_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult033_tableaux.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92190,12 +90421,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_tableaux.output))) + (deps testfile-ac_arith_mult033_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_tableaux.output))) (rule (target testfile-ac_arith_mult033_legacy.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92212,12 +90442,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_legacy.output))) + (deps testfile-ac_arith_mult033_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_legacy.output))) (rule (target testfile-ac_arith_mult033_dolmen.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92234,12 +90463,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_dolmen.output))) + (deps testfile-ac_arith_mult033_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_dolmen.output))) (rule (target testfile-ac_arith_mult033_fpa.output) (deps (:input testfile-ac_arith_mult033.ae)) @@ -92256,12 +90484,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult033.expected - testfile-ac_arith_mult033_fpa.output))) + (deps testfile-ac_arith_mult033_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult033.expected testfile-ac_arith_mult033_fpa.output))) (rule (target testfile-ac_arith_mult032_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92280,12 +90507,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult032_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92306,12 +90532,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92331,12 +90556,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult032_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92355,12 +90579,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult032_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92379,12 +90602,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult032_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92403,12 +90625,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult032_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult032_cdcl.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92426,12 +90647,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_cdcl.output))) + (deps testfile-ac_arith_mult032_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_cdcl.output))) (rule (target testfile-ac_arith_mult032_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92449,12 +90669,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult032_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult032_tableaux.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92472,12 +90691,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_tableaux.output))) + (deps testfile-ac_arith_mult032_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_tableaux.output))) (rule (target testfile-ac_arith_mult032_legacy.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92494,12 +90712,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_legacy.output))) + (deps testfile-ac_arith_mult032_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_legacy.output))) (rule (target testfile-ac_arith_mult032_dolmen.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92516,12 +90733,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_dolmen.output))) + (deps testfile-ac_arith_mult032_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_dolmen.output))) (rule (target testfile-ac_arith_mult032_fpa.output) (deps (:input testfile-ac_arith_mult032.ae)) @@ -92538,12 +90754,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult032.expected - testfile-ac_arith_mult032_fpa.output))) + (deps testfile-ac_arith_mult032_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult032.expected testfile-ac_arith_mult032_fpa.output))) (rule (target testfile-ac_arith_mult031_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92562,12 +90777,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult031_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92588,12 +90802,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92613,12 +90826,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult031_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92637,12 +90849,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult031_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92661,12 +90872,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult031_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92685,12 +90895,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult031_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult031_cdcl.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92708,12 +90917,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_cdcl.output))) + (deps testfile-ac_arith_mult031_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_cdcl.output))) (rule (target testfile-ac_arith_mult031_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92731,12 +90939,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult031_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult031_tableaux.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92754,12 +90961,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_tableaux.output))) + (deps testfile-ac_arith_mult031_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_tableaux.output))) (rule (target testfile-ac_arith_mult031_legacy.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92776,12 +90982,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_legacy.output))) + (deps testfile-ac_arith_mult031_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_legacy.output))) (rule (target testfile-ac_arith_mult031_dolmen.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92798,12 +91003,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_dolmen.output))) + (deps testfile-ac_arith_mult031_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_dolmen.output))) (rule (target testfile-ac_arith_mult031_fpa.output) (deps (:input testfile-ac_arith_mult031.ae)) @@ -92820,12 +91024,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult031.expected - testfile-ac_arith_mult031_fpa.output))) + (deps testfile-ac_arith_mult031_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult031.expected testfile-ac_arith_mult031_fpa.output))) (rule (target testfile-ac_arith_mult030_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -92844,12 +91047,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult030_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -92870,12 +91072,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -92895,12 +91096,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult030_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -92919,12 +91119,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult030_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -92943,12 +91142,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult030_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -92967,12 +91165,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult030_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult030_cdcl.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -92990,12 +91187,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_cdcl.output))) + (deps testfile-ac_arith_mult030_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_cdcl.output))) (rule (target testfile-ac_arith_mult030_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -93013,12 +91209,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult030_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult030_tableaux.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -93036,12 +91231,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_tableaux.output))) + (deps testfile-ac_arith_mult030_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_tableaux.output))) (rule (target testfile-ac_arith_mult030_legacy.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -93058,12 +91252,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_legacy.output))) + (deps testfile-ac_arith_mult030_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_legacy.output))) (rule (target testfile-ac_arith_mult030_dolmen.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -93080,12 +91273,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_dolmen.output))) + (deps testfile-ac_arith_mult030_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_dolmen.output))) (rule (target testfile-ac_arith_mult030_fpa.output) (deps (:input testfile-ac_arith_mult030.ae)) @@ -93102,12 +91294,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult030.expected - testfile-ac_arith_mult030_fpa.output))) + (deps testfile-ac_arith_mult030_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult030.expected testfile-ac_arith_mult030_fpa.output))) (rule (target testfile-ac_arith_mult029_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93126,12 +91317,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult029_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93152,12 +91342,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93177,12 +91366,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult029_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93201,12 +91389,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult029_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93225,12 +91412,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult029_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93249,12 +91435,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult029_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult029_cdcl.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93272,12 +91457,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_cdcl.output))) + (deps testfile-ac_arith_mult029_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_cdcl.output))) (rule (target testfile-ac_arith_mult029_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93295,12 +91479,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult029_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult029_tableaux.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93318,12 +91501,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_tableaux.output))) + (deps testfile-ac_arith_mult029_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_tableaux.output))) (rule (target testfile-ac_arith_mult029_legacy.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93340,12 +91522,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_legacy.output))) + (deps testfile-ac_arith_mult029_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_legacy.output))) (rule (target testfile-ac_arith_mult029_dolmen.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93362,12 +91543,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_dolmen.output))) + (deps testfile-ac_arith_mult029_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_dolmen.output))) (rule (target testfile-ac_arith_mult029_fpa.output) (deps (:input testfile-ac_arith_mult029.ae)) @@ -93384,12 +91564,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult029.expected - testfile-ac_arith_mult029_fpa.output))) + (deps testfile-ac_arith_mult029_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult029.expected testfile-ac_arith_mult029_fpa.output))) (rule (target testfile-ac_arith_mult028_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93408,12 +91587,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult028_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93434,12 +91612,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93459,12 +91636,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult028_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93483,12 +91659,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult028_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93507,12 +91682,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult028_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93531,12 +91705,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult028_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult028_cdcl.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93554,12 +91727,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_cdcl.output))) + (deps testfile-ac_arith_mult028_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_cdcl.output))) (rule (target testfile-ac_arith_mult028_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93577,12 +91749,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult028_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult028_tableaux.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93600,12 +91771,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_tableaux.output))) + (deps testfile-ac_arith_mult028_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_tableaux.output))) (rule (target testfile-ac_arith_mult028_legacy.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93622,12 +91792,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_legacy.output))) + (deps testfile-ac_arith_mult028_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_legacy.output))) (rule (target testfile-ac_arith_mult028_dolmen.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93644,12 +91813,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_dolmen.output))) + (deps testfile-ac_arith_mult028_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_dolmen.output))) (rule (target testfile-ac_arith_mult028_fpa.output) (deps (:input testfile-ac_arith_mult028.ae)) @@ -93666,12 +91834,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult028.expected - testfile-ac_arith_mult028_fpa.output))) + (deps testfile-ac_arith_mult028_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult028.expected testfile-ac_arith_mult028_fpa.output))) (rule (target testfile-ac_arith_mult027_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93690,12 +91857,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult027_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93716,12 +91882,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93741,12 +91906,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult027_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93765,12 +91929,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult027_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93789,12 +91952,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult027_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93813,12 +91975,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult027_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult027_cdcl.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93836,12 +91997,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_cdcl.output))) + (deps testfile-ac_arith_mult027_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_cdcl.output))) (rule (target testfile-ac_arith_mult027_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93859,12 +92019,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult027_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult027_tableaux.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93882,12 +92041,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_tableaux.output))) + (deps testfile-ac_arith_mult027_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_tableaux.output))) (rule (target testfile-ac_arith_mult027_legacy.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93904,12 +92062,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_legacy.output))) + (deps testfile-ac_arith_mult027_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_legacy.output))) (rule (target testfile-ac_arith_mult027_dolmen.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93926,12 +92083,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_dolmen.output))) + (deps testfile-ac_arith_mult027_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_dolmen.output))) (rule (target testfile-ac_arith_mult027_fpa.output) (deps (:input testfile-ac_arith_mult027.ae)) @@ -93948,12 +92104,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult027.expected - testfile-ac_arith_mult027_fpa.output))) + (deps testfile-ac_arith_mult027_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult027.expected testfile-ac_arith_mult027_fpa.output))) (rule (target testfile-ac_arith_mult026_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -93972,12 +92127,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult026_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -93998,12 +92152,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94023,12 +92176,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult026_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94047,12 +92199,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult026_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94071,12 +92222,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult026_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94095,12 +92245,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult026_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult026_cdcl.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94118,12 +92267,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_cdcl.output))) + (deps testfile-ac_arith_mult026_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_cdcl.output))) (rule (target testfile-ac_arith_mult026_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94141,12 +92289,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult026_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult026_tableaux.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94164,12 +92311,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_tableaux.output))) + (deps testfile-ac_arith_mult026_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_tableaux.output))) (rule (target testfile-ac_arith_mult026_legacy.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94186,12 +92332,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_legacy.output))) + (deps testfile-ac_arith_mult026_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_legacy.output))) (rule (target testfile-ac_arith_mult026_dolmen.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94208,12 +92353,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_dolmen.output))) + (deps testfile-ac_arith_mult026_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_dolmen.output))) (rule (target testfile-ac_arith_mult026_fpa.output) (deps (:input testfile-ac_arith_mult026.ae)) @@ -94230,12 +92374,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult026.expected - testfile-ac_arith_mult026_fpa.output))) + (deps testfile-ac_arith_mult026_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult026.expected testfile-ac_arith_mult026_fpa.output))) (rule (target testfile-ac_arith_mult025_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94254,12 +92397,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult025_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94280,12 +92422,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94305,12 +92446,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult025_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94329,12 +92469,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult025_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94353,12 +92492,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult025_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94377,12 +92515,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult025_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult025_cdcl.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94400,12 +92537,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_cdcl.output))) + (deps testfile-ac_arith_mult025_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_cdcl.output))) (rule (target testfile-ac_arith_mult025_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94423,12 +92559,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult025_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult025_tableaux.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94446,12 +92581,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_tableaux.output))) + (deps testfile-ac_arith_mult025_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_tableaux.output))) (rule (target testfile-ac_arith_mult025_legacy.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94468,12 +92602,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_legacy.output))) + (deps testfile-ac_arith_mult025_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_legacy.output))) (rule (target testfile-ac_arith_mult025_dolmen.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94490,12 +92623,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_dolmen.output))) + (deps testfile-ac_arith_mult025_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_dolmen.output))) (rule (target testfile-ac_arith_mult025_fpa.output) (deps (:input testfile-ac_arith_mult025.ae)) @@ -94512,12 +92644,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult025.expected - testfile-ac_arith_mult025_fpa.output))) + (deps testfile-ac_arith_mult025_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult025.expected testfile-ac_arith_mult025_fpa.output))) (rule (target testfile-ac_arith_mult024_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94536,12 +92667,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult024_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94562,12 +92692,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94587,12 +92716,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult024_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94611,12 +92739,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult024_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94635,12 +92762,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult024_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94659,12 +92785,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult024_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult024_cdcl.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94682,12 +92807,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_cdcl.output))) + (deps testfile-ac_arith_mult024_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_cdcl.output))) (rule (target testfile-ac_arith_mult024_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94705,12 +92829,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult024_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult024_tableaux.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94728,12 +92851,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_tableaux.output))) + (deps testfile-ac_arith_mult024_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_tableaux.output))) (rule (target testfile-ac_arith_mult024_legacy.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94750,12 +92872,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_legacy.output))) + (deps testfile-ac_arith_mult024_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_legacy.output))) (rule (target testfile-ac_arith_mult024_dolmen.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94772,12 +92893,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_dolmen.output))) + (deps testfile-ac_arith_mult024_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_dolmen.output))) (rule (target testfile-ac_arith_mult024_fpa.output) (deps (:input testfile-ac_arith_mult024.ae)) @@ -94794,12 +92914,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult024.expected - testfile-ac_arith_mult024_fpa.output))) + (deps testfile-ac_arith_mult024_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult024.expected testfile-ac_arith_mult024_fpa.output))) (rule (target testfile-ac_arith_mult023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94818,12 +92937,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94844,12 +92962,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94869,12 +92986,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94893,12 +93009,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94917,12 +93032,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94941,12 +93055,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult023_cdcl.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94964,12 +93077,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_cdcl.output))) + (deps testfile-ac_arith_mult023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_cdcl.output))) (rule (target testfile-ac_arith_mult023_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -94987,12 +93099,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult023_tableaux.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -95010,12 +93121,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_tableaux.output))) + (deps testfile-ac_arith_mult023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_tableaux.output))) (rule (target testfile-ac_arith_mult023_legacy.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -95032,12 +93142,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_legacy.output))) + (deps testfile-ac_arith_mult023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_legacy.output))) (rule (target testfile-ac_arith_mult023_dolmen.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -95054,12 +93163,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_dolmen.output))) + (deps testfile-ac_arith_mult023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_dolmen.output))) (rule (target testfile-ac_arith_mult023_fpa.output) (deps (:input testfile-ac_arith_mult023.ae)) @@ -95076,12 +93184,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult023.expected - testfile-ac_arith_mult023_fpa.output))) + (deps testfile-ac_arith_mult023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult023.expected testfile-ac_arith_mult023_fpa.output))) (rule (target testfile-ac_arith_mult022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95100,12 +93207,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95126,12 +93232,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95151,12 +93256,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95175,12 +93279,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95199,12 +93302,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95223,12 +93325,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult022_cdcl.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95246,12 +93347,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_cdcl.output))) + (deps testfile-ac_arith_mult022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_cdcl.output))) (rule (target testfile-ac_arith_mult022_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95269,12 +93369,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult022_tableaux.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95292,12 +93391,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_tableaux.output))) + (deps testfile-ac_arith_mult022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_tableaux.output))) (rule (target testfile-ac_arith_mult022_legacy.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95314,12 +93412,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_legacy.output))) + (deps testfile-ac_arith_mult022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_legacy.output))) (rule (target testfile-ac_arith_mult022_dolmen.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95336,12 +93433,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_dolmen.output))) + (deps testfile-ac_arith_mult022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_dolmen.output))) (rule (target testfile-ac_arith_mult022_fpa.output) (deps (:input testfile-ac_arith_mult022.ae)) @@ -95358,12 +93454,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult022.expected - testfile-ac_arith_mult022_fpa.output))) + (deps testfile-ac_arith_mult022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult022.expected testfile-ac_arith_mult022_fpa.output))) (rule (target testfile-ac_arith_mult021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95382,12 +93477,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95408,12 +93502,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95433,12 +93526,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95457,12 +93549,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95481,12 +93572,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95505,12 +93595,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult021_cdcl.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95528,12 +93617,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_cdcl.output))) + (deps testfile-ac_arith_mult021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_cdcl.output))) (rule (target testfile-ac_arith_mult021_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95551,12 +93639,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult021_tableaux.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95574,12 +93661,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_tableaux.output))) + (deps testfile-ac_arith_mult021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_tableaux.output))) (rule (target testfile-ac_arith_mult021_legacy.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95596,12 +93682,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_legacy.output))) + (deps testfile-ac_arith_mult021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_legacy.output))) (rule (target testfile-ac_arith_mult021_dolmen.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95618,12 +93703,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_dolmen.output))) + (deps testfile-ac_arith_mult021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_dolmen.output))) (rule (target testfile-ac_arith_mult021_fpa.output) (deps (:input testfile-ac_arith_mult021.ae)) @@ -95640,12 +93724,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult021.expected - testfile-ac_arith_mult021_fpa.output))) + (deps testfile-ac_arith_mult021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult021.expected testfile-ac_arith_mult021_fpa.output))) (rule (target testfile-ac_arith_mult020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95664,12 +93747,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95690,12 +93772,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95715,12 +93796,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95739,12 +93819,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95763,12 +93842,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95787,12 +93865,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult020_cdcl.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95810,12 +93887,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_cdcl.output))) + (deps testfile-ac_arith_mult020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_cdcl.output))) (rule (target testfile-ac_arith_mult020_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95833,12 +93909,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult020_tableaux.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95856,12 +93931,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_tableaux.output))) + (deps testfile-ac_arith_mult020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_tableaux.output))) (rule (target testfile-ac_arith_mult020_legacy.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95878,12 +93952,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_legacy.output))) + (deps testfile-ac_arith_mult020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_legacy.output))) (rule (target testfile-ac_arith_mult020_dolmen.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95900,12 +93973,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_dolmen.output))) + (deps testfile-ac_arith_mult020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_dolmen.output))) (rule (target testfile-ac_arith_mult020_fpa.output) (deps (:input testfile-ac_arith_mult020.ae)) @@ -95922,12 +93994,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult020.expected - testfile-ac_arith_mult020_fpa.output))) + (deps testfile-ac_arith_mult020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult020.expected testfile-ac_arith_mult020_fpa.output))) (rule (target testfile-ac_arith_mult019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -95946,12 +94017,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -95972,12 +94042,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -95997,12 +94066,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96021,12 +94089,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96045,12 +94112,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96069,12 +94135,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult019_cdcl.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96092,12 +94157,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_cdcl.output))) + (deps testfile-ac_arith_mult019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_cdcl.output))) (rule (target testfile-ac_arith_mult019_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96115,12 +94179,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult019_tableaux.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96138,12 +94201,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_tableaux.output))) + (deps testfile-ac_arith_mult019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_tableaux.output))) (rule (target testfile-ac_arith_mult019_legacy.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96160,12 +94222,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_legacy.output))) + (deps testfile-ac_arith_mult019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_legacy.output))) (rule (target testfile-ac_arith_mult019_dolmen.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96182,12 +94243,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_dolmen.output))) + (deps testfile-ac_arith_mult019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_dolmen.output))) (rule (target testfile-ac_arith_mult019_fpa.output) (deps (:input testfile-ac_arith_mult019.ae)) @@ -96204,12 +94264,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult019.expected - testfile-ac_arith_mult019_fpa.output))) + (deps testfile-ac_arith_mult019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult019.expected testfile-ac_arith_mult019_fpa.output))) (rule (target testfile-ac_arith_mult018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96228,12 +94287,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96254,12 +94312,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96279,12 +94336,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96303,12 +94359,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96327,12 +94382,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96351,12 +94405,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult018_cdcl.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96374,12 +94427,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_cdcl.output))) + (deps testfile-ac_arith_mult018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_cdcl.output))) (rule (target testfile-ac_arith_mult018_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96397,12 +94449,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult018_tableaux.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96420,12 +94471,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_tableaux.output))) + (deps testfile-ac_arith_mult018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_tableaux.output))) (rule (target testfile-ac_arith_mult018_legacy.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96442,12 +94492,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_legacy.output))) + (deps testfile-ac_arith_mult018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_legacy.output))) (rule (target testfile-ac_arith_mult018_dolmen.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96464,12 +94513,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_dolmen.output))) + (deps testfile-ac_arith_mult018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_dolmen.output))) (rule (target testfile-ac_arith_mult018_fpa.output) (deps (:input testfile-ac_arith_mult018.ae)) @@ -96486,12 +94534,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult018.expected - testfile-ac_arith_mult018_fpa.output))) + (deps testfile-ac_arith_mult018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult018.expected testfile-ac_arith_mult018_fpa.output))) (rule (target testfile-ac_arith_mult017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96510,12 +94557,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96536,12 +94582,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96561,12 +94606,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96585,12 +94629,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96609,12 +94652,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96633,12 +94675,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult017_cdcl.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96656,12 +94697,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_cdcl.output))) + (deps testfile-ac_arith_mult017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_cdcl.output))) (rule (target testfile-ac_arith_mult017_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96679,12 +94719,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult017_tableaux.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96702,12 +94741,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_tableaux.output))) + (deps testfile-ac_arith_mult017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_tableaux.output))) (rule (target testfile-ac_arith_mult017_legacy.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96724,12 +94762,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_legacy.output))) + (deps testfile-ac_arith_mult017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_legacy.output))) (rule (target testfile-ac_arith_mult017_dolmen.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96746,12 +94783,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_dolmen.output))) + (deps testfile-ac_arith_mult017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_dolmen.output))) (rule (target testfile-ac_arith_mult017_fpa.output) (deps (:input testfile-ac_arith_mult017.ae)) @@ -96768,12 +94804,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult017.expected - testfile-ac_arith_mult017_fpa.output))) + (deps testfile-ac_arith_mult017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult017.expected testfile-ac_arith_mult017_fpa.output))) (rule (target testfile-ac_arith_mult016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96792,12 +94827,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96818,12 +94852,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96843,12 +94876,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96867,12 +94899,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96891,12 +94922,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96915,12 +94945,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult016_cdcl.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96938,12 +94967,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_cdcl.output))) + (deps testfile-ac_arith_mult016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_cdcl.output))) (rule (target testfile-ac_arith_mult016_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96961,12 +94989,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult016_tableaux.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -96984,12 +95011,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_tableaux.output))) + (deps testfile-ac_arith_mult016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_tableaux.output))) (rule (target testfile-ac_arith_mult016_legacy.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -97006,12 +95032,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_legacy.output))) + (deps testfile-ac_arith_mult016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_legacy.output))) (rule (target testfile-ac_arith_mult016_dolmen.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -97028,12 +95053,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_dolmen.output))) + (deps testfile-ac_arith_mult016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_dolmen.output))) (rule (target testfile-ac_arith_mult016_fpa.output) (deps (:input testfile-ac_arith_mult016.ae)) @@ -97050,12 +95074,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult016.expected - testfile-ac_arith_mult016_fpa.output))) + (deps testfile-ac_arith_mult016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult016.expected testfile-ac_arith_mult016_fpa.output))) (rule (target testfile-ac_arith_mult015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97074,12 +95097,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97100,12 +95122,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97125,12 +95146,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97149,12 +95169,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97173,12 +95192,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97197,12 +95215,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult015_cdcl.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97220,12 +95237,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_cdcl.output))) + (deps testfile-ac_arith_mult015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_cdcl.output))) (rule (target testfile-ac_arith_mult015_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97243,12 +95259,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult015_tableaux.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97266,12 +95281,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_tableaux.output))) + (deps testfile-ac_arith_mult015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_tableaux.output))) (rule (target testfile-ac_arith_mult015_legacy.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97288,12 +95302,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_legacy.output))) + (deps testfile-ac_arith_mult015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_legacy.output))) (rule (target testfile-ac_arith_mult015_dolmen.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97310,12 +95323,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_dolmen.output))) + (deps testfile-ac_arith_mult015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_dolmen.output))) (rule (target testfile-ac_arith_mult015_fpa.output) (deps (:input testfile-ac_arith_mult015.ae)) @@ -97332,12 +95344,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult015.expected - testfile-ac_arith_mult015_fpa.output))) + (deps testfile-ac_arith_mult015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult015.expected testfile-ac_arith_mult015_fpa.output))) (rule (target testfile-ac_arith_mult014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97356,12 +95367,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97382,12 +95392,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97407,12 +95416,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97431,12 +95439,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97455,12 +95462,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97479,12 +95485,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult014_cdcl.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97502,12 +95507,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_cdcl.output))) + (deps testfile-ac_arith_mult014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_cdcl.output))) (rule (target testfile-ac_arith_mult014_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97525,12 +95529,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult014_tableaux.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97548,12 +95551,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_tableaux.output))) + (deps testfile-ac_arith_mult014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_tableaux.output))) (rule (target testfile-ac_arith_mult014_legacy.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97570,12 +95572,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_legacy.output))) + (deps testfile-ac_arith_mult014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_legacy.output))) (rule (target testfile-ac_arith_mult014_dolmen.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97592,12 +95593,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_dolmen.output))) + (deps testfile-ac_arith_mult014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_dolmen.output))) (rule (target testfile-ac_arith_mult014_fpa.output) (deps (:input testfile-ac_arith_mult014.ae)) @@ -97614,12 +95614,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult014.expected - testfile-ac_arith_mult014_fpa.output))) + (deps testfile-ac_arith_mult014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult014.expected testfile-ac_arith_mult014_fpa.output))) (rule (target testfile-ac_arith_mult013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97638,12 +95637,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97664,12 +95662,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97689,12 +95686,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97713,12 +95709,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97737,12 +95732,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97761,12 +95755,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult013_cdcl.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97784,12 +95777,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_cdcl.output))) + (deps testfile-ac_arith_mult013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_cdcl.output))) (rule (target testfile-ac_arith_mult013_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97807,12 +95799,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult013_tableaux.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97830,12 +95821,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_tableaux.output))) + (deps testfile-ac_arith_mult013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_tableaux.output))) (rule (target testfile-ac_arith_mult013_legacy.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97852,12 +95842,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_legacy.output))) + (deps testfile-ac_arith_mult013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_legacy.output))) (rule (target testfile-ac_arith_mult013_dolmen.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97874,12 +95863,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_dolmen.output))) + (deps testfile-ac_arith_mult013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_dolmen.output))) (rule (target testfile-ac_arith_mult013_fpa.output) (deps (:input testfile-ac_arith_mult013.ae)) @@ -97896,12 +95884,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult013.expected - testfile-ac_arith_mult013_fpa.output))) + (deps testfile-ac_arith_mult013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult013.expected testfile-ac_arith_mult013_fpa.output))) (rule (target testfile-ac_arith_mult012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -97920,12 +95907,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -97946,12 +95932,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -97971,12 +95956,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -97995,12 +95979,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98019,12 +96002,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98043,12 +96025,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult012_cdcl.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98066,12 +96047,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_cdcl.output))) + (deps testfile-ac_arith_mult012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_cdcl.output))) (rule (target testfile-ac_arith_mult012_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98089,12 +96069,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult012_tableaux.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98112,12 +96091,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_tableaux.output))) + (deps testfile-ac_arith_mult012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_tableaux.output))) (rule (target testfile-ac_arith_mult012_legacy.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98134,12 +96112,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_legacy.output))) + (deps testfile-ac_arith_mult012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_legacy.output))) (rule (target testfile-ac_arith_mult012_dolmen.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98156,12 +96133,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_dolmen.output))) + (deps testfile-ac_arith_mult012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_dolmen.output))) (rule (target testfile-ac_arith_mult012_fpa.output) (deps (:input testfile-ac_arith_mult012.ae)) @@ -98178,12 +96154,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult012.expected - testfile-ac_arith_mult012_fpa.output))) + (deps testfile-ac_arith_mult012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult012.expected testfile-ac_arith_mult012_fpa.output))) (rule (target testfile-ac_arith_mult011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98202,12 +96177,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98228,12 +96202,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98253,12 +96226,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98277,12 +96249,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98301,12 +96272,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98325,12 +96295,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult011_cdcl.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98348,12 +96317,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_cdcl.output))) + (deps testfile-ac_arith_mult011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_cdcl.output))) (rule (target testfile-ac_arith_mult011_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98371,12 +96339,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult011_tableaux.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98394,12 +96361,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_tableaux.output))) + (deps testfile-ac_arith_mult011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_tableaux.output))) (rule (target testfile-ac_arith_mult011_legacy.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98416,12 +96382,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_legacy.output))) + (deps testfile-ac_arith_mult011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_legacy.output))) (rule (target testfile-ac_arith_mult011_dolmen.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98438,12 +96403,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_dolmen.output))) + (deps testfile-ac_arith_mult011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_dolmen.output))) (rule (target testfile-ac_arith_mult011_fpa.output) (deps (:input testfile-ac_arith_mult011.ae)) @@ -98460,12 +96424,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult011.expected - testfile-ac_arith_mult011_fpa.output))) + (deps testfile-ac_arith_mult011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult011.expected testfile-ac_arith_mult011_fpa.output))) (rule (target testfile-ac_arith_mult010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98484,12 +96447,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98510,12 +96472,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98535,12 +96496,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98559,12 +96519,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98583,12 +96542,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98607,12 +96565,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult010_cdcl.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98630,12 +96587,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_cdcl.output))) + (deps testfile-ac_arith_mult010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_cdcl.output))) (rule (target testfile-ac_arith_mult010_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98653,12 +96609,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult010_tableaux.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98676,12 +96631,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_tableaux.output))) + (deps testfile-ac_arith_mult010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_tableaux.output))) (rule (target testfile-ac_arith_mult010_legacy.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98698,12 +96652,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_legacy.output))) + (deps testfile-ac_arith_mult010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_legacy.output))) (rule (target testfile-ac_arith_mult010_dolmen.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98720,12 +96673,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_dolmen.output))) + (deps testfile-ac_arith_mult010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_dolmen.output))) (rule (target testfile-ac_arith_mult010_fpa.output) (deps (:input testfile-ac_arith_mult010.ae)) @@ -98742,12 +96694,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult010.expected - testfile-ac_arith_mult010_fpa.output))) + (deps testfile-ac_arith_mult010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult010.expected testfile-ac_arith_mult010_fpa.output))) (rule (target testfile-ac_arith_mult009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98766,12 +96717,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98792,12 +96742,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98817,12 +96766,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98841,12 +96789,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98865,12 +96812,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98889,12 +96835,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult009_cdcl.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98912,12 +96857,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_cdcl.output))) + (deps testfile-ac_arith_mult009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_cdcl.output))) (rule (target testfile-ac_arith_mult009_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98935,12 +96879,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult009_tableaux.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98958,12 +96901,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_tableaux.output))) + (deps testfile-ac_arith_mult009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_tableaux.output))) (rule (target testfile-ac_arith_mult009_legacy.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -98980,12 +96922,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_legacy.output))) + (deps testfile-ac_arith_mult009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_legacy.output))) (rule (target testfile-ac_arith_mult009_dolmen.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -99002,12 +96943,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_dolmen.output))) + (deps testfile-ac_arith_mult009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_dolmen.output))) (rule (target testfile-ac_arith_mult009_fpa.output) (deps (:input testfile-ac_arith_mult009.ae)) @@ -99024,12 +96964,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult009.expected - testfile-ac_arith_mult009_fpa.output))) + (deps testfile-ac_arith_mult009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult009.expected testfile-ac_arith_mult009_fpa.output))) (rule (target testfile-ac_arith_mult008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99048,12 +96987,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99074,12 +97012,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99099,12 +97036,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99123,12 +97059,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99147,12 +97082,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99171,12 +97105,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult008_cdcl.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99194,12 +97127,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_cdcl.output))) + (deps testfile-ac_arith_mult008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_cdcl.output))) (rule (target testfile-ac_arith_mult008_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99217,12 +97149,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult008_tableaux.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99240,12 +97171,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_tableaux.output))) + (deps testfile-ac_arith_mult008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_tableaux.output))) (rule (target testfile-ac_arith_mult008_legacy.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99262,12 +97192,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_legacy.output))) + (deps testfile-ac_arith_mult008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_legacy.output))) (rule (target testfile-ac_arith_mult008_dolmen.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99284,12 +97213,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_dolmen.output))) + (deps testfile-ac_arith_mult008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_dolmen.output))) (rule (target testfile-ac_arith_mult008_fpa.output) (deps (:input testfile-ac_arith_mult008.ae)) @@ -99306,12 +97234,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult008.expected - testfile-ac_arith_mult008_fpa.output))) + (deps testfile-ac_arith_mult008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult008.expected testfile-ac_arith_mult008_fpa.output))) (rule (target testfile-ac_arith_mult007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99330,12 +97257,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99356,12 +97282,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99381,12 +97306,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99405,12 +97329,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99429,12 +97352,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99453,12 +97375,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult007_cdcl.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99476,12 +97397,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_cdcl.output))) + (deps testfile-ac_arith_mult007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_cdcl.output))) (rule (target testfile-ac_arith_mult007_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99499,12 +97419,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult007_tableaux.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99522,12 +97441,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_tableaux.output))) + (deps testfile-ac_arith_mult007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_tableaux.output))) (rule (target testfile-ac_arith_mult007_legacy.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99544,12 +97462,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_legacy.output))) + (deps testfile-ac_arith_mult007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_legacy.output))) (rule (target testfile-ac_arith_mult007_dolmen.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99566,12 +97483,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_dolmen.output))) + (deps testfile-ac_arith_mult007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_dolmen.output))) (rule (target testfile-ac_arith_mult007_fpa.output) (deps (:input testfile-ac_arith_mult007.ae)) @@ -99588,12 +97504,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult007.expected - testfile-ac_arith_mult007_fpa.output))) + (deps testfile-ac_arith_mult007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult007.expected testfile-ac_arith_mult007_fpa.output))) (rule (target testfile-ac_arith_mult006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99612,12 +97527,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99638,12 +97552,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99663,12 +97576,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99687,12 +97599,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99711,12 +97622,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99735,12 +97645,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult006_cdcl.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99758,12 +97667,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_cdcl.output))) + (deps testfile-ac_arith_mult006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_cdcl.output))) (rule (target testfile-ac_arith_mult006_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99781,12 +97689,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult006_tableaux.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99804,12 +97711,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_tableaux.output))) + (deps testfile-ac_arith_mult006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_tableaux.output))) (rule (target testfile-ac_arith_mult006_legacy.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99826,12 +97732,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_legacy.output))) + (deps testfile-ac_arith_mult006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_legacy.output))) (rule (target testfile-ac_arith_mult006_dolmen.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99848,12 +97753,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_dolmen.output))) + (deps testfile-ac_arith_mult006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_dolmen.output))) (rule (target testfile-ac_arith_mult006_fpa.output) (deps (:input testfile-ac_arith_mult006.ae)) @@ -99870,12 +97774,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult006.expected - testfile-ac_arith_mult006_fpa.output))) + (deps testfile-ac_arith_mult006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult006.expected testfile-ac_arith_mult006_fpa.output))) (rule (target testfile-ac_arith_mult005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -99894,12 +97797,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -99920,12 +97822,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -99945,12 +97846,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -99969,12 +97869,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -99993,12 +97892,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -100017,12 +97915,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult005_cdcl.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -100040,12 +97937,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_cdcl.output))) + (deps testfile-ac_arith_mult005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_cdcl.output))) (rule (target testfile-ac_arith_mult005_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -100063,12 +97959,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult005_tableaux.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -100086,12 +97981,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_tableaux.output))) + (deps testfile-ac_arith_mult005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_tableaux.output))) (rule (target testfile-ac_arith_mult005_legacy.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -100108,12 +98002,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_legacy.output))) + (deps testfile-ac_arith_mult005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_legacy.output))) (rule (target testfile-ac_arith_mult005_dolmen.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -100130,12 +98023,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_dolmen.output))) + (deps testfile-ac_arith_mult005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_dolmen.output))) (rule (target testfile-ac_arith_mult005_fpa.output) (deps (:input testfile-ac_arith_mult005.ae)) @@ -100152,12 +98044,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult005.expected - testfile-ac_arith_mult005_fpa.output))) + (deps testfile-ac_arith_mult005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult005.expected testfile-ac_arith_mult005_fpa.output))) (rule (target testfile-ac_arith_mult004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100176,12 +98067,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100202,12 +98092,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100227,12 +98116,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100251,12 +98139,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100275,12 +98162,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100299,12 +98185,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult004_cdcl.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100322,12 +98207,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_cdcl.output))) + (deps testfile-ac_arith_mult004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_cdcl.output))) (rule (target testfile-ac_arith_mult004_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100345,12 +98229,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult004_tableaux.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100368,12 +98251,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_tableaux.output))) + (deps testfile-ac_arith_mult004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_tableaux.output))) (rule (target testfile-ac_arith_mult004_legacy.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100390,12 +98272,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_legacy.output))) + (deps testfile-ac_arith_mult004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_legacy.output))) (rule (target testfile-ac_arith_mult004_dolmen.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100412,12 +98293,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_dolmen.output))) + (deps testfile-ac_arith_mult004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_dolmen.output))) (rule (target testfile-ac_arith_mult004_fpa.output) (deps (:input testfile-ac_arith_mult004.ae)) @@ -100434,12 +98314,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult004.expected - testfile-ac_arith_mult004_fpa.output))) + (deps testfile-ac_arith_mult004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult004.expected testfile-ac_arith_mult004_fpa.output))) (rule (target testfile-ac_arith_mult003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100458,12 +98337,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100484,12 +98362,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100509,12 +98386,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100533,12 +98409,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100557,12 +98432,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100581,12 +98455,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult003_cdcl.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100604,12 +98477,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_cdcl.output))) + (deps testfile-ac_arith_mult003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_cdcl.output))) (rule (target testfile-ac_arith_mult003_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100627,12 +98499,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult003_tableaux.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100650,12 +98521,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_tableaux.output))) + (deps testfile-ac_arith_mult003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_tableaux.output))) (rule (target testfile-ac_arith_mult003_legacy.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100672,12 +98542,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_legacy.output))) + (deps testfile-ac_arith_mult003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_legacy.output))) (rule (target testfile-ac_arith_mult003_dolmen.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100694,12 +98563,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_dolmen.output))) + (deps testfile-ac_arith_mult003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_dolmen.output))) (rule (target testfile-ac_arith_mult003_fpa.output) (deps (:input testfile-ac_arith_mult003.ae)) @@ -100716,12 +98584,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult003.expected - testfile-ac_arith_mult003_fpa.output))) + (deps testfile-ac_arith_mult003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult003.expected testfile-ac_arith_mult003_fpa.output))) (rule (target testfile-ac_arith_mult002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100740,12 +98607,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100766,12 +98632,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100791,12 +98656,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100815,12 +98679,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100839,12 +98702,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100863,12 +98725,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult002_cdcl.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100886,12 +98747,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_cdcl.output))) + (deps testfile-ac_arith_mult002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_cdcl.output))) (rule (target testfile-ac_arith_mult002_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100909,12 +98769,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult002_tableaux.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100932,12 +98791,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_tableaux.output))) + (deps testfile-ac_arith_mult002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_tableaux.output))) (rule (target testfile-ac_arith_mult002_legacy.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100954,12 +98812,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_legacy.output))) + (deps testfile-ac_arith_mult002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_legacy.output))) (rule (target testfile-ac_arith_mult002_dolmen.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100976,12 +98833,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_dolmen.output))) + (deps testfile-ac_arith_mult002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_dolmen.output))) (rule (target testfile-ac_arith_mult002_fpa.output) (deps (:input testfile-ac_arith_mult002.ae)) @@ -100998,12 +98854,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult002.expected - testfile-ac_arith_mult002_fpa.output))) + (deps testfile-ac_arith_mult002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult002.expected testfile-ac_arith_mult002_fpa.output))) (rule (target testfile-ac_arith_mult001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101022,12 +98877,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101048,12 +98902,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101073,12 +98926,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith_mult001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101097,12 +98949,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith_mult001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101121,12 +98972,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith_mult001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101145,12 +98995,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith_mult001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith_mult001_cdcl.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101168,12 +99017,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_cdcl.output))) + (deps testfile-ac_arith_mult001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_cdcl.output))) (rule (target testfile-ac_arith_mult001_tableaux_cdcl.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101191,12 +99039,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_tableaux_cdcl.output))) + (deps testfile-ac_arith_mult001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_tableaux_cdcl.output))) (rule (target testfile-ac_arith_mult001_tableaux.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101214,12 +99061,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_tableaux.output))) + (deps testfile-ac_arith_mult001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_tableaux.output))) (rule (target testfile-ac_arith_mult001_legacy.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101236,12 +99082,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_legacy.output))) + (deps testfile-ac_arith_mult001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_legacy.output))) (rule (target testfile-ac_arith_mult001_dolmen.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101258,12 +99103,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_dolmen.output))) + (deps testfile-ac_arith_mult001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_dolmen.output))) (rule (target testfile-ac_arith_mult001_fpa.output) (deps (:input testfile-ac_arith_mult001.ae)) @@ -101280,12 +99124,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith_mult001.expected - testfile-ac_arith_mult001_fpa.output))) + (deps testfile-ac_arith_mult001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith_mult001.expected testfile-ac_arith_mult001_fpa.output))) (rule (target intervals_bug002_ci_cdcl_no_minimal_bj.output) (deps (:input intervals_bug002.ae)) @@ -101304,12 +99147,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug002.expected - intervals_bug002_ci_cdcl_no_minimal_bj.output))) + (deps intervals_bug002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_ci_cdcl_no_minimal_bj.output))) (rule (target intervals_bug002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input intervals_bug002.ae)) @@ -101330,12 +99172,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug002.expected - intervals_bug002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps intervals_bug002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input intervals_bug002.ae)) @@ -101355,12 +99196,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug002.expected - intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target intervals_bug002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input intervals_bug002.ae)) @@ -101379,12 +99219,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug002.expected - intervals_bug002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps intervals_bug002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input intervals_bug002.ae)) @@ -101403,12 +99242,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug002.expected - intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target intervals_bug002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input intervals_bug002.ae)) @@ -101427,12 +99265,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug002.expected - intervals_bug002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps intervals_bug002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target intervals_bug002_cdcl.output) (deps (:input intervals_bug002.ae)) @@ -101450,10 +99287,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug002.expected intervals_bug002_cdcl.output))) + (deps intervals_bug002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_cdcl.output))) (rule (target intervals_bug002_tableaux_cdcl.output) (deps (:input intervals_bug002.ae)) @@ -101471,10 +99309,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug002.expected intervals_bug002_tableaux_cdcl.output))) + (deps intervals_bug002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_tableaux_cdcl.output))) (rule (target intervals_bug002_tableaux.output) (deps (:input intervals_bug002.ae)) @@ -101492,10 +99331,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug002.expected intervals_bug002_tableaux.output))) + (deps intervals_bug002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_tableaux.output))) (rule (target intervals_bug002_legacy.output) (deps (:input intervals_bug002.ae)) @@ -101512,10 +99352,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug002.expected intervals_bug002_legacy.output))) + (deps intervals_bug002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_legacy.output))) (rule (target intervals_bug002_dolmen.output) (deps (:input intervals_bug002.ae)) @@ -101532,10 +99373,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug002.expected intervals_bug002_dolmen.output))) + (deps intervals_bug002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_dolmen.output))) (rule (target intervals_bug002_fpa.output) (deps (:input intervals_bug002.ae)) @@ -101552,10 +99394,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug002.expected intervals_bug002_fpa.output))) + (deps intervals_bug002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug002.expected intervals_bug002_fpa.output))) (rule (target intervals_bug001_ci_cdcl_no_minimal_bj.output) (deps (:input intervals_bug001.ae)) @@ -101574,12 +99417,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug001.expected - intervals_bug001_ci_cdcl_no_minimal_bj.output))) + (deps intervals_bug001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_ci_cdcl_no_minimal_bj.output))) (rule (target intervals_bug001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input intervals_bug001.ae)) @@ -101600,12 +99442,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug001.expected - intervals_bug001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps intervals_bug001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input intervals_bug001.ae)) @@ -101625,12 +99466,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug001.expected - intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target intervals_bug001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input intervals_bug001.ae)) @@ -101649,12 +99489,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug001.expected - intervals_bug001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps intervals_bug001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input intervals_bug001.ae)) @@ -101673,12 +99512,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug001.expected - intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target intervals_bug001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input intervals_bug001.ae)) @@ -101697,12 +99535,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - intervals_bug001.expected - intervals_bug001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps intervals_bug001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target intervals_bug001_cdcl.output) (deps (:input intervals_bug001.ae)) @@ -101720,10 +99557,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug001.expected intervals_bug001_cdcl.output))) + (deps intervals_bug001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_cdcl.output))) (rule (target intervals_bug001_tableaux_cdcl.output) (deps (:input intervals_bug001.ae)) @@ -101741,10 +99579,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug001.expected intervals_bug001_tableaux_cdcl.output))) + (deps intervals_bug001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_tableaux_cdcl.output))) (rule (target intervals_bug001_tableaux.output) (deps (:input intervals_bug001.ae)) @@ -101762,10 +99601,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug001.expected intervals_bug001_tableaux.output))) + (deps intervals_bug001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_tableaux.output))) (rule (target intervals_bug001_legacy.output) (deps (:input intervals_bug001.ae)) @@ -101782,10 +99622,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug001.expected intervals_bug001_legacy.output))) + (deps intervals_bug001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_legacy.output))) (rule (target intervals_bug001_dolmen.output) (deps (:input intervals_bug001.ae)) @@ -101802,10 +99643,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug001.expected intervals_bug001_dolmen.output))) + (deps intervals_bug001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_dolmen.output))) (rule (target intervals_bug001_fpa.output) (deps (:input intervals_bug001.ae)) @@ -101822,10 +99664,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff intervals_bug001.expected intervals_bug001_fpa.output))) + (deps intervals_bug001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff intervals_bug001.expected intervals_bug001_fpa.output))) (rule (target challenge-cubic_root_1__OK_ci_cdcl_no_minimal_bj.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -101844,12 +99687,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_ci_cdcl_no_minimal_bj.output))) + (deps challenge-cubic_root_1__OK_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_ci_cdcl_no_minimal_bj.output))) (rule (target challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -101870,12 +99712,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -101895,12 +99736,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target challenge-cubic_root_1__OK_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -101919,12 +99759,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps challenge-cubic_root_1__OK_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -101943,12 +99782,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target challenge-cubic_root_1__OK_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -101967,12 +99805,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps challenge-cubic_root_1__OK_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target challenge-cubic_root_1__OK_cdcl.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -101990,12 +99827,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_cdcl.output))) + (deps challenge-cubic_root_1__OK_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_cdcl.output))) (rule (target challenge-cubic_root_1__OK_tableaux_cdcl.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -102013,12 +99849,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_tableaux_cdcl.output))) + (deps challenge-cubic_root_1__OK_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_tableaux_cdcl.output))) (rule (target challenge-cubic_root_1__OK_tableaux.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -102036,12 +99871,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_tableaux.output))) + (deps challenge-cubic_root_1__OK_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_tableaux.output))) (rule (target challenge-cubic_root_1__OK_legacy.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -102058,12 +99892,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_legacy.output))) + (deps challenge-cubic_root_1__OK_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_legacy.output))) (rule (target challenge-cubic_root_1__OK_dolmen.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -102080,12 +99913,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_dolmen.output))) + (deps challenge-cubic_root_1__OK_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_dolmen.output))) (rule (target challenge-cubic_root_1__OK_fpa.output) (deps (:input challenge-cubic_root_1__OK.ae)) @@ -102102,12 +99934,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-cubic_root_1__OK.expected - challenge-cubic_root_1__OK_fpa.output)))) + (deps challenge-cubic_root_1__OK_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-cubic_root_1__OK.expected challenge-cubic_root_1__OK_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -102131,12 +99962,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102157,12 +99987,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102182,12 +100011,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102206,12 +100034,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102230,12 +100057,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102254,12 +100080,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays022_cdcl.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102277,12 +100102,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_cdcl.output))) + (deps testfile-poly_arrays022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_cdcl.output))) (rule (target testfile-poly_arrays022_tableaux_cdcl.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102300,12 +100124,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_tableaux_cdcl.output))) + (deps testfile-poly_arrays022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_tableaux_cdcl.output))) (rule (target testfile-poly_arrays022_tableaux.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102323,12 +100146,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_tableaux.output))) + (deps testfile-poly_arrays022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_tableaux.output))) (rule (target testfile-poly_arrays022_legacy.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102345,12 +100167,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_legacy.output))) + (deps testfile-poly_arrays022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_legacy.output))) (rule (target testfile-poly_arrays022_dolmen.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102367,12 +100188,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_dolmen.output))) + (deps testfile-poly_arrays022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_dolmen.output))) (rule (target testfile-poly_arrays022_fpa.output) (deps (:input testfile-poly_arrays022.ae)) @@ -102389,12 +100209,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays022.expected - testfile-poly_arrays022_fpa.output))) + (deps testfile-poly_arrays022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays022.expected testfile-poly_arrays022_fpa.output))) (rule (target testfile-poly_arrays021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102413,12 +100232,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102439,12 +100257,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102464,12 +100281,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102488,12 +100304,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102512,12 +100327,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102536,12 +100350,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays021_cdcl.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102559,12 +100372,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_cdcl.output))) + (deps testfile-poly_arrays021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_cdcl.output))) (rule (target testfile-poly_arrays021_tableaux_cdcl.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102582,12 +100394,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_tableaux_cdcl.output))) + (deps testfile-poly_arrays021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_tableaux_cdcl.output))) (rule (target testfile-poly_arrays021_tableaux.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102605,12 +100416,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_tableaux.output))) + (deps testfile-poly_arrays021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_tableaux.output))) (rule (target testfile-poly_arrays021_legacy.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102627,12 +100437,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_legacy.output))) + (deps testfile-poly_arrays021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_legacy.output))) (rule (target testfile-poly_arrays021_dolmen.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102649,12 +100458,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_dolmen.output))) + (deps testfile-poly_arrays021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_dolmen.output))) (rule (target testfile-poly_arrays021_fpa.output) (deps (:input testfile-poly_arrays021.ae)) @@ -102671,12 +100479,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays021.expected - testfile-poly_arrays021_fpa.output))) + (deps testfile-poly_arrays021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays021.expected testfile-poly_arrays021_fpa.output))) (rule (target testfile-poly_arrays020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102695,12 +100502,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102721,12 +100527,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102746,12 +100551,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102770,12 +100574,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102794,12 +100597,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102818,12 +100620,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays020_cdcl.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102841,12 +100642,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_cdcl.output))) + (deps testfile-poly_arrays020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_cdcl.output))) (rule (target testfile-poly_arrays020_tableaux_cdcl.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102864,12 +100664,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_tableaux_cdcl.output))) + (deps testfile-poly_arrays020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_tableaux_cdcl.output))) (rule (target testfile-poly_arrays020_tableaux.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102887,12 +100686,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_tableaux.output))) + (deps testfile-poly_arrays020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_tableaux.output))) (rule (target testfile-poly_arrays020_legacy.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102909,12 +100707,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_legacy.output))) + (deps testfile-poly_arrays020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_legacy.output))) (rule (target testfile-poly_arrays020_dolmen.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102931,12 +100728,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_dolmen.output))) + (deps testfile-poly_arrays020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_dolmen.output))) (rule (target testfile-poly_arrays020_fpa.output) (deps (:input testfile-poly_arrays020.ae)) @@ -102953,12 +100749,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays020.expected - testfile-poly_arrays020_fpa.output))) + (deps testfile-poly_arrays020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays020.expected testfile-poly_arrays020_fpa.output))) (rule (target testfile-poly_arrays019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays019.ae)) @@ -102977,12 +100772,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103003,12 +100797,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103028,12 +100821,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103052,12 +100844,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103076,12 +100867,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103100,12 +100890,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays019_cdcl.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103123,12 +100912,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_cdcl.output))) + (deps testfile-poly_arrays019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_cdcl.output))) (rule (target testfile-poly_arrays019_tableaux_cdcl.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103146,12 +100934,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_tableaux_cdcl.output))) + (deps testfile-poly_arrays019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_tableaux_cdcl.output))) (rule (target testfile-poly_arrays019_tableaux.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103169,12 +100956,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_tableaux.output))) + (deps testfile-poly_arrays019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_tableaux.output))) (rule (target testfile-poly_arrays019_legacy.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103191,12 +100977,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_legacy.output))) + (deps testfile-poly_arrays019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_legacy.output))) (rule (target testfile-poly_arrays019_dolmen.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103213,12 +100998,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_dolmen.output))) + (deps testfile-poly_arrays019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_dolmen.output))) (rule (target testfile-poly_arrays019_fpa.output) (deps (:input testfile-poly_arrays019.ae)) @@ -103235,12 +101019,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays019.expected - testfile-poly_arrays019_fpa.output))) + (deps testfile-poly_arrays019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays019.expected testfile-poly_arrays019_fpa.output))) (rule (target testfile-poly_arrays018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103259,12 +101042,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103285,12 +101067,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103310,12 +101091,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103334,12 +101114,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103358,12 +101137,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103382,12 +101160,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays018_cdcl.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103405,12 +101182,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_cdcl.output))) + (deps testfile-poly_arrays018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_cdcl.output))) (rule (target testfile-poly_arrays018_tableaux_cdcl.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103428,12 +101204,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_tableaux_cdcl.output))) + (deps testfile-poly_arrays018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_tableaux_cdcl.output))) (rule (target testfile-poly_arrays018_tableaux.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103451,12 +101226,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_tableaux.output))) + (deps testfile-poly_arrays018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_tableaux.output))) (rule (target testfile-poly_arrays018_legacy.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103473,12 +101247,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_legacy.output))) + (deps testfile-poly_arrays018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_legacy.output))) (rule (target testfile-poly_arrays018_dolmen.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103495,12 +101268,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_dolmen.output))) + (deps testfile-poly_arrays018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_dolmen.output))) (rule (target testfile-poly_arrays018_fpa.output) (deps (:input testfile-poly_arrays018.ae)) @@ -103517,12 +101289,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays018.expected - testfile-poly_arrays018_fpa.output))) + (deps testfile-poly_arrays018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays018.expected testfile-poly_arrays018_fpa.output))) (rule (target testfile-poly_arrays017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103541,12 +101312,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103567,12 +101337,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103592,12 +101361,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103616,12 +101384,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103640,12 +101407,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103664,12 +101430,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays017_cdcl.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103687,12 +101452,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_cdcl.output))) + (deps testfile-poly_arrays017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_cdcl.output))) (rule (target testfile-poly_arrays017_tableaux_cdcl.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103710,12 +101474,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_tableaux_cdcl.output))) + (deps testfile-poly_arrays017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_tableaux_cdcl.output))) (rule (target testfile-poly_arrays017_tableaux.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103733,12 +101496,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_tableaux.output))) + (deps testfile-poly_arrays017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_tableaux.output))) (rule (target testfile-poly_arrays017_legacy.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103755,12 +101517,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_legacy.output))) + (deps testfile-poly_arrays017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_legacy.output))) (rule (target testfile-poly_arrays017_dolmen.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103777,12 +101538,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_dolmen.output))) + (deps testfile-poly_arrays017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_dolmen.output))) (rule (target testfile-poly_arrays017_fpa.output) (deps (:input testfile-poly_arrays017.ae)) @@ -103799,12 +101559,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays017.expected - testfile-poly_arrays017_fpa.output))) + (deps testfile-poly_arrays017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays017.expected testfile-poly_arrays017_fpa.output))) (rule (target testfile-poly_arrays016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103823,12 +101582,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103849,12 +101607,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103874,12 +101631,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103898,12 +101654,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103922,12 +101677,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103946,12 +101700,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays016_cdcl.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103969,12 +101722,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_cdcl.output))) + (deps testfile-poly_arrays016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_cdcl.output))) (rule (target testfile-poly_arrays016_tableaux_cdcl.output) (deps (:input testfile-poly_arrays016.ae)) @@ -103992,12 +101744,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_tableaux_cdcl.output))) + (deps testfile-poly_arrays016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_tableaux_cdcl.output))) (rule (target testfile-poly_arrays016_tableaux.output) (deps (:input testfile-poly_arrays016.ae)) @@ -104015,12 +101766,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_tableaux.output))) + (deps testfile-poly_arrays016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_tableaux.output))) (rule (target testfile-poly_arrays016_legacy.output) (deps (:input testfile-poly_arrays016.ae)) @@ -104037,12 +101787,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_legacy.output))) + (deps testfile-poly_arrays016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_legacy.output))) (rule (target testfile-poly_arrays016_dolmen.output) (deps (:input testfile-poly_arrays016.ae)) @@ -104059,12 +101808,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_dolmen.output))) + (deps testfile-poly_arrays016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_dolmen.output))) (rule (target testfile-poly_arrays016_fpa.output) (deps (:input testfile-poly_arrays016.ae)) @@ -104081,12 +101829,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays016.expected - testfile-poly_arrays016_fpa.output))) + (deps testfile-poly_arrays016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays016.expected testfile-poly_arrays016_fpa.output))) (rule (target testfile-poly_arrays015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104105,12 +101852,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104131,12 +101877,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104156,12 +101901,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104180,12 +101924,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104204,12 +101947,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104228,12 +101970,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays015_cdcl.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104251,12 +101992,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_cdcl.output))) + (deps testfile-poly_arrays015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_cdcl.output))) (rule (target testfile-poly_arrays015_tableaux_cdcl.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104274,12 +102014,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_tableaux_cdcl.output))) + (deps testfile-poly_arrays015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_tableaux_cdcl.output))) (rule (target testfile-poly_arrays015_tableaux.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104297,12 +102036,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_tableaux.output))) + (deps testfile-poly_arrays015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_tableaux.output))) (rule (target testfile-poly_arrays015_legacy.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104319,12 +102057,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_legacy.output))) + (deps testfile-poly_arrays015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_legacy.output))) (rule (target testfile-poly_arrays015_dolmen.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104341,12 +102078,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_dolmen.output))) + (deps testfile-poly_arrays015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_dolmen.output))) (rule (target testfile-poly_arrays015_fpa.output) (deps (:input testfile-poly_arrays015.ae)) @@ -104363,12 +102099,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays015.expected - testfile-poly_arrays015_fpa.output))) + (deps testfile-poly_arrays015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays015.expected testfile-poly_arrays015_fpa.output))) (rule (target testfile-poly_arrays014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104387,12 +102122,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104413,12 +102147,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104438,12 +102171,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104462,12 +102194,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104486,12 +102217,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104510,12 +102240,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays014_cdcl.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104533,12 +102262,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_cdcl.output))) + (deps testfile-poly_arrays014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_cdcl.output))) (rule (target testfile-poly_arrays014_tableaux_cdcl.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104556,12 +102284,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_tableaux_cdcl.output))) + (deps testfile-poly_arrays014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_tableaux_cdcl.output))) (rule (target testfile-poly_arrays014_tableaux.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104579,12 +102306,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_tableaux.output))) + (deps testfile-poly_arrays014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_tableaux.output))) (rule (target testfile-poly_arrays014_legacy.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104601,12 +102327,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_legacy.output))) + (deps testfile-poly_arrays014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_legacy.output))) (rule (target testfile-poly_arrays014_dolmen.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104623,12 +102348,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_dolmen.output))) + (deps testfile-poly_arrays014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_dolmen.output))) (rule (target testfile-poly_arrays014_fpa.output) (deps (:input testfile-poly_arrays014.ae)) @@ -104645,12 +102369,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays014.expected - testfile-poly_arrays014_fpa.output))) + (deps testfile-poly_arrays014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays014.expected testfile-poly_arrays014_fpa.output))) (rule (target testfile-poly_arrays013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104669,12 +102392,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104695,12 +102417,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104720,12 +102441,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104744,12 +102464,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104768,12 +102487,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104792,12 +102510,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays013_cdcl.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104815,12 +102532,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_cdcl.output))) + (deps testfile-poly_arrays013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_cdcl.output))) (rule (target testfile-poly_arrays013_tableaux_cdcl.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104838,12 +102554,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_tableaux_cdcl.output))) + (deps testfile-poly_arrays013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_tableaux_cdcl.output))) (rule (target testfile-poly_arrays013_tableaux.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104861,12 +102576,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_tableaux.output))) + (deps testfile-poly_arrays013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_tableaux.output))) (rule (target testfile-poly_arrays013_legacy.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104883,12 +102597,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_legacy.output))) + (deps testfile-poly_arrays013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_legacy.output))) (rule (target testfile-poly_arrays013_dolmen.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104905,12 +102618,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_dolmen.output))) + (deps testfile-poly_arrays013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_dolmen.output))) (rule (target testfile-poly_arrays013_fpa.output) (deps (:input testfile-poly_arrays013.ae)) @@ -104927,12 +102639,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays013.expected - testfile-poly_arrays013_fpa.output))) + (deps testfile-poly_arrays013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays013.expected testfile-poly_arrays013_fpa.output))) (rule (target testfile-poly_arrays012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays012.ae)) @@ -104951,12 +102662,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays012.ae)) @@ -104977,12 +102687,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105002,12 +102711,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105026,12 +102734,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105050,12 +102757,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105074,12 +102780,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays012_cdcl.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105097,12 +102802,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_cdcl.output))) + (deps testfile-poly_arrays012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_cdcl.output))) (rule (target testfile-poly_arrays012_tableaux_cdcl.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105120,12 +102824,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_tableaux_cdcl.output))) + (deps testfile-poly_arrays012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_tableaux_cdcl.output))) (rule (target testfile-poly_arrays012_tableaux.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105143,12 +102846,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_tableaux.output))) + (deps testfile-poly_arrays012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_tableaux.output))) (rule (target testfile-poly_arrays012_legacy.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105165,12 +102867,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_legacy.output))) + (deps testfile-poly_arrays012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_legacy.output))) (rule (target testfile-poly_arrays012_dolmen.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105187,12 +102888,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_dolmen.output))) + (deps testfile-poly_arrays012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_dolmen.output))) (rule (target testfile-poly_arrays012_fpa.output) (deps (:input testfile-poly_arrays012.ae)) @@ -105209,12 +102909,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays012.expected - testfile-poly_arrays012_fpa.output))) + (deps testfile-poly_arrays012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays012.expected testfile-poly_arrays012_fpa.output))) (rule (target testfile-poly_arrays011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105233,12 +102932,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105259,12 +102957,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105284,12 +102981,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105308,12 +103004,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105332,12 +103027,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105356,12 +103050,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays011_cdcl.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105379,12 +103072,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_cdcl.output))) + (deps testfile-poly_arrays011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_cdcl.output))) (rule (target testfile-poly_arrays011_tableaux_cdcl.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105402,12 +103094,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_tableaux_cdcl.output))) + (deps testfile-poly_arrays011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_tableaux_cdcl.output))) (rule (target testfile-poly_arrays011_tableaux.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105425,12 +103116,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_tableaux.output))) + (deps testfile-poly_arrays011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_tableaux.output))) (rule (target testfile-poly_arrays011_legacy.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105447,12 +103137,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_legacy.output))) + (deps testfile-poly_arrays011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_legacy.output))) (rule (target testfile-poly_arrays011_dolmen.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105469,12 +103158,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_dolmen.output))) + (deps testfile-poly_arrays011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_dolmen.output))) (rule (target testfile-poly_arrays011_fpa.output) (deps (:input testfile-poly_arrays011.ae)) @@ -105491,12 +103179,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays011.expected - testfile-poly_arrays011_fpa.output))) + (deps testfile-poly_arrays011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays011.expected testfile-poly_arrays011_fpa.output))) (rule (target testfile-poly_arrays010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105515,12 +103202,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105541,12 +103227,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105566,12 +103251,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105590,12 +103274,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105614,12 +103297,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105638,12 +103320,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays010_cdcl.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105661,12 +103342,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_cdcl.output))) + (deps testfile-poly_arrays010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_cdcl.output))) (rule (target testfile-poly_arrays010_tableaux_cdcl.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105684,12 +103364,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_tableaux_cdcl.output))) + (deps testfile-poly_arrays010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_tableaux_cdcl.output))) (rule (target testfile-poly_arrays010_tableaux.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105707,12 +103386,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_tableaux.output))) + (deps testfile-poly_arrays010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_tableaux.output))) (rule (target testfile-poly_arrays010_legacy.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105729,12 +103407,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_legacy.output))) + (deps testfile-poly_arrays010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_legacy.output))) (rule (target testfile-poly_arrays010_dolmen.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105751,12 +103428,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_dolmen.output))) + (deps testfile-poly_arrays010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_dolmen.output))) (rule (target testfile-poly_arrays010_fpa.output) (deps (:input testfile-poly_arrays010.ae)) @@ -105773,12 +103449,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays010.expected - testfile-poly_arrays010_fpa.output))) + (deps testfile-poly_arrays010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays010.expected testfile-poly_arrays010_fpa.output))) (rule (target testfile-poly_arrays009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105797,12 +103472,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105823,12 +103497,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105848,12 +103521,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105872,12 +103544,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105896,12 +103567,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105920,12 +103590,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays009_cdcl.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105943,12 +103612,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_cdcl.output))) + (deps testfile-poly_arrays009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_cdcl.output))) (rule (target testfile-poly_arrays009_tableaux_cdcl.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105966,12 +103634,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_tableaux_cdcl.output))) + (deps testfile-poly_arrays009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_tableaux_cdcl.output))) (rule (target testfile-poly_arrays009_tableaux.output) (deps (:input testfile-poly_arrays009.ae)) @@ -105989,12 +103656,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_tableaux.output))) + (deps testfile-poly_arrays009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_tableaux.output))) (rule (target testfile-poly_arrays009_legacy.output) (deps (:input testfile-poly_arrays009.ae)) @@ -106011,12 +103677,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_legacy.output))) + (deps testfile-poly_arrays009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_legacy.output))) (rule (target testfile-poly_arrays009_dolmen.output) (deps (:input testfile-poly_arrays009.ae)) @@ -106033,12 +103698,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_dolmen.output))) + (deps testfile-poly_arrays009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_dolmen.output))) (rule (target testfile-poly_arrays009_fpa.output) (deps (:input testfile-poly_arrays009.ae)) @@ -106055,12 +103719,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays009.expected - testfile-poly_arrays009_fpa.output))) + (deps testfile-poly_arrays009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays009.expected testfile-poly_arrays009_fpa.output))) (rule (target testfile-poly_arrays008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106079,12 +103742,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106105,12 +103767,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106130,12 +103791,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106154,12 +103814,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106178,12 +103837,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106202,12 +103860,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays008_cdcl.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106225,12 +103882,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_cdcl.output))) + (deps testfile-poly_arrays008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_cdcl.output))) (rule (target testfile-poly_arrays008_tableaux_cdcl.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106248,12 +103904,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_tableaux_cdcl.output))) + (deps testfile-poly_arrays008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_tableaux_cdcl.output))) (rule (target testfile-poly_arrays008_tableaux.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106271,12 +103926,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_tableaux.output))) + (deps testfile-poly_arrays008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_tableaux.output))) (rule (target testfile-poly_arrays008_legacy.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106293,12 +103947,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_legacy.output))) + (deps testfile-poly_arrays008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_legacy.output))) (rule (target testfile-poly_arrays008_dolmen.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106315,12 +103968,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_dolmen.output))) + (deps testfile-poly_arrays008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_dolmen.output))) (rule (target testfile-poly_arrays008_fpa.output) (deps (:input testfile-poly_arrays008.ae)) @@ -106337,12 +103989,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays008.expected - testfile-poly_arrays008_fpa.output))) + (deps testfile-poly_arrays008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays008.expected testfile-poly_arrays008_fpa.output))) (rule (target testfile-poly_arrays007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106361,12 +104012,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106387,12 +104037,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106412,12 +104061,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106436,12 +104084,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106460,12 +104107,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106484,12 +104130,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays007_cdcl.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106507,12 +104152,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_cdcl.output))) + (deps testfile-poly_arrays007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_cdcl.output))) (rule (target testfile-poly_arrays007_tableaux_cdcl.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106530,12 +104174,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_tableaux_cdcl.output))) + (deps testfile-poly_arrays007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_tableaux_cdcl.output))) (rule (target testfile-poly_arrays007_tableaux.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106553,12 +104196,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_tableaux.output))) + (deps testfile-poly_arrays007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_tableaux.output))) (rule (target testfile-poly_arrays007_legacy.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106575,12 +104217,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_legacy.output))) + (deps testfile-poly_arrays007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_legacy.output))) (rule (target testfile-poly_arrays007_dolmen.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106597,12 +104238,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_dolmen.output))) + (deps testfile-poly_arrays007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_dolmen.output))) (rule (target testfile-poly_arrays007_fpa.output) (deps (:input testfile-poly_arrays007.ae)) @@ -106619,12 +104259,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays007.expected - testfile-poly_arrays007_fpa.output))) + (deps testfile-poly_arrays007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays007.expected testfile-poly_arrays007_fpa.output))) (rule (target testfile-poly_arrays006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106643,12 +104282,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106669,12 +104307,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106694,12 +104331,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106718,12 +104354,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106742,12 +104377,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106766,12 +104400,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays006_cdcl.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106789,12 +104422,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_cdcl.output))) + (deps testfile-poly_arrays006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_cdcl.output))) (rule (target testfile-poly_arrays006_tableaux_cdcl.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106812,12 +104444,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_tableaux_cdcl.output))) + (deps testfile-poly_arrays006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_tableaux_cdcl.output))) (rule (target testfile-poly_arrays006_tableaux.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106835,12 +104466,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_tableaux.output))) + (deps testfile-poly_arrays006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_tableaux.output))) (rule (target testfile-poly_arrays006_legacy.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106857,12 +104487,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_legacy.output))) + (deps testfile-poly_arrays006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_legacy.output))) (rule (target testfile-poly_arrays006_dolmen.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106879,12 +104508,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_dolmen.output))) + (deps testfile-poly_arrays006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_dolmen.output))) (rule (target testfile-poly_arrays006_fpa.output) (deps (:input testfile-poly_arrays006.ae)) @@ -106901,12 +104529,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays006.expected - testfile-poly_arrays006_fpa.output))) + (deps testfile-poly_arrays006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays006.expected testfile-poly_arrays006_fpa.output))) (rule (target testfile-poly_arrays005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays005.ae)) @@ -106925,12 +104552,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays005.ae)) @@ -106951,12 +104577,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays005.ae)) @@ -106976,12 +104601,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107000,12 +104624,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107024,12 +104647,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107048,12 +104670,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays005_cdcl.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107071,12 +104692,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_cdcl.output))) + (deps testfile-poly_arrays005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_cdcl.output))) (rule (target testfile-poly_arrays005_tableaux_cdcl.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107094,12 +104714,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_tableaux_cdcl.output))) + (deps testfile-poly_arrays005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_tableaux_cdcl.output))) (rule (target testfile-poly_arrays005_tableaux.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107117,12 +104736,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_tableaux.output))) + (deps testfile-poly_arrays005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_tableaux.output))) (rule (target testfile-poly_arrays005_legacy.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107139,12 +104757,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_legacy.output))) + (deps testfile-poly_arrays005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_legacy.output))) (rule (target testfile-poly_arrays005_dolmen.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107161,12 +104778,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_dolmen.output))) + (deps testfile-poly_arrays005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_dolmen.output))) (rule (target testfile-poly_arrays005_fpa.output) (deps (:input testfile-poly_arrays005.ae)) @@ -107183,12 +104799,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays005.expected - testfile-poly_arrays005_fpa.output))) + (deps testfile-poly_arrays005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays005.expected testfile-poly_arrays005_fpa.output))) (rule (target testfile-poly_arrays004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107207,12 +104822,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107233,12 +104847,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107258,12 +104871,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107282,12 +104894,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107306,12 +104917,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107330,12 +104940,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays004_cdcl.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107353,12 +104962,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_cdcl.output))) + (deps testfile-poly_arrays004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_cdcl.output))) (rule (target testfile-poly_arrays004_tableaux_cdcl.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107376,12 +104984,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_tableaux_cdcl.output))) + (deps testfile-poly_arrays004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_tableaux_cdcl.output))) (rule (target testfile-poly_arrays004_tableaux.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107399,12 +105006,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_tableaux.output))) + (deps testfile-poly_arrays004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_tableaux.output))) (rule (target testfile-poly_arrays004_legacy.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107421,12 +105027,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_legacy.output))) + (deps testfile-poly_arrays004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_legacy.output))) (rule (target testfile-poly_arrays004_dolmen.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107443,12 +105048,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_dolmen.output))) + (deps testfile-poly_arrays004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_dolmen.output))) (rule (target testfile-poly_arrays004_fpa.output) (deps (:input testfile-poly_arrays004.ae)) @@ -107465,12 +105069,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays004.expected - testfile-poly_arrays004_fpa.output))) + (deps testfile-poly_arrays004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays004.expected testfile-poly_arrays004_fpa.output))) (rule (target testfile-poly_arrays003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107489,12 +105092,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107515,12 +105117,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107540,12 +105141,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107564,12 +105164,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107588,12 +105187,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107612,12 +105210,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays003_cdcl.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107635,12 +105232,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_cdcl.output))) + (deps testfile-poly_arrays003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_cdcl.output))) (rule (target testfile-poly_arrays003_tableaux_cdcl.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107658,12 +105254,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_tableaux_cdcl.output))) + (deps testfile-poly_arrays003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_tableaux_cdcl.output))) (rule (target testfile-poly_arrays003_tableaux.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107681,12 +105276,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_tableaux.output))) + (deps testfile-poly_arrays003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_tableaux.output))) (rule (target testfile-poly_arrays003_legacy.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107703,12 +105297,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_legacy.output))) + (deps testfile-poly_arrays003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_legacy.output))) (rule (target testfile-poly_arrays003_dolmen.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107725,12 +105318,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_dolmen.output))) + (deps testfile-poly_arrays003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_dolmen.output))) (rule (target testfile-poly_arrays003_fpa.output) (deps (:input testfile-poly_arrays003.ae)) @@ -107747,12 +105339,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays003.expected - testfile-poly_arrays003_fpa.output))) + (deps testfile-poly_arrays003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays003.expected testfile-poly_arrays003_fpa.output))) (rule (target testfile-poly_arrays002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107771,12 +105362,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107797,12 +105387,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107822,12 +105411,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107846,12 +105434,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107870,12 +105457,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107894,12 +105480,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays002_cdcl.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107917,12 +105502,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_cdcl.output))) + (deps testfile-poly_arrays002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_cdcl.output))) (rule (target testfile-poly_arrays002_tableaux_cdcl.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107940,12 +105524,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_tableaux_cdcl.output))) + (deps testfile-poly_arrays002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_tableaux_cdcl.output))) (rule (target testfile-poly_arrays002_tableaux.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107963,12 +105546,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_tableaux.output))) + (deps testfile-poly_arrays002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_tableaux.output))) (rule (target testfile-poly_arrays002_legacy.output) (deps (:input testfile-poly_arrays002.ae)) @@ -107985,12 +105567,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_legacy.output))) + (deps testfile-poly_arrays002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_legacy.output))) (rule (target testfile-poly_arrays002_dolmen.output) (deps (:input testfile-poly_arrays002.ae)) @@ -108007,12 +105588,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_dolmen.output))) + (deps testfile-poly_arrays002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_dolmen.output))) (rule (target testfile-poly_arrays002_fpa.output) (deps (:input testfile-poly_arrays002.ae)) @@ -108029,12 +105609,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays002.expected - testfile-poly_arrays002_fpa.output))) + (deps testfile-poly_arrays002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays002.expected testfile-poly_arrays002_fpa.output))) (rule (target testfile-poly_arrays001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108053,12 +105632,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108079,12 +105657,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108104,12 +105681,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108128,12 +105704,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108152,12 +105727,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108176,12 +105750,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-poly_arrays001_cdcl.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108199,12 +105772,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_cdcl.output))) + (deps testfile-poly_arrays001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_cdcl.output))) (rule (target testfile-poly_arrays001_tableaux_cdcl.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108222,12 +105794,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_tableaux_cdcl.output))) + (deps testfile-poly_arrays001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_tableaux_cdcl.output))) (rule (target testfile-poly_arrays001_tableaux.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108245,12 +105816,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_tableaux.output))) + (deps testfile-poly_arrays001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_tableaux.output))) (rule (target testfile-poly_arrays001_legacy.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108267,12 +105837,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_legacy.output))) + (deps testfile-poly_arrays001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_legacy.output))) (rule (target testfile-poly_arrays001_dolmen.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108289,12 +105858,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_dolmen.output))) + (deps testfile-poly_arrays001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_dolmen.output))) (rule (target testfile-poly_arrays001_fpa.output) (deps (:input testfile-poly_arrays001.ae)) @@ -108311,12 +105879,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-poly_arrays001.expected - testfile-poly_arrays001_fpa.output))) + (deps testfile-poly_arrays001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-poly_arrays001.expected testfile-poly_arrays001_fpa.output))) (rule (target testfile-arrays053_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays053.ae)) @@ -108335,12 +105902,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays053.expected - testfile-arrays053_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays053_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays053.ae)) @@ -108361,12 +105927,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays053.expected - testfile-arrays053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays053.ae)) @@ -108386,12 +105951,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays053.expected - testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays053_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays053.ae)) @@ -108410,12 +105974,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays053.expected - testfile-arrays053_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays053_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays053.ae)) @@ -108434,12 +105997,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays053.expected - testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays053_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays053.ae)) @@ -108458,12 +106020,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays053.expected - testfile-arrays053_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays053_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays053_cdcl.output) (deps (:input testfile-arrays053.ae)) @@ -108481,10 +106042,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays053.expected testfile-arrays053_cdcl.output))) + (deps testfile-arrays053_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_cdcl.output))) (rule (target testfile-arrays053_tableaux_cdcl.output) (deps (:input testfile-arrays053.ae)) @@ -108502,12 +106064,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays053.expected - testfile-arrays053_tableaux_cdcl.output))) + (deps testfile-arrays053_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_tableaux_cdcl.output))) (rule (target testfile-arrays053_tableaux.output) (deps (:input testfile-arrays053.ae)) @@ -108525,10 +106086,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays053.expected testfile-arrays053_tableaux.output))) + (deps testfile-arrays053_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_tableaux.output))) (rule (target testfile-arrays053_legacy.output) (deps (:input testfile-arrays053.ae)) @@ -108545,10 +106107,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays053.expected testfile-arrays053_legacy.output))) + (deps testfile-arrays053_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_legacy.output))) (rule (target testfile-arrays053_dolmen.output) (deps (:input testfile-arrays053.ae)) @@ -108565,10 +106128,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays053.expected testfile-arrays053_dolmen.output))) + (deps testfile-arrays053_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_dolmen.output))) (rule (target testfile-arrays053_fpa.output) (deps (:input testfile-arrays053.ae)) @@ -108585,10 +106149,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays053.expected testfile-arrays053_fpa.output))) + (deps testfile-arrays053_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays053.expected testfile-arrays053_fpa.output))) (rule (target testfile-arrays052_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays052.ae)) @@ -108607,12 +106172,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays052.expected - testfile-arrays052_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays052_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays052.ae)) @@ -108633,12 +106197,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays052.expected - testfile-arrays052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays052.ae)) @@ -108658,12 +106221,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays052.expected - testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays052_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays052.ae)) @@ -108682,12 +106244,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays052.expected - testfile-arrays052_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays052_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays052.ae)) @@ -108706,12 +106267,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays052.expected - testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays052_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays052.ae)) @@ -108730,12 +106290,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays052.expected - testfile-arrays052_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays052_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays052_cdcl.output) (deps (:input testfile-arrays052.ae)) @@ -108753,10 +106312,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays052.expected testfile-arrays052_cdcl.output))) + (deps testfile-arrays052_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_cdcl.output))) (rule (target testfile-arrays052_tableaux_cdcl.output) (deps (:input testfile-arrays052.ae)) @@ -108774,12 +106334,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays052.expected - testfile-arrays052_tableaux_cdcl.output))) + (deps testfile-arrays052_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_tableaux_cdcl.output))) (rule (target testfile-arrays052_tableaux.output) (deps (:input testfile-arrays052.ae)) @@ -108797,10 +106356,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays052.expected testfile-arrays052_tableaux.output))) + (deps testfile-arrays052_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_tableaux.output))) (rule (target testfile-arrays052_legacy.output) (deps (:input testfile-arrays052.ae)) @@ -108817,10 +106377,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays052.expected testfile-arrays052_legacy.output))) + (deps testfile-arrays052_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_legacy.output))) (rule (target testfile-arrays052_dolmen.output) (deps (:input testfile-arrays052.ae)) @@ -108837,10 +106398,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays052.expected testfile-arrays052_dolmen.output))) + (deps testfile-arrays052_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_dolmen.output))) (rule (target testfile-arrays052_fpa.output) (deps (:input testfile-arrays052.ae)) @@ -108857,10 +106419,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays052.expected testfile-arrays052_fpa.output))) + (deps testfile-arrays052_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays052.expected testfile-arrays052_fpa.output))) (rule (target testfile-arrays051_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays051.ae)) @@ -108879,12 +106442,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays051.expected - testfile-arrays051_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays051_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays051.ae)) @@ -108905,12 +106467,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays051.expected - testfile-arrays051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays051.ae)) @@ -108930,12 +106491,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays051.expected - testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays051_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays051.ae)) @@ -108954,12 +106514,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays051.expected - testfile-arrays051_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays051_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays051.ae)) @@ -108978,12 +106537,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays051.expected - testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays051_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays051.ae)) @@ -109002,12 +106560,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays051.expected - testfile-arrays051_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays051_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays051_cdcl.output) (deps (:input testfile-arrays051.ae)) @@ -109025,10 +106582,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays051.expected testfile-arrays051_cdcl.output))) + (deps testfile-arrays051_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_cdcl.output))) (rule (target testfile-arrays051_tableaux_cdcl.output) (deps (:input testfile-arrays051.ae)) @@ -109046,12 +106604,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays051.expected - testfile-arrays051_tableaux_cdcl.output))) + (deps testfile-arrays051_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_tableaux_cdcl.output))) (rule (target testfile-arrays051_tableaux.output) (deps (:input testfile-arrays051.ae)) @@ -109069,10 +106626,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays051.expected testfile-arrays051_tableaux.output))) + (deps testfile-arrays051_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_tableaux.output))) (rule (target testfile-arrays051_legacy.output) (deps (:input testfile-arrays051.ae)) @@ -109089,10 +106647,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays051.expected testfile-arrays051_legacy.output))) + (deps testfile-arrays051_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_legacy.output))) (rule (target testfile-arrays051_dolmen.output) (deps (:input testfile-arrays051.ae)) @@ -109109,10 +106668,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays051.expected testfile-arrays051_dolmen.output))) + (deps testfile-arrays051_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_dolmen.output))) (rule (target testfile-arrays051_fpa.output) (deps (:input testfile-arrays051.ae)) @@ -109129,10 +106689,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays051.expected testfile-arrays051_fpa.output))) + (deps testfile-arrays051_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays051.expected testfile-arrays051_fpa.output))) (rule (target testfile-arrays050_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays050.ae)) @@ -109151,12 +106712,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays050.expected - testfile-arrays050_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays050_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays050.ae)) @@ -109177,12 +106737,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays050.expected - testfile-arrays050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays050.ae)) @@ -109202,12 +106761,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays050.expected - testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays050_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays050.ae)) @@ -109226,12 +106784,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays050.expected - testfile-arrays050_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays050_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays050.ae)) @@ -109250,12 +106807,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays050.expected - testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays050_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays050.ae)) @@ -109274,12 +106830,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays050.expected - testfile-arrays050_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays050_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays050_cdcl.output) (deps (:input testfile-arrays050.ae)) @@ -109297,10 +106852,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays050.expected testfile-arrays050_cdcl.output))) + (deps testfile-arrays050_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_cdcl.output))) (rule (target testfile-arrays050_tableaux_cdcl.output) (deps (:input testfile-arrays050.ae)) @@ -109318,12 +106874,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays050.expected - testfile-arrays050_tableaux_cdcl.output))) + (deps testfile-arrays050_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_tableaux_cdcl.output))) (rule (target testfile-arrays050_tableaux.output) (deps (:input testfile-arrays050.ae)) @@ -109341,10 +106896,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays050.expected testfile-arrays050_tableaux.output))) + (deps testfile-arrays050_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_tableaux.output))) (rule (target testfile-arrays050_legacy.output) (deps (:input testfile-arrays050.ae)) @@ -109361,10 +106917,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays050.expected testfile-arrays050_legacy.output))) + (deps testfile-arrays050_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_legacy.output))) (rule (target testfile-arrays050_dolmen.output) (deps (:input testfile-arrays050.ae)) @@ -109381,10 +106938,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays050.expected testfile-arrays050_dolmen.output))) + (deps testfile-arrays050_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_dolmen.output))) (rule (target testfile-arrays050_fpa.output) (deps (:input testfile-arrays050.ae)) @@ -109401,10 +106959,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays050.expected testfile-arrays050_fpa.output))) + (deps testfile-arrays050_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays050.expected testfile-arrays050_fpa.output))) (rule (target testfile-arrays049_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays049.ae)) @@ -109423,12 +106982,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays049.expected - testfile-arrays049_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays049_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays049.ae)) @@ -109449,12 +107007,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays049.expected - testfile-arrays049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays049.ae)) @@ -109474,12 +107031,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays049.expected - testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays049_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays049.ae)) @@ -109498,12 +107054,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays049.expected - testfile-arrays049_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays049_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays049.ae)) @@ -109522,12 +107077,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays049.expected - testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays049_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays049.ae)) @@ -109546,12 +107100,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays049.expected - testfile-arrays049_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays049_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays049_cdcl.output) (deps (:input testfile-arrays049.ae)) @@ -109569,10 +107122,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays049.expected testfile-arrays049_cdcl.output))) + (deps testfile-arrays049_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_cdcl.output))) (rule (target testfile-arrays049_tableaux_cdcl.output) (deps (:input testfile-arrays049.ae)) @@ -109590,12 +107144,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays049.expected - testfile-arrays049_tableaux_cdcl.output))) + (deps testfile-arrays049_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_tableaux_cdcl.output))) (rule (target testfile-arrays049_tableaux.output) (deps (:input testfile-arrays049.ae)) @@ -109613,10 +107166,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays049.expected testfile-arrays049_tableaux.output))) + (deps testfile-arrays049_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_tableaux.output))) (rule (target testfile-arrays049_legacy.output) (deps (:input testfile-arrays049.ae)) @@ -109633,10 +107187,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays049.expected testfile-arrays049_legacy.output))) + (deps testfile-arrays049_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_legacy.output))) (rule (target testfile-arrays049_dolmen.output) (deps (:input testfile-arrays049.ae)) @@ -109653,10 +107208,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays049.expected testfile-arrays049_dolmen.output))) + (deps testfile-arrays049_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_dolmen.output))) (rule (target testfile-arrays049_fpa.output) (deps (:input testfile-arrays049.ae)) @@ -109673,10 +107229,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays049.expected testfile-arrays049_fpa.output))) + (deps testfile-arrays049_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays049.expected testfile-arrays049_fpa.output))) (rule (target testfile-arrays048_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays048.ae)) @@ -109695,12 +107252,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays048.expected - testfile-arrays048_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays048_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays048.ae)) @@ -109721,12 +107277,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays048.expected - testfile-arrays048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays048.ae)) @@ -109746,12 +107301,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays048.expected - testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays048_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays048.ae)) @@ -109770,12 +107324,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays048.expected - testfile-arrays048_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays048_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays048.ae)) @@ -109794,12 +107347,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays048.expected - testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays048_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays048.ae)) @@ -109818,12 +107370,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays048.expected - testfile-arrays048_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays048_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays048_cdcl.output) (deps (:input testfile-arrays048.ae)) @@ -109841,10 +107392,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays048.expected testfile-arrays048_cdcl.output))) + (deps testfile-arrays048_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_cdcl.output))) (rule (target testfile-arrays048_tableaux_cdcl.output) (deps (:input testfile-arrays048.ae)) @@ -109862,12 +107414,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays048.expected - testfile-arrays048_tableaux_cdcl.output))) + (deps testfile-arrays048_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_tableaux_cdcl.output))) (rule (target testfile-arrays048_tableaux.output) (deps (:input testfile-arrays048.ae)) @@ -109885,10 +107436,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays048.expected testfile-arrays048_tableaux.output))) + (deps testfile-arrays048_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_tableaux.output))) (rule (target testfile-arrays048_legacy.output) (deps (:input testfile-arrays048.ae)) @@ -109905,10 +107457,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays048.expected testfile-arrays048_legacy.output))) + (deps testfile-arrays048_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_legacy.output))) (rule (target testfile-arrays048_dolmen.output) (deps (:input testfile-arrays048.ae)) @@ -109925,10 +107478,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays048.expected testfile-arrays048_dolmen.output))) + (deps testfile-arrays048_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_dolmen.output))) (rule (target testfile-arrays048_fpa.output) (deps (:input testfile-arrays048.ae)) @@ -109945,10 +107499,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays048.expected testfile-arrays048_fpa.output))) + (deps testfile-arrays048_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays048.expected testfile-arrays048_fpa.output))) (rule (target testfile-arrays047_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays047.ae)) @@ -109967,12 +107522,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays047.expected - testfile-arrays047_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays047_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays047.ae)) @@ -109993,12 +107547,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays047.expected - testfile-arrays047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays047.ae)) @@ -110018,12 +107571,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays047.expected - testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays047_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays047.ae)) @@ -110042,12 +107594,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays047.expected - testfile-arrays047_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays047_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays047.ae)) @@ -110066,12 +107617,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays047.expected - testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays047_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays047.ae)) @@ -110090,12 +107640,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays047.expected - testfile-arrays047_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays047_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays047_cdcl.output) (deps (:input testfile-arrays047.ae)) @@ -110113,10 +107662,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays047.expected testfile-arrays047_cdcl.output))) + (deps testfile-arrays047_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_cdcl.output))) (rule (target testfile-arrays047_tableaux_cdcl.output) (deps (:input testfile-arrays047.ae)) @@ -110134,12 +107684,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays047.expected - testfile-arrays047_tableaux_cdcl.output))) + (deps testfile-arrays047_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_tableaux_cdcl.output))) (rule (target testfile-arrays047_tableaux.output) (deps (:input testfile-arrays047.ae)) @@ -110157,10 +107706,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays047.expected testfile-arrays047_tableaux.output))) + (deps testfile-arrays047_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_tableaux.output))) (rule (target testfile-arrays047_legacy.output) (deps (:input testfile-arrays047.ae)) @@ -110177,10 +107727,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays047.expected testfile-arrays047_legacy.output))) + (deps testfile-arrays047_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_legacy.output))) (rule (target testfile-arrays047_dolmen.output) (deps (:input testfile-arrays047.ae)) @@ -110197,10 +107748,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays047.expected testfile-arrays047_dolmen.output))) + (deps testfile-arrays047_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_dolmen.output))) (rule (target testfile-arrays047_fpa.output) (deps (:input testfile-arrays047.ae)) @@ -110217,10 +107769,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays047.expected testfile-arrays047_fpa.output))) + (deps testfile-arrays047_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays047.expected testfile-arrays047_fpa.output))) (rule (target testfile-arrays046_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays046.ae)) @@ -110239,12 +107792,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays046.expected - testfile-arrays046_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays046_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays046.ae)) @@ -110265,12 +107817,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays046.expected - testfile-arrays046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays046.ae)) @@ -110290,12 +107841,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays046.expected - testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays046_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays046.ae)) @@ -110314,12 +107864,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays046.expected - testfile-arrays046_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays046_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays046.ae)) @@ -110338,12 +107887,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays046.expected - testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays046_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays046.ae)) @@ -110362,12 +107910,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays046.expected - testfile-arrays046_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays046_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays046_cdcl.output) (deps (:input testfile-arrays046.ae)) @@ -110385,10 +107932,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays046.expected testfile-arrays046_cdcl.output))) + (deps testfile-arrays046_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_cdcl.output))) (rule (target testfile-arrays046_tableaux_cdcl.output) (deps (:input testfile-arrays046.ae)) @@ -110406,12 +107954,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays046.expected - testfile-arrays046_tableaux_cdcl.output))) + (deps testfile-arrays046_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_tableaux_cdcl.output))) (rule (target testfile-arrays046_tableaux.output) (deps (:input testfile-arrays046.ae)) @@ -110429,10 +107976,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays046.expected testfile-arrays046_tableaux.output))) + (deps testfile-arrays046_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_tableaux.output))) (rule (target testfile-arrays046_legacy.output) (deps (:input testfile-arrays046.ae)) @@ -110449,10 +107997,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays046.expected testfile-arrays046_legacy.output))) + (deps testfile-arrays046_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_legacy.output))) (rule (target testfile-arrays046_dolmen.output) (deps (:input testfile-arrays046.ae)) @@ -110469,10 +108018,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays046.expected testfile-arrays046_dolmen.output))) + (deps testfile-arrays046_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_dolmen.output))) (rule (target testfile-arrays046_fpa.output) (deps (:input testfile-arrays046.ae)) @@ -110489,10 +108039,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays046.expected testfile-arrays046_fpa.output))) + (deps testfile-arrays046_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays046.expected testfile-arrays046_fpa.output))) (rule (target testfile-arrays045_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays045.ae)) @@ -110511,12 +108062,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays045.expected - testfile-arrays045_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays045_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays045.ae)) @@ -110537,12 +108087,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays045.expected - testfile-arrays045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays045.ae)) @@ -110562,12 +108111,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays045.expected - testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays045_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays045.ae)) @@ -110586,12 +108134,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays045.expected - testfile-arrays045_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays045_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays045.ae)) @@ -110610,12 +108157,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays045.expected - testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays045_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays045.ae)) @@ -110634,12 +108180,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays045.expected - testfile-arrays045_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays045_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays045_cdcl.output) (deps (:input testfile-arrays045.ae)) @@ -110657,10 +108202,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays045.expected testfile-arrays045_cdcl.output))) + (deps testfile-arrays045_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_cdcl.output))) (rule (target testfile-arrays045_tableaux_cdcl.output) (deps (:input testfile-arrays045.ae)) @@ -110678,12 +108224,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays045.expected - testfile-arrays045_tableaux_cdcl.output))) + (deps testfile-arrays045_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_tableaux_cdcl.output))) (rule (target testfile-arrays045_tableaux.output) (deps (:input testfile-arrays045.ae)) @@ -110701,10 +108246,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays045.expected testfile-arrays045_tableaux.output))) + (deps testfile-arrays045_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_tableaux.output))) (rule (target testfile-arrays045_legacy.output) (deps (:input testfile-arrays045.ae)) @@ -110721,10 +108267,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays045.expected testfile-arrays045_legacy.output))) + (deps testfile-arrays045_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_legacy.output))) (rule (target testfile-arrays045_dolmen.output) (deps (:input testfile-arrays045.ae)) @@ -110741,10 +108288,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays045.expected testfile-arrays045_dolmen.output))) + (deps testfile-arrays045_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_dolmen.output))) (rule (target testfile-arrays045_fpa.output) (deps (:input testfile-arrays045.ae)) @@ -110761,10 +108309,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays045.expected testfile-arrays045_fpa.output))) + (deps testfile-arrays045_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays045.expected testfile-arrays045_fpa.output))) (rule (target testfile-arrays044_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays044.ae)) @@ -110783,12 +108332,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays044.expected - testfile-arrays044_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays044_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays044.ae)) @@ -110809,12 +108357,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays044.expected - testfile-arrays044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays044.ae)) @@ -110834,12 +108381,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays044.expected - testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays044_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays044.ae)) @@ -110858,12 +108404,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays044.expected - testfile-arrays044_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays044_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays044.ae)) @@ -110882,12 +108427,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays044.expected - testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays044_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays044.ae)) @@ -110906,12 +108450,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays044.expected - testfile-arrays044_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays044_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays044_cdcl.output) (deps (:input testfile-arrays044.ae)) @@ -110929,10 +108472,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays044.expected testfile-arrays044_cdcl.output))) + (deps testfile-arrays044_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_cdcl.output))) (rule (target testfile-arrays044_tableaux_cdcl.output) (deps (:input testfile-arrays044.ae)) @@ -110950,12 +108494,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays044.expected - testfile-arrays044_tableaux_cdcl.output))) + (deps testfile-arrays044_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_tableaux_cdcl.output))) (rule (target testfile-arrays044_tableaux.output) (deps (:input testfile-arrays044.ae)) @@ -110973,10 +108516,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays044.expected testfile-arrays044_tableaux.output))) + (deps testfile-arrays044_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_tableaux.output))) (rule (target testfile-arrays044_legacy.output) (deps (:input testfile-arrays044.ae)) @@ -110993,10 +108537,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays044.expected testfile-arrays044_legacy.output))) + (deps testfile-arrays044_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_legacy.output))) (rule (target testfile-arrays044_dolmen.output) (deps (:input testfile-arrays044.ae)) @@ -111013,10 +108558,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays044.expected testfile-arrays044_dolmen.output))) + (deps testfile-arrays044_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_dolmen.output))) (rule (target testfile-arrays044_fpa.output) (deps (:input testfile-arrays044.ae)) @@ -111033,10 +108579,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays044.expected testfile-arrays044_fpa.output))) + (deps testfile-arrays044_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays044.expected testfile-arrays044_fpa.output))) (rule (target testfile-arrays043_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays043.ae)) @@ -111055,12 +108602,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays043.expected - testfile-arrays043_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays043_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays043.ae)) @@ -111081,12 +108627,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays043.expected - testfile-arrays043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays043.ae)) @@ -111106,12 +108651,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays043.expected - testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays043_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays043.ae)) @@ -111130,12 +108674,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays043.expected - testfile-arrays043_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays043_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays043.ae)) @@ -111154,12 +108697,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays043.expected - testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays043_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays043.ae)) @@ -111178,12 +108720,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays043.expected - testfile-arrays043_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays043_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays043_cdcl.output) (deps (:input testfile-arrays043.ae)) @@ -111201,10 +108742,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays043.expected testfile-arrays043_cdcl.output))) + (deps testfile-arrays043_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_cdcl.output))) (rule (target testfile-arrays043_tableaux_cdcl.output) (deps (:input testfile-arrays043.ae)) @@ -111222,12 +108764,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays043.expected - testfile-arrays043_tableaux_cdcl.output))) + (deps testfile-arrays043_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_tableaux_cdcl.output))) (rule (target testfile-arrays043_tableaux.output) (deps (:input testfile-arrays043.ae)) @@ -111245,10 +108786,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays043.expected testfile-arrays043_tableaux.output))) + (deps testfile-arrays043_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_tableaux.output))) (rule (target testfile-arrays043_legacy.output) (deps (:input testfile-arrays043.ae)) @@ -111265,10 +108807,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays043.expected testfile-arrays043_legacy.output))) + (deps testfile-arrays043_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_legacy.output))) (rule (target testfile-arrays043_dolmen.output) (deps (:input testfile-arrays043.ae)) @@ -111285,10 +108828,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays043.expected testfile-arrays043_dolmen.output))) + (deps testfile-arrays043_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_dolmen.output))) (rule (target testfile-arrays043_fpa.output) (deps (:input testfile-arrays043.ae)) @@ -111305,10 +108849,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays043.expected testfile-arrays043_fpa.output))) + (deps testfile-arrays043_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays043.expected testfile-arrays043_fpa.output))) (rule (target testfile-arrays042_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays042.ae)) @@ -111327,12 +108872,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays042.expected - testfile-arrays042_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays042_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays042.ae)) @@ -111353,12 +108897,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays042.expected - testfile-arrays042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays042.ae)) @@ -111378,12 +108921,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays042.expected - testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays042_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays042.ae)) @@ -111402,12 +108944,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays042.expected - testfile-arrays042_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays042_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays042.ae)) @@ -111426,12 +108967,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays042.expected - testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays042_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays042.ae)) @@ -111450,12 +108990,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays042.expected - testfile-arrays042_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays042_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays042_cdcl.output) (deps (:input testfile-arrays042.ae)) @@ -111473,10 +109012,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays042.expected testfile-arrays042_cdcl.output))) + (deps testfile-arrays042_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_cdcl.output))) (rule (target testfile-arrays042_tableaux_cdcl.output) (deps (:input testfile-arrays042.ae)) @@ -111494,12 +109034,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays042.expected - testfile-arrays042_tableaux_cdcl.output))) + (deps testfile-arrays042_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_tableaux_cdcl.output))) (rule (target testfile-arrays042_tableaux.output) (deps (:input testfile-arrays042.ae)) @@ -111517,10 +109056,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays042.expected testfile-arrays042_tableaux.output))) + (deps testfile-arrays042_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_tableaux.output))) (rule (target testfile-arrays042_legacy.output) (deps (:input testfile-arrays042.ae)) @@ -111537,10 +109077,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays042.expected testfile-arrays042_legacy.output))) + (deps testfile-arrays042_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_legacy.output))) (rule (target testfile-arrays042_dolmen.output) (deps (:input testfile-arrays042.ae)) @@ -111557,10 +109098,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays042.expected testfile-arrays042_dolmen.output))) + (deps testfile-arrays042_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_dolmen.output))) (rule (target testfile-arrays042_fpa.output) (deps (:input testfile-arrays042.ae)) @@ -111577,10 +109119,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays042.expected testfile-arrays042_fpa.output))) + (deps testfile-arrays042_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays042.expected testfile-arrays042_fpa.output))) (rule (target testfile-arrays041_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays041.ae)) @@ -111599,12 +109142,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays041.expected - testfile-arrays041_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays041_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays041.ae)) @@ -111625,12 +109167,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays041.expected - testfile-arrays041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays041.ae)) @@ -111650,12 +109191,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays041.expected - testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays041_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays041.ae)) @@ -111674,12 +109214,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays041.expected - testfile-arrays041_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays041_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays041.ae)) @@ -111698,12 +109237,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays041.expected - testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays041_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays041.ae)) @@ -111722,12 +109260,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays041.expected - testfile-arrays041_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays041_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays041_cdcl.output) (deps (:input testfile-arrays041.ae)) @@ -111745,10 +109282,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays041.expected testfile-arrays041_cdcl.output))) + (deps testfile-arrays041_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_cdcl.output))) (rule (target testfile-arrays041_tableaux_cdcl.output) (deps (:input testfile-arrays041.ae)) @@ -111766,12 +109304,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays041.expected - testfile-arrays041_tableaux_cdcl.output))) + (deps testfile-arrays041_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_tableaux_cdcl.output))) (rule (target testfile-arrays041_tableaux.output) (deps (:input testfile-arrays041.ae)) @@ -111789,10 +109326,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays041.expected testfile-arrays041_tableaux.output))) + (deps testfile-arrays041_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_tableaux.output))) (rule (target testfile-arrays041_legacy.output) (deps (:input testfile-arrays041.ae)) @@ -111809,10 +109347,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays041.expected testfile-arrays041_legacy.output))) + (deps testfile-arrays041_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_legacy.output))) (rule (target testfile-arrays041_dolmen.output) (deps (:input testfile-arrays041.ae)) @@ -111829,10 +109368,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays041.expected testfile-arrays041_dolmen.output))) + (deps testfile-arrays041_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_dolmen.output))) (rule (target testfile-arrays041_fpa.output) (deps (:input testfile-arrays041.ae)) @@ -111849,10 +109389,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays041.expected testfile-arrays041_fpa.output))) + (deps testfile-arrays041_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays041.expected testfile-arrays041_fpa.output))) (rule (target testfile-arrays040_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays040.ae)) @@ -111871,12 +109412,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays040.expected - testfile-arrays040_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays040_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays040.ae)) @@ -111897,12 +109437,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays040.expected - testfile-arrays040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays040.ae)) @@ -111922,12 +109461,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays040.expected - testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays040_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays040.ae)) @@ -111946,12 +109484,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays040.expected - testfile-arrays040_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays040_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays040.ae)) @@ -111970,12 +109507,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays040.expected - testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays040_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays040.ae)) @@ -111994,12 +109530,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays040.expected - testfile-arrays040_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays040_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays040_cdcl.output) (deps (:input testfile-arrays040.ae)) @@ -112017,10 +109552,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays040.expected testfile-arrays040_cdcl.output))) + (deps testfile-arrays040_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_cdcl.output))) (rule (target testfile-arrays040_tableaux_cdcl.output) (deps (:input testfile-arrays040.ae)) @@ -112038,12 +109574,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays040.expected - testfile-arrays040_tableaux_cdcl.output))) + (deps testfile-arrays040_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_tableaux_cdcl.output))) (rule (target testfile-arrays040_tableaux.output) (deps (:input testfile-arrays040.ae)) @@ -112061,10 +109596,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays040.expected testfile-arrays040_tableaux.output))) + (deps testfile-arrays040_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_tableaux.output))) (rule (target testfile-arrays040_legacy.output) (deps (:input testfile-arrays040.ae)) @@ -112081,10 +109617,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays040.expected testfile-arrays040_legacy.output))) + (deps testfile-arrays040_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_legacy.output))) (rule (target testfile-arrays040_dolmen.output) (deps (:input testfile-arrays040.ae)) @@ -112101,10 +109638,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays040.expected testfile-arrays040_dolmen.output))) + (deps testfile-arrays040_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_dolmen.output))) (rule (target testfile-arrays040_fpa.output) (deps (:input testfile-arrays040.ae)) @@ -112121,10 +109659,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays040.expected testfile-arrays040_fpa.output))) + (deps testfile-arrays040_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays040.expected testfile-arrays040_fpa.output))) (rule (target testfile-arrays039_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays039.ae)) @@ -112143,12 +109682,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays039.expected - testfile-arrays039_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays039_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays039.ae)) @@ -112169,12 +109707,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays039.expected - testfile-arrays039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays039.ae)) @@ -112194,12 +109731,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays039.expected - testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays039_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays039.ae)) @@ -112218,12 +109754,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays039.expected - testfile-arrays039_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays039_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays039.ae)) @@ -112242,12 +109777,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays039.expected - testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays039_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays039.ae)) @@ -112266,12 +109800,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays039.expected - testfile-arrays039_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays039_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays039_cdcl.output) (deps (:input testfile-arrays039.ae)) @@ -112289,10 +109822,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays039.expected testfile-arrays039_cdcl.output))) + (deps testfile-arrays039_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_cdcl.output))) (rule (target testfile-arrays039_tableaux_cdcl.output) (deps (:input testfile-arrays039.ae)) @@ -112310,12 +109844,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays039.expected - testfile-arrays039_tableaux_cdcl.output))) + (deps testfile-arrays039_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_tableaux_cdcl.output))) (rule (target testfile-arrays039_tableaux.output) (deps (:input testfile-arrays039.ae)) @@ -112333,10 +109866,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays039.expected testfile-arrays039_tableaux.output))) + (deps testfile-arrays039_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_tableaux.output))) (rule (target testfile-arrays039_legacy.output) (deps (:input testfile-arrays039.ae)) @@ -112353,10 +109887,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays039.expected testfile-arrays039_legacy.output))) + (deps testfile-arrays039_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_legacy.output))) (rule (target testfile-arrays039_dolmen.output) (deps (:input testfile-arrays039.ae)) @@ -112373,10 +109908,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays039.expected testfile-arrays039_dolmen.output))) + (deps testfile-arrays039_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_dolmen.output))) (rule (target testfile-arrays039_fpa.output) (deps (:input testfile-arrays039.ae)) @@ -112393,10 +109929,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays039.expected testfile-arrays039_fpa.output))) + (deps testfile-arrays039_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays039.expected testfile-arrays039_fpa.output))) (rule (target testfile-arrays038_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays038.ae)) @@ -112415,12 +109952,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays038.expected - testfile-arrays038_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays038_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays038.ae)) @@ -112441,12 +109977,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays038.expected - testfile-arrays038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays038.ae)) @@ -112466,12 +110001,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays038.expected - testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays038_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays038.ae)) @@ -112490,12 +110024,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays038.expected - testfile-arrays038_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays038_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays038.ae)) @@ -112514,12 +110047,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays038.expected - testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays038_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays038.ae)) @@ -112538,12 +110070,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays038.expected - testfile-arrays038_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays038_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays038_cdcl.output) (deps (:input testfile-arrays038.ae)) @@ -112561,10 +110092,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays038.expected testfile-arrays038_cdcl.output))) + (deps testfile-arrays038_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_cdcl.output))) (rule (target testfile-arrays038_tableaux_cdcl.output) (deps (:input testfile-arrays038.ae)) @@ -112582,12 +110114,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays038.expected - testfile-arrays038_tableaux_cdcl.output))) + (deps testfile-arrays038_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_tableaux_cdcl.output))) (rule (target testfile-arrays038_tableaux.output) (deps (:input testfile-arrays038.ae)) @@ -112605,10 +110136,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays038.expected testfile-arrays038_tableaux.output))) + (deps testfile-arrays038_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_tableaux.output))) (rule (target testfile-arrays038_legacy.output) (deps (:input testfile-arrays038.ae)) @@ -112625,10 +110157,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays038.expected testfile-arrays038_legacy.output))) + (deps testfile-arrays038_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_legacy.output))) (rule (target testfile-arrays038_dolmen.output) (deps (:input testfile-arrays038.ae)) @@ -112645,10 +110178,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays038.expected testfile-arrays038_dolmen.output))) + (deps testfile-arrays038_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_dolmen.output))) (rule (target testfile-arrays038_fpa.output) (deps (:input testfile-arrays038.ae)) @@ -112665,10 +110199,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays038.expected testfile-arrays038_fpa.output))) + (deps testfile-arrays038_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays038.expected testfile-arrays038_fpa.output))) (rule (target testfile-arrays037_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays037.ae)) @@ -112687,12 +110222,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays037.expected - testfile-arrays037_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays037_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays037.ae)) @@ -112713,12 +110247,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays037.expected - testfile-arrays037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays037.ae)) @@ -112738,12 +110271,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays037.expected - testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays037_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays037.ae)) @@ -112762,12 +110294,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays037.expected - testfile-arrays037_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays037_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays037.ae)) @@ -112786,12 +110317,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays037.expected - testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays037_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays037.ae)) @@ -112810,12 +110340,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays037.expected - testfile-arrays037_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays037_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays037_cdcl.output) (deps (:input testfile-arrays037.ae)) @@ -112833,10 +110362,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays037.expected testfile-arrays037_cdcl.output))) + (deps testfile-arrays037_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_cdcl.output))) (rule (target testfile-arrays037_tableaux_cdcl.output) (deps (:input testfile-arrays037.ae)) @@ -112854,12 +110384,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays037.expected - testfile-arrays037_tableaux_cdcl.output))) + (deps testfile-arrays037_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_tableaux_cdcl.output))) (rule (target testfile-arrays037_tableaux.output) (deps (:input testfile-arrays037.ae)) @@ -112877,10 +110406,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays037.expected testfile-arrays037_tableaux.output))) + (deps testfile-arrays037_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_tableaux.output))) (rule (target testfile-arrays037_legacy.output) (deps (:input testfile-arrays037.ae)) @@ -112897,10 +110427,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays037.expected testfile-arrays037_legacy.output))) + (deps testfile-arrays037_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_legacy.output))) (rule (target testfile-arrays037_dolmen.output) (deps (:input testfile-arrays037.ae)) @@ -112917,10 +110448,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays037.expected testfile-arrays037_dolmen.output))) + (deps testfile-arrays037_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_dolmen.output))) (rule (target testfile-arrays037_fpa.output) (deps (:input testfile-arrays037.ae)) @@ -112937,10 +110469,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays037.expected testfile-arrays037_fpa.output))) + (deps testfile-arrays037_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays037.expected testfile-arrays037_fpa.output))) (rule (target testfile-arrays036_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays036.ae)) @@ -112959,12 +110492,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays036.expected - testfile-arrays036_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays036_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays036.ae)) @@ -112985,12 +110517,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays036.expected - testfile-arrays036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays036.ae)) @@ -113010,12 +110541,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays036.expected - testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays036_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays036.ae)) @@ -113034,12 +110564,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays036.expected - testfile-arrays036_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays036_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays036.ae)) @@ -113058,12 +110587,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays036.expected - testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays036_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays036.ae)) @@ -113082,12 +110610,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays036.expected - testfile-arrays036_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays036_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays036_cdcl.output) (deps (:input testfile-arrays036.ae)) @@ -113105,10 +110632,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays036.expected testfile-arrays036_cdcl.output))) + (deps testfile-arrays036_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_cdcl.output))) (rule (target testfile-arrays036_tableaux_cdcl.output) (deps (:input testfile-arrays036.ae)) @@ -113126,12 +110654,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays036.expected - testfile-arrays036_tableaux_cdcl.output))) + (deps testfile-arrays036_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_tableaux_cdcl.output))) (rule (target testfile-arrays036_tableaux.output) (deps (:input testfile-arrays036.ae)) @@ -113149,10 +110676,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays036.expected testfile-arrays036_tableaux.output))) + (deps testfile-arrays036_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_tableaux.output))) (rule (target testfile-arrays036_legacy.output) (deps (:input testfile-arrays036.ae)) @@ -113169,10 +110697,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays036.expected testfile-arrays036_legacy.output))) + (deps testfile-arrays036_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_legacy.output))) (rule (target testfile-arrays036_dolmen.output) (deps (:input testfile-arrays036.ae)) @@ -113189,10 +110718,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays036.expected testfile-arrays036_dolmen.output))) + (deps testfile-arrays036_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_dolmen.output))) (rule (target testfile-arrays036_fpa.output) (deps (:input testfile-arrays036.ae)) @@ -113209,10 +110739,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays036.expected testfile-arrays036_fpa.output))) + (deps testfile-arrays036_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays036.expected testfile-arrays036_fpa.output))) (rule (target testfile-arrays035_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays035.ae)) @@ -113231,12 +110762,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays035.expected - testfile-arrays035_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays035_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays035.ae)) @@ -113257,12 +110787,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays035.expected - testfile-arrays035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays035.ae)) @@ -113282,12 +110811,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays035.expected - testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays035_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays035.ae)) @@ -113306,12 +110834,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays035.expected - testfile-arrays035_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays035_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays035.ae)) @@ -113330,12 +110857,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays035.expected - testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays035_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays035.ae)) @@ -113354,12 +110880,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays035.expected - testfile-arrays035_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays035_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays035_cdcl.output) (deps (:input testfile-arrays035.ae)) @@ -113377,10 +110902,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays035.expected testfile-arrays035_cdcl.output))) + (deps testfile-arrays035_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_cdcl.output))) (rule (target testfile-arrays035_tableaux_cdcl.output) (deps (:input testfile-arrays035.ae)) @@ -113398,12 +110924,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays035.expected - testfile-arrays035_tableaux_cdcl.output))) + (deps testfile-arrays035_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_tableaux_cdcl.output))) (rule (target testfile-arrays035_tableaux.output) (deps (:input testfile-arrays035.ae)) @@ -113421,10 +110946,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays035.expected testfile-arrays035_tableaux.output))) + (deps testfile-arrays035_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_tableaux.output))) (rule (target testfile-arrays035_legacy.output) (deps (:input testfile-arrays035.ae)) @@ -113441,10 +110967,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays035.expected testfile-arrays035_legacy.output))) + (deps testfile-arrays035_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_legacy.output))) (rule (target testfile-arrays035_dolmen.output) (deps (:input testfile-arrays035.ae)) @@ -113461,10 +110988,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays035.expected testfile-arrays035_dolmen.output))) + (deps testfile-arrays035_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_dolmen.output))) (rule (target testfile-arrays035_fpa.output) (deps (:input testfile-arrays035.ae)) @@ -113481,10 +111009,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays035.expected testfile-arrays035_fpa.output))) + (deps testfile-arrays035_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays035.expected testfile-arrays035_fpa.output))) (rule (target testfile-arrays034_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays034.ae)) @@ -113503,12 +111032,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays034.expected - testfile-arrays034_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays034_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays034.ae)) @@ -113529,12 +111057,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays034.expected - testfile-arrays034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays034.ae)) @@ -113554,12 +111081,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays034.expected - testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays034_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays034.ae)) @@ -113578,12 +111104,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays034.expected - testfile-arrays034_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays034_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays034.ae)) @@ -113602,12 +111127,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays034.expected - testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays034_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays034.ae)) @@ -113626,12 +111150,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays034.expected - testfile-arrays034_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays034_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays034_cdcl.output) (deps (:input testfile-arrays034.ae)) @@ -113649,10 +111172,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays034.expected testfile-arrays034_cdcl.output))) + (deps testfile-arrays034_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_cdcl.output))) (rule (target testfile-arrays034_tableaux_cdcl.output) (deps (:input testfile-arrays034.ae)) @@ -113670,12 +111194,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays034.expected - testfile-arrays034_tableaux_cdcl.output))) + (deps testfile-arrays034_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_tableaux_cdcl.output))) (rule (target testfile-arrays034_tableaux.output) (deps (:input testfile-arrays034.ae)) @@ -113693,10 +111216,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays034.expected testfile-arrays034_tableaux.output))) + (deps testfile-arrays034_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_tableaux.output))) (rule (target testfile-arrays034_legacy.output) (deps (:input testfile-arrays034.ae)) @@ -113713,10 +111237,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays034.expected testfile-arrays034_legacy.output))) + (deps testfile-arrays034_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_legacy.output))) (rule (target testfile-arrays034_dolmen.output) (deps (:input testfile-arrays034.ae)) @@ -113733,10 +111258,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays034.expected testfile-arrays034_dolmen.output))) + (deps testfile-arrays034_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_dolmen.output))) (rule (target testfile-arrays034_fpa.output) (deps (:input testfile-arrays034.ae)) @@ -113753,10 +111279,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays034.expected testfile-arrays034_fpa.output))) + (deps testfile-arrays034_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays034.expected testfile-arrays034_fpa.output))) (rule (target testfile-arrays033_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays033.ae)) @@ -113775,12 +111302,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays033.expected - testfile-arrays033_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays033_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays033.ae)) @@ -113801,12 +111327,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays033.expected - testfile-arrays033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays033.ae)) @@ -113826,12 +111351,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays033.expected - testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays033_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays033.ae)) @@ -113850,12 +111374,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays033.expected - testfile-arrays033_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays033_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays033.ae)) @@ -113874,12 +111397,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays033.expected - testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays033_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays033.ae)) @@ -113898,12 +111420,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays033.expected - testfile-arrays033_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays033_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays033_cdcl.output) (deps (:input testfile-arrays033.ae)) @@ -113921,10 +111442,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays033.expected testfile-arrays033_cdcl.output))) + (deps testfile-arrays033_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_cdcl.output))) (rule (target testfile-arrays033_tableaux_cdcl.output) (deps (:input testfile-arrays033.ae)) @@ -113942,12 +111464,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays033.expected - testfile-arrays033_tableaux_cdcl.output))) + (deps testfile-arrays033_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_tableaux_cdcl.output))) (rule (target testfile-arrays033_tableaux.output) (deps (:input testfile-arrays033.ae)) @@ -113965,10 +111486,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays033.expected testfile-arrays033_tableaux.output))) + (deps testfile-arrays033_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_tableaux.output))) (rule (target testfile-arrays033_legacy.output) (deps (:input testfile-arrays033.ae)) @@ -113985,10 +111507,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays033.expected testfile-arrays033_legacy.output))) + (deps testfile-arrays033_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_legacy.output))) (rule (target testfile-arrays033_dolmen.output) (deps (:input testfile-arrays033.ae)) @@ -114005,10 +111528,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays033.expected testfile-arrays033_dolmen.output))) + (deps testfile-arrays033_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_dolmen.output))) (rule (target testfile-arrays033_fpa.output) (deps (:input testfile-arrays033.ae)) @@ -114025,10 +111549,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays033.expected testfile-arrays033_fpa.output))) + (deps testfile-arrays033_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays033.expected testfile-arrays033_fpa.output))) (rule (target testfile-arrays032_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays032.ae)) @@ -114047,12 +111572,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays032.expected - testfile-arrays032_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays032_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays032.ae)) @@ -114073,12 +111597,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays032.expected - testfile-arrays032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays032.ae)) @@ -114098,12 +111621,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays032.expected - testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays032_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays032.ae)) @@ -114122,12 +111644,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays032.expected - testfile-arrays032_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays032_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays032.ae)) @@ -114146,12 +111667,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays032.expected - testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays032_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays032.ae)) @@ -114170,12 +111690,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays032.expected - testfile-arrays032_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays032_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays032_cdcl.output) (deps (:input testfile-arrays032.ae)) @@ -114193,10 +111712,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays032.expected testfile-arrays032_cdcl.output))) + (deps testfile-arrays032_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_cdcl.output))) (rule (target testfile-arrays032_tableaux_cdcl.output) (deps (:input testfile-arrays032.ae)) @@ -114214,12 +111734,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays032.expected - testfile-arrays032_tableaux_cdcl.output))) + (deps testfile-arrays032_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_tableaux_cdcl.output))) (rule (target testfile-arrays032_tableaux.output) (deps (:input testfile-arrays032.ae)) @@ -114237,10 +111756,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays032.expected testfile-arrays032_tableaux.output))) + (deps testfile-arrays032_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_tableaux.output))) (rule (target testfile-arrays032_legacy.output) (deps (:input testfile-arrays032.ae)) @@ -114257,10 +111777,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays032.expected testfile-arrays032_legacy.output))) + (deps testfile-arrays032_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_legacy.output))) (rule (target testfile-arrays032_dolmen.output) (deps (:input testfile-arrays032.ae)) @@ -114277,10 +111798,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays032.expected testfile-arrays032_dolmen.output))) + (deps testfile-arrays032_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_dolmen.output))) (rule (target testfile-arrays032_fpa.output) (deps (:input testfile-arrays032.ae)) @@ -114297,10 +111819,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays032.expected testfile-arrays032_fpa.output))) + (deps testfile-arrays032_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays032.expected testfile-arrays032_fpa.output))) (rule (target testfile-arrays031_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays031.ae)) @@ -114319,12 +111842,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays031.expected - testfile-arrays031_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays031_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays031.ae)) @@ -114345,12 +111867,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays031.expected - testfile-arrays031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays031.ae)) @@ -114370,12 +111891,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays031.expected - testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays031_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays031.ae)) @@ -114394,12 +111914,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays031.expected - testfile-arrays031_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays031_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays031.ae)) @@ -114418,12 +111937,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays031.expected - testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays031_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays031.ae)) @@ -114442,12 +111960,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays031.expected - testfile-arrays031_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays031_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays031_cdcl.output) (deps (:input testfile-arrays031.ae)) @@ -114465,10 +111982,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays031.expected testfile-arrays031_cdcl.output))) + (deps testfile-arrays031_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_cdcl.output))) (rule (target testfile-arrays031_tableaux_cdcl.output) (deps (:input testfile-arrays031.ae)) @@ -114486,12 +112004,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays031.expected - testfile-arrays031_tableaux_cdcl.output))) + (deps testfile-arrays031_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_tableaux_cdcl.output))) (rule (target testfile-arrays031_tableaux.output) (deps (:input testfile-arrays031.ae)) @@ -114509,10 +112026,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays031.expected testfile-arrays031_tableaux.output))) + (deps testfile-arrays031_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_tableaux.output))) (rule (target testfile-arrays031_legacy.output) (deps (:input testfile-arrays031.ae)) @@ -114529,10 +112047,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays031.expected testfile-arrays031_legacy.output))) + (deps testfile-arrays031_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_legacy.output))) (rule (target testfile-arrays031_dolmen.output) (deps (:input testfile-arrays031.ae)) @@ -114549,10 +112068,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays031.expected testfile-arrays031_dolmen.output))) + (deps testfile-arrays031_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_dolmen.output))) (rule (target testfile-arrays031_fpa.output) (deps (:input testfile-arrays031.ae)) @@ -114569,10 +112089,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays031.expected testfile-arrays031_fpa.output))) + (deps testfile-arrays031_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays031.expected testfile-arrays031_fpa.output))) (rule (target testfile-arrays030_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays030.ae)) @@ -114591,12 +112112,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays030.expected - testfile-arrays030_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays030_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays030.ae)) @@ -114617,12 +112137,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays030.expected - testfile-arrays030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays030.ae)) @@ -114642,12 +112161,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays030.expected - testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays030_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays030.ae)) @@ -114666,12 +112184,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays030.expected - testfile-arrays030_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays030_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays030.ae)) @@ -114690,12 +112207,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays030.expected - testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays030_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays030.ae)) @@ -114714,12 +112230,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays030.expected - testfile-arrays030_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays030_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays030_cdcl.output) (deps (:input testfile-arrays030.ae)) @@ -114737,10 +112252,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays030.expected testfile-arrays030_cdcl.output))) + (deps testfile-arrays030_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_cdcl.output))) (rule (target testfile-arrays030_tableaux_cdcl.output) (deps (:input testfile-arrays030.ae)) @@ -114758,12 +112274,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays030.expected - testfile-arrays030_tableaux_cdcl.output))) + (deps testfile-arrays030_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_tableaux_cdcl.output))) (rule (target testfile-arrays030_tableaux.output) (deps (:input testfile-arrays030.ae)) @@ -114781,10 +112296,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays030.expected testfile-arrays030_tableaux.output))) + (deps testfile-arrays030_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_tableaux.output))) (rule (target testfile-arrays030_legacy.output) (deps (:input testfile-arrays030.ae)) @@ -114801,10 +112317,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays030.expected testfile-arrays030_legacy.output))) + (deps testfile-arrays030_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_legacy.output))) (rule (target testfile-arrays030_dolmen.output) (deps (:input testfile-arrays030.ae)) @@ -114821,10 +112338,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays030.expected testfile-arrays030_dolmen.output))) + (deps testfile-arrays030_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_dolmen.output))) (rule (target testfile-arrays030_fpa.output) (deps (:input testfile-arrays030.ae)) @@ -114841,10 +112359,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays030.expected testfile-arrays030_fpa.output))) + (deps testfile-arrays030_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays030.expected testfile-arrays030_fpa.output))) (rule (target testfile-arrays029_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays029.ae)) @@ -114863,12 +112382,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays029.expected - testfile-arrays029_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays029_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays029.ae)) @@ -114889,12 +112407,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays029.expected - testfile-arrays029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays029.ae)) @@ -114914,12 +112431,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays029.expected - testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays029_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays029.ae)) @@ -114938,12 +112454,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays029.expected - testfile-arrays029_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays029_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays029.ae)) @@ -114962,12 +112477,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays029.expected - testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays029_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays029.ae)) @@ -114986,12 +112500,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays029.expected - testfile-arrays029_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays029_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays029_cdcl.output) (deps (:input testfile-arrays029.ae)) @@ -115009,10 +112522,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays029.expected testfile-arrays029_cdcl.output))) + (deps testfile-arrays029_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_cdcl.output))) (rule (target testfile-arrays029_tableaux_cdcl.output) (deps (:input testfile-arrays029.ae)) @@ -115030,12 +112544,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays029.expected - testfile-arrays029_tableaux_cdcl.output))) + (deps testfile-arrays029_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_tableaux_cdcl.output))) (rule (target testfile-arrays029_tableaux.output) (deps (:input testfile-arrays029.ae)) @@ -115053,10 +112566,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays029.expected testfile-arrays029_tableaux.output))) + (deps testfile-arrays029_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_tableaux.output))) (rule (target testfile-arrays029_legacy.output) (deps (:input testfile-arrays029.ae)) @@ -115073,10 +112587,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays029.expected testfile-arrays029_legacy.output))) + (deps testfile-arrays029_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_legacy.output))) (rule (target testfile-arrays029_dolmen.output) (deps (:input testfile-arrays029.ae)) @@ -115093,10 +112608,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays029.expected testfile-arrays029_dolmen.output))) + (deps testfile-arrays029_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_dolmen.output))) (rule (target testfile-arrays029_fpa.output) (deps (:input testfile-arrays029.ae)) @@ -115113,10 +112629,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays029.expected testfile-arrays029_fpa.output))) + (deps testfile-arrays029_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays029.expected testfile-arrays029_fpa.output))) (rule (target testfile-arrays028_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays028.ae)) @@ -115135,12 +112652,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays028.expected - testfile-arrays028_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays028_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays028.ae)) @@ -115161,12 +112677,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays028.expected - testfile-arrays028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays028.ae)) @@ -115186,12 +112701,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays028.expected - testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays028_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays028.ae)) @@ -115210,12 +112724,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays028.expected - testfile-arrays028_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays028_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays028.ae)) @@ -115234,12 +112747,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays028.expected - testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays028_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays028.ae)) @@ -115258,12 +112770,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays028.expected - testfile-arrays028_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays028_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays028_cdcl.output) (deps (:input testfile-arrays028.ae)) @@ -115281,10 +112792,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays028.expected testfile-arrays028_cdcl.output))) + (deps testfile-arrays028_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_cdcl.output))) (rule (target testfile-arrays028_tableaux_cdcl.output) (deps (:input testfile-arrays028.ae)) @@ -115302,12 +112814,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays028.expected - testfile-arrays028_tableaux_cdcl.output))) + (deps testfile-arrays028_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_tableaux_cdcl.output))) (rule (target testfile-arrays028_tableaux.output) (deps (:input testfile-arrays028.ae)) @@ -115325,10 +112836,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays028.expected testfile-arrays028_tableaux.output))) + (deps testfile-arrays028_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_tableaux.output))) (rule (target testfile-arrays028_legacy.output) (deps (:input testfile-arrays028.ae)) @@ -115345,10 +112857,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays028.expected testfile-arrays028_legacy.output))) + (deps testfile-arrays028_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_legacy.output))) (rule (target testfile-arrays028_dolmen.output) (deps (:input testfile-arrays028.ae)) @@ -115365,10 +112878,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays028.expected testfile-arrays028_dolmen.output))) + (deps testfile-arrays028_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_dolmen.output))) (rule (target testfile-arrays028_fpa.output) (deps (:input testfile-arrays028.ae)) @@ -115385,10 +112899,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays028.expected testfile-arrays028_fpa.output))) + (deps testfile-arrays028_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays028.expected testfile-arrays028_fpa.output))) (rule (target testfile-arrays027_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays027.ae)) @@ -115407,12 +112922,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays027.expected - testfile-arrays027_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays027_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays027.ae)) @@ -115433,12 +112947,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays027.expected - testfile-arrays027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays027.ae)) @@ -115458,12 +112971,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays027.expected - testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays027_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays027.ae)) @@ -115482,12 +112994,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays027.expected - testfile-arrays027_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays027_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays027.ae)) @@ -115506,12 +113017,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays027.expected - testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays027_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays027.ae)) @@ -115530,12 +113040,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays027.expected - testfile-arrays027_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays027_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays027_cdcl.output) (deps (:input testfile-arrays027.ae)) @@ -115553,10 +113062,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays027.expected testfile-arrays027_cdcl.output))) + (deps testfile-arrays027_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_cdcl.output))) (rule (target testfile-arrays027_tableaux_cdcl.output) (deps (:input testfile-arrays027.ae)) @@ -115574,12 +113084,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays027.expected - testfile-arrays027_tableaux_cdcl.output))) + (deps testfile-arrays027_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_tableaux_cdcl.output))) (rule (target testfile-arrays027_tableaux.output) (deps (:input testfile-arrays027.ae)) @@ -115597,10 +113106,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays027.expected testfile-arrays027_tableaux.output))) + (deps testfile-arrays027_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_tableaux.output))) (rule (target testfile-arrays027_legacy.output) (deps (:input testfile-arrays027.ae)) @@ -115617,10 +113127,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays027.expected testfile-arrays027_legacy.output))) + (deps testfile-arrays027_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_legacy.output))) (rule (target testfile-arrays027_dolmen.output) (deps (:input testfile-arrays027.ae)) @@ -115637,10 +113148,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays027.expected testfile-arrays027_dolmen.output))) + (deps testfile-arrays027_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_dolmen.output))) (rule (target testfile-arrays027_fpa.output) (deps (:input testfile-arrays027.ae)) @@ -115657,10 +113169,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays027.expected testfile-arrays027_fpa.output))) + (deps testfile-arrays027_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays027.expected testfile-arrays027_fpa.output))) (rule (target testfile-arrays026_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays026.ae)) @@ -115679,12 +113192,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays026.expected - testfile-arrays026_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays026_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays026.ae)) @@ -115705,12 +113217,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays026.expected - testfile-arrays026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays026.ae)) @@ -115730,12 +113241,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays026.expected - testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays026_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays026.ae)) @@ -115754,12 +113264,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays026.expected - testfile-arrays026_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays026_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays026.ae)) @@ -115778,12 +113287,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays026.expected - testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays026_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays026.ae)) @@ -115802,12 +113310,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays026.expected - testfile-arrays026_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays026_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays026_cdcl.output) (deps (:input testfile-arrays026.ae)) @@ -115825,10 +113332,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays026.expected testfile-arrays026_cdcl.output))) + (deps testfile-arrays026_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_cdcl.output))) (rule (target testfile-arrays026_tableaux_cdcl.output) (deps (:input testfile-arrays026.ae)) @@ -115846,12 +113354,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays026.expected - testfile-arrays026_tableaux_cdcl.output))) + (deps testfile-arrays026_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_tableaux_cdcl.output))) (rule (target testfile-arrays026_tableaux.output) (deps (:input testfile-arrays026.ae)) @@ -115869,10 +113376,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays026.expected testfile-arrays026_tableaux.output))) + (deps testfile-arrays026_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_tableaux.output))) (rule (target testfile-arrays026_legacy.output) (deps (:input testfile-arrays026.ae)) @@ -115889,10 +113397,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays026.expected testfile-arrays026_legacy.output))) + (deps testfile-arrays026_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_legacy.output))) (rule (target testfile-arrays026_dolmen.output) (deps (:input testfile-arrays026.ae)) @@ -115909,10 +113418,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays026.expected testfile-arrays026_dolmen.output))) + (deps testfile-arrays026_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_dolmen.output))) (rule (target testfile-arrays026_fpa.output) (deps (:input testfile-arrays026.ae)) @@ -115929,10 +113439,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays026.expected testfile-arrays026_fpa.output))) + (deps testfile-arrays026_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays026.expected testfile-arrays026_fpa.output))) (rule (target testfile-arrays025_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays025.ae)) @@ -115951,12 +113462,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays025.expected - testfile-arrays025_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays025_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays025.ae)) @@ -115977,12 +113487,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays025.expected - testfile-arrays025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays025.ae)) @@ -116002,12 +113511,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays025.expected - testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays025_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays025.ae)) @@ -116026,12 +113534,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays025.expected - testfile-arrays025_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays025_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays025.ae)) @@ -116050,12 +113557,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays025.expected - testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays025_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays025.ae)) @@ -116074,12 +113580,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays025.expected - testfile-arrays025_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays025_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays025_cdcl.output) (deps (:input testfile-arrays025.ae)) @@ -116097,10 +113602,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays025.expected testfile-arrays025_cdcl.output))) + (deps testfile-arrays025_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_cdcl.output))) (rule (target testfile-arrays025_tableaux_cdcl.output) (deps (:input testfile-arrays025.ae)) @@ -116118,12 +113624,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays025.expected - testfile-arrays025_tableaux_cdcl.output))) + (deps testfile-arrays025_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_tableaux_cdcl.output))) (rule (target testfile-arrays025_tableaux.output) (deps (:input testfile-arrays025.ae)) @@ -116141,10 +113646,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays025.expected testfile-arrays025_tableaux.output))) + (deps testfile-arrays025_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_tableaux.output))) (rule (target testfile-arrays025_legacy.output) (deps (:input testfile-arrays025.ae)) @@ -116161,10 +113667,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays025.expected testfile-arrays025_legacy.output))) + (deps testfile-arrays025_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_legacy.output))) (rule (target testfile-arrays025_dolmen.output) (deps (:input testfile-arrays025.ae)) @@ -116181,10 +113688,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays025.expected testfile-arrays025_dolmen.output))) + (deps testfile-arrays025_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_dolmen.output))) (rule (target testfile-arrays025_fpa.output) (deps (:input testfile-arrays025.ae)) @@ -116201,10 +113709,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays025.expected testfile-arrays025_fpa.output))) + (deps testfile-arrays025_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays025.expected testfile-arrays025_fpa.output))) (rule (target testfile-arrays024_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays024.ae)) @@ -116223,12 +113732,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays024.expected - testfile-arrays024_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays024_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays024.ae)) @@ -116249,12 +113757,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays024.expected - testfile-arrays024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays024.ae)) @@ -116274,12 +113781,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays024.expected - testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays024_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays024.ae)) @@ -116298,12 +113804,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays024.expected - testfile-arrays024_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays024_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays024.ae)) @@ -116322,12 +113827,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays024.expected - testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays024_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays024.ae)) @@ -116346,12 +113850,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays024.expected - testfile-arrays024_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays024_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays024_cdcl.output) (deps (:input testfile-arrays024.ae)) @@ -116369,10 +113872,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays024.expected testfile-arrays024_cdcl.output))) + (deps testfile-arrays024_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_cdcl.output))) (rule (target testfile-arrays024_tableaux_cdcl.output) (deps (:input testfile-arrays024.ae)) @@ -116390,12 +113894,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays024.expected - testfile-arrays024_tableaux_cdcl.output))) + (deps testfile-arrays024_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_tableaux_cdcl.output))) (rule (target testfile-arrays024_tableaux.output) (deps (:input testfile-arrays024.ae)) @@ -116413,10 +113916,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays024.expected testfile-arrays024_tableaux.output))) + (deps testfile-arrays024_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_tableaux.output))) (rule (target testfile-arrays024_legacy.output) (deps (:input testfile-arrays024.ae)) @@ -116433,10 +113937,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays024.expected testfile-arrays024_legacy.output))) + (deps testfile-arrays024_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_legacy.output))) (rule (target testfile-arrays024_dolmen.output) (deps (:input testfile-arrays024.ae)) @@ -116453,10 +113958,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays024.expected testfile-arrays024_dolmen.output))) + (deps testfile-arrays024_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_dolmen.output))) (rule (target testfile-arrays024_fpa.output) (deps (:input testfile-arrays024.ae)) @@ -116473,10 +113979,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays024.expected testfile-arrays024_fpa.output))) + (deps testfile-arrays024_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays024.expected testfile-arrays024_fpa.output))) (rule (target testfile-arrays023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays023.ae)) @@ -116495,12 +114002,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays023.expected - testfile-arrays023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays023.ae)) @@ -116521,12 +114027,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays023.expected - testfile-arrays023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays023.ae)) @@ -116546,12 +114051,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays023.expected - testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays023.ae)) @@ -116570,12 +114074,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays023.expected - testfile-arrays023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays023.ae)) @@ -116594,12 +114097,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays023.expected - testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays023.ae)) @@ -116618,12 +114120,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays023.expected - testfile-arrays023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays023_cdcl.output) (deps (:input testfile-arrays023.ae)) @@ -116641,10 +114142,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays023.expected testfile-arrays023_cdcl.output))) + (deps testfile-arrays023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_cdcl.output))) (rule (target testfile-arrays023_tableaux_cdcl.output) (deps (:input testfile-arrays023.ae)) @@ -116662,12 +114164,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays023.expected - testfile-arrays023_tableaux_cdcl.output))) + (deps testfile-arrays023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_tableaux_cdcl.output))) (rule (target testfile-arrays023_tableaux.output) (deps (:input testfile-arrays023.ae)) @@ -116685,10 +114186,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays023.expected testfile-arrays023_tableaux.output))) + (deps testfile-arrays023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_tableaux.output))) (rule (target testfile-arrays023_legacy.output) (deps (:input testfile-arrays023.ae)) @@ -116705,10 +114207,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays023.expected testfile-arrays023_legacy.output))) + (deps testfile-arrays023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_legacy.output))) (rule (target testfile-arrays023_dolmen.output) (deps (:input testfile-arrays023.ae)) @@ -116725,10 +114228,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays023.expected testfile-arrays023_dolmen.output))) + (deps testfile-arrays023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_dolmen.output))) (rule (target testfile-arrays023_fpa.output) (deps (:input testfile-arrays023.ae)) @@ -116745,10 +114249,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays023.expected testfile-arrays023_fpa.output))) + (deps testfile-arrays023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays023.expected testfile-arrays023_fpa.output))) (rule (target testfile-arrays022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays022.ae)) @@ -116767,12 +114272,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays022.expected - testfile-arrays022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays022.ae)) @@ -116793,12 +114297,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays022.expected - testfile-arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays022.ae)) @@ -116818,12 +114321,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays022.expected - testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays022.ae)) @@ -116842,12 +114344,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays022.expected - testfile-arrays022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays022.ae)) @@ -116866,12 +114367,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays022.expected - testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays022.ae)) @@ -116890,12 +114390,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays022.expected - testfile-arrays022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays022_cdcl.output) (deps (:input testfile-arrays022.ae)) @@ -116913,10 +114412,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays022.expected testfile-arrays022_cdcl.output))) + (deps testfile-arrays022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_cdcl.output))) (rule (target testfile-arrays022_tableaux_cdcl.output) (deps (:input testfile-arrays022.ae)) @@ -116934,12 +114434,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays022.expected - testfile-arrays022_tableaux_cdcl.output))) + (deps testfile-arrays022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_tableaux_cdcl.output))) (rule (target testfile-arrays022_tableaux.output) (deps (:input testfile-arrays022.ae)) @@ -116957,10 +114456,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays022.expected testfile-arrays022_tableaux.output))) + (deps testfile-arrays022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_tableaux.output))) (rule (target testfile-arrays022_legacy.output) (deps (:input testfile-arrays022.ae)) @@ -116977,10 +114477,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays022.expected testfile-arrays022_legacy.output))) + (deps testfile-arrays022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_legacy.output))) (rule (target testfile-arrays022_dolmen.output) (deps (:input testfile-arrays022.ae)) @@ -116997,10 +114498,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays022.expected testfile-arrays022_dolmen.output))) + (deps testfile-arrays022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_dolmen.output))) (rule (target testfile-arrays022_fpa.output) (deps (:input testfile-arrays022.ae)) @@ -117017,10 +114519,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays022.expected testfile-arrays022_fpa.output))) + (deps testfile-arrays022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays022.expected testfile-arrays022_fpa.output))) (rule (target testfile-arrays021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays021.ae)) @@ -117039,12 +114542,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays021.expected - testfile-arrays021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays021.ae)) @@ -117065,12 +114567,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays021.expected - testfile-arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays021.ae)) @@ -117090,12 +114591,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays021.expected - testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays021.ae)) @@ -117114,12 +114614,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays021.expected - testfile-arrays021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays021.ae)) @@ -117138,12 +114637,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays021.expected - testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays021.ae)) @@ -117162,12 +114660,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays021.expected - testfile-arrays021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays021_cdcl.output) (deps (:input testfile-arrays021.ae)) @@ -117185,10 +114682,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays021.expected testfile-arrays021_cdcl.output))) + (deps testfile-arrays021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_cdcl.output))) (rule (target testfile-arrays021_tableaux_cdcl.output) (deps (:input testfile-arrays021.ae)) @@ -117206,12 +114704,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays021.expected - testfile-arrays021_tableaux_cdcl.output))) + (deps testfile-arrays021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_tableaux_cdcl.output))) (rule (target testfile-arrays021_tableaux.output) (deps (:input testfile-arrays021.ae)) @@ -117229,10 +114726,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays021.expected testfile-arrays021_tableaux.output))) + (deps testfile-arrays021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_tableaux.output))) (rule (target testfile-arrays021_legacy.output) (deps (:input testfile-arrays021.ae)) @@ -117249,10 +114747,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays021.expected testfile-arrays021_legacy.output))) + (deps testfile-arrays021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_legacy.output))) (rule (target testfile-arrays021_dolmen.output) (deps (:input testfile-arrays021.ae)) @@ -117269,10 +114768,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays021.expected testfile-arrays021_dolmen.output))) + (deps testfile-arrays021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_dolmen.output))) (rule (target testfile-arrays021_fpa.output) (deps (:input testfile-arrays021.ae)) @@ -117289,10 +114789,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays021.expected testfile-arrays021_fpa.output))) + (deps testfile-arrays021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays021.expected testfile-arrays021_fpa.output))) (rule (target testfile-arrays020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays020.ae)) @@ -117311,12 +114812,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays020.expected - testfile-arrays020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays020.ae)) @@ -117337,12 +114837,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays020.expected - testfile-arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays020.ae)) @@ -117362,12 +114861,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays020.expected - testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays020.ae)) @@ -117386,12 +114884,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays020.expected - testfile-arrays020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays020.ae)) @@ -117410,12 +114907,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays020.expected - testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays020.ae)) @@ -117434,12 +114930,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays020.expected - testfile-arrays020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays020_cdcl.output) (deps (:input testfile-arrays020.ae)) @@ -117457,10 +114952,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays020.expected testfile-arrays020_cdcl.output))) + (deps testfile-arrays020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_cdcl.output))) (rule (target testfile-arrays020_tableaux_cdcl.output) (deps (:input testfile-arrays020.ae)) @@ -117478,12 +114974,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays020.expected - testfile-arrays020_tableaux_cdcl.output))) + (deps testfile-arrays020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_tableaux_cdcl.output))) (rule (target testfile-arrays020_tableaux.output) (deps (:input testfile-arrays020.ae)) @@ -117501,10 +114996,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays020.expected testfile-arrays020_tableaux.output))) + (deps testfile-arrays020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_tableaux.output))) (rule (target testfile-arrays020_legacy.output) (deps (:input testfile-arrays020.ae)) @@ -117521,10 +115017,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays020.expected testfile-arrays020_legacy.output))) + (deps testfile-arrays020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_legacy.output))) (rule (target testfile-arrays020_dolmen.output) (deps (:input testfile-arrays020.ae)) @@ -117541,10 +115038,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays020.expected testfile-arrays020_dolmen.output))) + (deps testfile-arrays020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_dolmen.output))) (rule (target testfile-arrays020_fpa.output) (deps (:input testfile-arrays020.ae)) @@ -117561,10 +115059,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays020.expected testfile-arrays020_fpa.output))) + (deps testfile-arrays020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays020.expected testfile-arrays020_fpa.output))) (rule (target testfile-arrays019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays019.ae)) @@ -117583,12 +115082,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays019.expected - testfile-arrays019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays019.ae)) @@ -117609,12 +115107,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays019.expected - testfile-arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays019.ae)) @@ -117634,12 +115131,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays019.expected - testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays019.ae)) @@ -117658,12 +115154,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays019.expected - testfile-arrays019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays019.ae)) @@ -117682,12 +115177,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays019.expected - testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays019.ae)) @@ -117706,12 +115200,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays019.expected - testfile-arrays019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays019_cdcl.output) (deps (:input testfile-arrays019.ae)) @@ -117729,10 +115222,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays019.expected testfile-arrays019_cdcl.output))) + (deps testfile-arrays019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_cdcl.output))) (rule (target testfile-arrays019_tableaux_cdcl.output) (deps (:input testfile-arrays019.ae)) @@ -117750,12 +115244,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays019.expected - testfile-arrays019_tableaux_cdcl.output))) + (deps testfile-arrays019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_tableaux_cdcl.output))) (rule (target testfile-arrays019_tableaux.output) (deps (:input testfile-arrays019.ae)) @@ -117773,10 +115266,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays019.expected testfile-arrays019_tableaux.output))) + (deps testfile-arrays019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_tableaux.output))) (rule (target testfile-arrays019_legacy.output) (deps (:input testfile-arrays019.ae)) @@ -117793,10 +115287,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays019.expected testfile-arrays019_legacy.output))) + (deps testfile-arrays019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_legacy.output))) (rule (target testfile-arrays019_dolmen.output) (deps (:input testfile-arrays019.ae)) @@ -117813,10 +115308,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays019.expected testfile-arrays019_dolmen.output))) + (deps testfile-arrays019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_dolmen.output))) (rule (target testfile-arrays019_fpa.output) (deps (:input testfile-arrays019.ae)) @@ -117833,10 +115329,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays019.expected testfile-arrays019_fpa.output))) + (deps testfile-arrays019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays019.expected testfile-arrays019_fpa.output))) (rule (target testfile-arrays018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays018.ae)) @@ -117855,12 +115352,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays018.expected - testfile-arrays018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays018.ae)) @@ -117881,12 +115377,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays018.expected - testfile-arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays018.ae)) @@ -117906,12 +115401,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays018.expected - testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays018.ae)) @@ -117930,12 +115424,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays018.expected - testfile-arrays018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays018.ae)) @@ -117954,12 +115447,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays018.expected - testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays018.ae)) @@ -117978,12 +115470,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays018.expected - testfile-arrays018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays018_cdcl.output) (deps (:input testfile-arrays018.ae)) @@ -118001,10 +115492,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays018.expected testfile-arrays018_cdcl.output))) + (deps testfile-arrays018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_cdcl.output))) (rule (target testfile-arrays018_tableaux_cdcl.output) (deps (:input testfile-arrays018.ae)) @@ -118022,12 +115514,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays018.expected - testfile-arrays018_tableaux_cdcl.output))) + (deps testfile-arrays018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_tableaux_cdcl.output))) (rule (target testfile-arrays018_tableaux.output) (deps (:input testfile-arrays018.ae)) @@ -118045,10 +115536,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays018.expected testfile-arrays018_tableaux.output))) + (deps testfile-arrays018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_tableaux.output))) (rule (target testfile-arrays018_legacy.output) (deps (:input testfile-arrays018.ae)) @@ -118065,10 +115557,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays018.expected testfile-arrays018_legacy.output))) + (deps testfile-arrays018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_legacy.output))) (rule (target testfile-arrays018_dolmen.output) (deps (:input testfile-arrays018.ae)) @@ -118085,10 +115578,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays018.expected testfile-arrays018_dolmen.output))) + (deps testfile-arrays018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_dolmen.output))) (rule (target testfile-arrays018_fpa.output) (deps (:input testfile-arrays018.ae)) @@ -118105,10 +115599,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays018.expected testfile-arrays018_fpa.output))) + (deps testfile-arrays018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays018.expected testfile-arrays018_fpa.output))) (rule (target testfile-arrays017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays017.ae)) @@ -118127,12 +115622,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays017.expected - testfile-arrays017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays017.ae)) @@ -118153,12 +115647,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays017.expected - testfile-arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays017.ae)) @@ -118178,12 +115671,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays017.expected - testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays017.ae)) @@ -118202,12 +115694,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays017.expected - testfile-arrays017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays017.ae)) @@ -118226,12 +115717,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays017.expected - testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays017.ae)) @@ -118250,12 +115740,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays017.expected - testfile-arrays017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays017_cdcl.output) (deps (:input testfile-arrays017.ae)) @@ -118273,10 +115762,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays017.expected testfile-arrays017_cdcl.output))) + (deps testfile-arrays017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_cdcl.output))) (rule (target testfile-arrays017_tableaux_cdcl.output) (deps (:input testfile-arrays017.ae)) @@ -118294,12 +115784,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays017.expected - testfile-arrays017_tableaux_cdcl.output))) + (deps testfile-arrays017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_tableaux_cdcl.output))) (rule (target testfile-arrays017_tableaux.output) (deps (:input testfile-arrays017.ae)) @@ -118317,10 +115806,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays017.expected testfile-arrays017_tableaux.output))) + (deps testfile-arrays017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_tableaux.output))) (rule (target testfile-arrays017_legacy.output) (deps (:input testfile-arrays017.ae)) @@ -118337,10 +115827,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays017.expected testfile-arrays017_legacy.output))) + (deps testfile-arrays017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_legacy.output))) (rule (target testfile-arrays017_dolmen.output) (deps (:input testfile-arrays017.ae)) @@ -118357,10 +115848,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays017.expected testfile-arrays017_dolmen.output))) + (deps testfile-arrays017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_dolmen.output))) (rule (target testfile-arrays017_fpa.output) (deps (:input testfile-arrays017.ae)) @@ -118377,10 +115869,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays017.expected testfile-arrays017_fpa.output))) + (deps testfile-arrays017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays017.expected testfile-arrays017_fpa.output))) (rule (target testfile-arrays016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays016.ae)) @@ -118399,12 +115892,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays016.expected - testfile-arrays016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays016.ae)) @@ -118425,12 +115917,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays016.expected - testfile-arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays016.ae)) @@ -118450,12 +115941,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays016.expected - testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays016.ae)) @@ -118474,12 +115964,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays016.expected - testfile-arrays016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays016.ae)) @@ -118498,12 +115987,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays016.expected - testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays016.ae)) @@ -118522,12 +116010,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays016.expected - testfile-arrays016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays016_cdcl.output) (deps (:input testfile-arrays016.ae)) @@ -118545,10 +116032,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays016.expected testfile-arrays016_cdcl.output))) + (deps testfile-arrays016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_cdcl.output))) (rule (target testfile-arrays016_tableaux_cdcl.output) (deps (:input testfile-arrays016.ae)) @@ -118566,12 +116054,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays016.expected - testfile-arrays016_tableaux_cdcl.output))) + (deps testfile-arrays016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_tableaux_cdcl.output))) (rule (target testfile-arrays016_tableaux.output) (deps (:input testfile-arrays016.ae)) @@ -118589,10 +116076,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays016.expected testfile-arrays016_tableaux.output))) + (deps testfile-arrays016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_tableaux.output))) (rule (target testfile-arrays016_legacy.output) (deps (:input testfile-arrays016.ae)) @@ -118609,10 +116097,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays016.expected testfile-arrays016_legacy.output))) + (deps testfile-arrays016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_legacy.output))) (rule (target testfile-arrays016_dolmen.output) (deps (:input testfile-arrays016.ae)) @@ -118629,10 +116118,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays016.expected testfile-arrays016_dolmen.output))) + (deps testfile-arrays016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_dolmen.output))) (rule (target testfile-arrays016_fpa.output) (deps (:input testfile-arrays016.ae)) @@ -118649,10 +116139,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays016.expected testfile-arrays016_fpa.output))) + (deps testfile-arrays016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays016.expected testfile-arrays016_fpa.output))) (rule (target testfile-arrays015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays015.ae)) @@ -118671,12 +116162,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays015.expected - testfile-arrays015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays015.ae)) @@ -118697,12 +116187,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays015.expected - testfile-arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays015.ae)) @@ -118722,12 +116211,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays015.expected - testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays015.ae)) @@ -118746,12 +116234,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays015.expected - testfile-arrays015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays015.ae)) @@ -118770,12 +116257,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays015.expected - testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays015.ae)) @@ -118794,12 +116280,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays015.expected - testfile-arrays015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays015_cdcl.output) (deps (:input testfile-arrays015.ae)) @@ -118817,10 +116302,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays015.expected testfile-arrays015_cdcl.output))) + (deps testfile-arrays015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_cdcl.output))) (rule (target testfile-arrays015_tableaux_cdcl.output) (deps (:input testfile-arrays015.ae)) @@ -118838,12 +116324,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays015.expected - testfile-arrays015_tableaux_cdcl.output))) + (deps testfile-arrays015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_tableaux_cdcl.output))) (rule (target testfile-arrays015_tableaux.output) (deps (:input testfile-arrays015.ae)) @@ -118861,10 +116346,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays015.expected testfile-arrays015_tableaux.output))) + (deps testfile-arrays015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_tableaux.output))) (rule (target testfile-arrays015_legacy.output) (deps (:input testfile-arrays015.ae)) @@ -118881,10 +116367,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays015.expected testfile-arrays015_legacy.output))) + (deps testfile-arrays015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_legacy.output))) (rule (target testfile-arrays015_dolmen.output) (deps (:input testfile-arrays015.ae)) @@ -118901,10 +116388,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays015.expected testfile-arrays015_dolmen.output))) + (deps testfile-arrays015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_dolmen.output))) (rule (target testfile-arrays015_fpa.output) (deps (:input testfile-arrays015.ae)) @@ -118921,10 +116409,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays015.expected testfile-arrays015_fpa.output))) + (deps testfile-arrays015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays015.expected testfile-arrays015_fpa.output))) (rule (target testfile-arrays014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays014.ae)) @@ -118943,12 +116432,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays014.expected - testfile-arrays014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays014.ae)) @@ -118969,12 +116457,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays014.expected - testfile-arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays014.ae)) @@ -118994,12 +116481,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays014.expected - testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays014.ae)) @@ -119018,12 +116504,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays014.expected - testfile-arrays014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays014.ae)) @@ -119042,12 +116527,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays014.expected - testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays014.ae)) @@ -119066,12 +116550,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays014.expected - testfile-arrays014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays014_cdcl.output) (deps (:input testfile-arrays014.ae)) @@ -119089,10 +116572,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays014.expected testfile-arrays014_cdcl.output))) + (deps testfile-arrays014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_cdcl.output))) (rule (target testfile-arrays014_tableaux_cdcl.output) (deps (:input testfile-arrays014.ae)) @@ -119110,12 +116594,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays014.expected - testfile-arrays014_tableaux_cdcl.output))) + (deps testfile-arrays014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_tableaux_cdcl.output))) (rule (target testfile-arrays014_tableaux.output) (deps (:input testfile-arrays014.ae)) @@ -119133,10 +116616,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays014.expected testfile-arrays014_tableaux.output))) + (deps testfile-arrays014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_tableaux.output))) (rule (target testfile-arrays014_legacy.output) (deps (:input testfile-arrays014.ae)) @@ -119153,10 +116637,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays014.expected testfile-arrays014_legacy.output))) + (deps testfile-arrays014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_legacy.output))) (rule (target testfile-arrays014_dolmen.output) (deps (:input testfile-arrays014.ae)) @@ -119173,10 +116658,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays014.expected testfile-arrays014_dolmen.output))) + (deps testfile-arrays014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_dolmen.output))) (rule (target testfile-arrays014_fpa.output) (deps (:input testfile-arrays014.ae)) @@ -119193,10 +116679,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays014.expected testfile-arrays014_fpa.output))) + (deps testfile-arrays014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays014.expected testfile-arrays014_fpa.output))) (rule (target testfile-arrays013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays013.ae)) @@ -119215,12 +116702,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays013.expected - testfile-arrays013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays013.ae)) @@ -119241,12 +116727,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays013.expected - testfile-arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays013.ae)) @@ -119266,12 +116751,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays013.expected - testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays013.ae)) @@ -119290,12 +116774,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays013.expected - testfile-arrays013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays013.ae)) @@ -119314,12 +116797,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays013.expected - testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays013.ae)) @@ -119338,12 +116820,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays013.expected - testfile-arrays013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays013_cdcl.output) (deps (:input testfile-arrays013.ae)) @@ -119361,10 +116842,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays013.expected testfile-arrays013_cdcl.output))) + (deps testfile-arrays013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_cdcl.output))) (rule (target testfile-arrays013_tableaux_cdcl.output) (deps (:input testfile-arrays013.ae)) @@ -119382,12 +116864,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays013.expected - testfile-arrays013_tableaux_cdcl.output))) + (deps testfile-arrays013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_tableaux_cdcl.output))) (rule (target testfile-arrays013_tableaux.output) (deps (:input testfile-arrays013.ae)) @@ -119405,10 +116886,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays013.expected testfile-arrays013_tableaux.output))) + (deps testfile-arrays013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_tableaux.output))) (rule (target testfile-arrays013_legacy.output) (deps (:input testfile-arrays013.ae)) @@ -119425,10 +116907,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays013.expected testfile-arrays013_legacy.output))) + (deps testfile-arrays013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_legacy.output))) (rule (target testfile-arrays013_dolmen.output) (deps (:input testfile-arrays013.ae)) @@ -119445,10 +116928,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays013.expected testfile-arrays013_dolmen.output))) + (deps testfile-arrays013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_dolmen.output))) (rule (target testfile-arrays013_fpa.output) (deps (:input testfile-arrays013.ae)) @@ -119465,10 +116949,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays013.expected testfile-arrays013_fpa.output))) + (deps testfile-arrays013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays013.expected testfile-arrays013_fpa.output))) (rule (target testfile-arrays012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays012.ae)) @@ -119487,12 +116972,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays012.expected - testfile-arrays012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays012.ae)) @@ -119513,12 +116997,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays012.expected - testfile-arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays012.ae)) @@ -119538,12 +117021,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays012.expected - testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays012.ae)) @@ -119562,12 +117044,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays012.expected - testfile-arrays012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays012.ae)) @@ -119586,12 +117067,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays012.expected - testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays012.ae)) @@ -119610,12 +117090,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays012.expected - testfile-arrays012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays012_cdcl.output) (deps (:input testfile-arrays012.ae)) @@ -119633,10 +117112,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays012.expected testfile-arrays012_cdcl.output))) + (deps testfile-arrays012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_cdcl.output))) (rule (target testfile-arrays012_tableaux_cdcl.output) (deps (:input testfile-arrays012.ae)) @@ -119654,12 +117134,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays012.expected - testfile-arrays012_tableaux_cdcl.output))) + (deps testfile-arrays012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_tableaux_cdcl.output))) (rule (target testfile-arrays012_tableaux.output) (deps (:input testfile-arrays012.ae)) @@ -119677,10 +117156,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays012.expected testfile-arrays012_tableaux.output))) + (deps testfile-arrays012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_tableaux.output))) (rule (target testfile-arrays012_legacy.output) (deps (:input testfile-arrays012.ae)) @@ -119697,10 +117177,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays012.expected testfile-arrays012_legacy.output))) + (deps testfile-arrays012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_legacy.output))) (rule (target testfile-arrays012_dolmen.output) (deps (:input testfile-arrays012.ae)) @@ -119717,10 +117198,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays012.expected testfile-arrays012_dolmen.output))) + (deps testfile-arrays012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_dolmen.output))) (rule (target testfile-arrays012_fpa.output) (deps (:input testfile-arrays012.ae)) @@ -119737,10 +117219,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays012.expected testfile-arrays012_fpa.output))) + (deps testfile-arrays012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays012.expected testfile-arrays012_fpa.output))) (rule (target testfile-arrays011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays011.ae)) @@ -119759,12 +117242,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays011.expected - testfile-arrays011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays011.ae)) @@ -119785,12 +117267,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays011.expected - testfile-arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays011.ae)) @@ -119810,12 +117291,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays011.expected - testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays011.ae)) @@ -119834,12 +117314,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays011.expected - testfile-arrays011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays011.ae)) @@ -119858,12 +117337,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays011.expected - testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays011.ae)) @@ -119882,12 +117360,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays011.expected - testfile-arrays011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays011_cdcl.output) (deps (:input testfile-arrays011.ae)) @@ -119905,10 +117382,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays011.expected testfile-arrays011_cdcl.output))) + (deps testfile-arrays011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_cdcl.output))) (rule (target testfile-arrays011_tableaux_cdcl.output) (deps (:input testfile-arrays011.ae)) @@ -119926,12 +117404,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays011.expected - testfile-arrays011_tableaux_cdcl.output))) + (deps testfile-arrays011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_tableaux_cdcl.output))) (rule (target testfile-arrays011_tableaux.output) (deps (:input testfile-arrays011.ae)) @@ -119949,10 +117426,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays011.expected testfile-arrays011_tableaux.output))) + (deps testfile-arrays011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_tableaux.output))) (rule (target testfile-arrays011_legacy.output) (deps (:input testfile-arrays011.ae)) @@ -119969,10 +117447,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays011.expected testfile-arrays011_legacy.output))) + (deps testfile-arrays011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_legacy.output))) (rule (target testfile-arrays011_dolmen.output) (deps (:input testfile-arrays011.ae)) @@ -119989,10 +117468,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays011.expected testfile-arrays011_dolmen.output))) + (deps testfile-arrays011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_dolmen.output))) (rule (target testfile-arrays011_fpa.output) (deps (:input testfile-arrays011.ae)) @@ -120009,10 +117489,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays011.expected testfile-arrays011_fpa.output))) + (deps testfile-arrays011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays011.expected testfile-arrays011_fpa.output))) (rule (target testfile-arrays010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays010.ae)) @@ -120031,12 +117512,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays010.expected - testfile-arrays010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays010.ae)) @@ -120057,12 +117537,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays010.expected - testfile-arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays010.ae)) @@ -120082,12 +117561,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays010.expected - testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays010.ae)) @@ -120106,12 +117584,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays010.expected - testfile-arrays010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays010.ae)) @@ -120130,12 +117607,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays010.expected - testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays010.ae)) @@ -120154,12 +117630,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays010.expected - testfile-arrays010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays010_cdcl.output) (deps (:input testfile-arrays010.ae)) @@ -120177,10 +117652,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays010.expected testfile-arrays010_cdcl.output))) + (deps testfile-arrays010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_cdcl.output))) (rule (target testfile-arrays010_tableaux_cdcl.output) (deps (:input testfile-arrays010.ae)) @@ -120198,12 +117674,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays010.expected - testfile-arrays010_tableaux_cdcl.output))) + (deps testfile-arrays010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_tableaux_cdcl.output))) (rule (target testfile-arrays010_tableaux.output) (deps (:input testfile-arrays010.ae)) @@ -120221,10 +117696,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays010.expected testfile-arrays010_tableaux.output))) + (deps testfile-arrays010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_tableaux.output))) (rule (target testfile-arrays010_legacy.output) (deps (:input testfile-arrays010.ae)) @@ -120241,10 +117717,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays010.expected testfile-arrays010_legacy.output))) + (deps testfile-arrays010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_legacy.output))) (rule (target testfile-arrays010_dolmen.output) (deps (:input testfile-arrays010.ae)) @@ -120261,10 +117738,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays010.expected testfile-arrays010_dolmen.output))) + (deps testfile-arrays010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_dolmen.output))) (rule (target testfile-arrays010_fpa.output) (deps (:input testfile-arrays010.ae)) @@ -120281,10 +117759,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays010.expected testfile-arrays010_fpa.output))) + (deps testfile-arrays010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays010.expected testfile-arrays010_fpa.output))) (rule (target testfile-arrays009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays009.ae)) @@ -120303,12 +117782,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays009.expected - testfile-arrays009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays009.ae)) @@ -120329,12 +117807,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays009.expected - testfile-arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays009.ae)) @@ -120354,12 +117831,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays009.expected - testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays009.ae)) @@ -120378,12 +117854,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays009.expected - testfile-arrays009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays009.ae)) @@ -120402,12 +117877,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays009.expected - testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays009.ae)) @@ -120426,12 +117900,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays009.expected - testfile-arrays009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays009_cdcl.output) (deps (:input testfile-arrays009.ae)) @@ -120449,10 +117922,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays009.expected testfile-arrays009_cdcl.output))) + (deps testfile-arrays009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_cdcl.output))) (rule (target testfile-arrays009_tableaux_cdcl.output) (deps (:input testfile-arrays009.ae)) @@ -120470,12 +117944,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays009.expected - testfile-arrays009_tableaux_cdcl.output))) + (deps testfile-arrays009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_tableaux_cdcl.output))) (rule (target testfile-arrays009_tableaux.output) (deps (:input testfile-arrays009.ae)) @@ -120493,10 +117966,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays009.expected testfile-arrays009_tableaux.output))) + (deps testfile-arrays009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_tableaux.output))) (rule (target testfile-arrays009_legacy.output) (deps (:input testfile-arrays009.ae)) @@ -120513,10 +117987,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays009.expected testfile-arrays009_legacy.output))) + (deps testfile-arrays009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_legacy.output))) (rule (target testfile-arrays009_dolmen.output) (deps (:input testfile-arrays009.ae)) @@ -120533,10 +118008,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays009.expected testfile-arrays009_dolmen.output))) + (deps testfile-arrays009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_dolmen.output))) (rule (target testfile-arrays009_fpa.output) (deps (:input testfile-arrays009.ae)) @@ -120553,10 +118029,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays009.expected testfile-arrays009_fpa.output))) + (deps testfile-arrays009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays009.expected testfile-arrays009_fpa.output))) (rule (target testfile-arrays008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays008.ae)) @@ -120575,12 +118052,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays008.expected - testfile-arrays008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays008.ae)) @@ -120601,12 +118077,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays008.expected - testfile-arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays008.ae)) @@ -120626,12 +118101,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays008.expected - testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays008.ae)) @@ -120650,12 +118124,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays008.expected - testfile-arrays008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays008.ae)) @@ -120674,12 +118147,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays008.expected - testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays008.ae)) @@ -120698,12 +118170,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays008.expected - testfile-arrays008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays008_cdcl.output) (deps (:input testfile-arrays008.ae)) @@ -120721,10 +118192,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays008.expected testfile-arrays008_cdcl.output))) + (deps testfile-arrays008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_cdcl.output))) (rule (target testfile-arrays008_tableaux_cdcl.output) (deps (:input testfile-arrays008.ae)) @@ -120742,12 +118214,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays008.expected - testfile-arrays008_tableaux_cdcl.output))) + (deps testfile-arrays008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_tableaux_cdcl.output))) (rule (target testfile-arrays008_tableaux.output) (deps (:input testfile-arrays008.ae)) @@ -120765,10 +118236,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays008.expected testfile-arrays008_tableaux.output))) + (deps testfile-arrays008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_tableaux.output))) (rule (target testfile-arrays008_legacy.output) (deps (:input testfile-arrays008.ae)) @@ -120785,10 +118257,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays008.expected testfile-arrays008_legacy.output))) + (deps testfile-arrays008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_legacy.output))) (rule (target testfile-arrays008_dolmen.output) (deps (:input testfile-arrays008.ae)) @@ -120805,10 +118278,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays008.expected testfile-arrays008_dolmen.output))) + (deps testfile-arrays008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_dolmen.output))) (rule (target testfile-arrays008_fpa.output) (deps (:input testfile-arrays008.ae)) @@ -120825,10 +118299,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays008.expected testfile-arrays008_fpa.output))) + (deps testfile-arrays008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays008.expected testfile-arrays008_fpa.output))) (rule (target testfile-arrays007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays007.ae)) @@ -120847,12 +118322,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays007.expected - testfile-arrays007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays007.ae)) @@ -120873,12 +118347,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays007.expected - testfile-arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays007.ae)) @@ -120898,12 +118371,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays007.expected - testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays007.ae)) @@ -120922,12 +118394,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays007.expected - testfile-arrays007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays007.ae)) @@ -120946,12 +118417,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays007.expected - testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays007.ae)) @@ -120970,12 +118440,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays007.expected - testfile-arrays007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays007_cdcl.output) (deps (:input testfile-arrays007.ae)) @@ -120993,10 +118462,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays007.expected testfile-arrays007_cdcl.output))) + (deps testfile-arrays007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_cdcl.output))) (rule (target testfile-arrays007_tableaux_cdcl.output) (deps (:input testfile-arrays007.ae)) @@ -121014,12 +118484,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays007.expected - testfile-arrays007_tableaux_cdcl.output))) + (deps testfile-arrays007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_tableaux_cdcl.output))) (rule (target testfile-arrays007_tableaux.output) (deps (:input testfile-arrays007.ae)) @@ -121037,10 +118506,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays007.expected testfile-arrays007_tableaux.output))) + (deps testfile-arrays007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_tableaux.output))) (rule (target testfile-arrays007_legacy.output) (deps (:input testfile-arrays007.ae)) @@ -121057,10 +118527,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays007.expected testfile-arrays007_legacy.output))) + (deps testfile-arrays007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_legacy.output))) (rule (target testfile-arrays007_dolmen.output) (deps (:input testfile-arrays007.ae)) @@ -121077,10 +118548,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays007.expected testfile-arrays007_dolmen.output))) + (deps testfile-arrays007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_dolmen.output))) (rule (target testfile-arrays007_fpa.output) (deps (:input testfile-arrays007.ae)) @@ -121097,10 +118569,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays007.expected testfile-arrays007_fpa.output))) + (deps testfile-arrays007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays007.expected testfile-arrays007_fpa.output))) (rule (target testfile-arrays006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays006.ae)) @@ -121119,12 +118592,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays006.expected - testfile-arrays006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays006.ae)) @@ -121145,12 +118617,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays006.expected - testfile-arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays006.ae)) @@ -121170,12 +118641,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays006.expected - testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays006.ae)) @@ -121194,12 +118664,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays006.expected - testfile-arrays006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays006.ae)) @@ -121218,12 +118687,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays006.expected - testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays006.ae)) @@ -121242,12 +118710,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays006.expected - testfile-arrays006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays006_cdcl.output) (deps (:input testfile-arrays006.ae)) @@ -121265,10 +118732,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays006.expected testfile-arrays006_cdcl.output))) + (deps testfile-arrays006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_cdcl.output))) (rule (target testfile-arrays006_tableaux_cdcl.output) (deps (:input testfile-arrays006.ae)) @@ -121286,12 +118754,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays006.expected - testfile-arrays006_tableaux_cdcl.output))) + (deps testfile-arrays006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_tableaux_cdcl.output))) (rule (target testfile-arrays006_tableaux.output) (deps (:input testfile-arrays006.ae)) @@ -121309,10 +118776,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays006.expected testfile-arrays006_tableaux.output))) + (deps testfile-arrays006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_tableaux.output))) (rule (target testfile-arrays006_legacy.output) (deps (:input testfile-arrays006.ae)) @@ -121329,10 +118797,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays006.expected testfile-arrays006_legacy.output))) + (deps testfile-arrays006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_legacy.output))) (rule (target testfile-arrays006_dolmen.output) (deps (:input testfile-arrays006.ae)) @@ -121349,10 +118818,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays006.expected testfile-arrays006_dolmen.output))) + (deps testfile-arrays006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_dolmen.output))) (rule (target testfile-arrays006_fpa.output) (deps (:input testfile-arrays006.ae)) @@ -121369,10 +118839,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays006.expected testfile-arrays006_fpa.output))) + (deps testfile-arrays006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays006.expected testfile-arrays006_fpa.output))) (rule (target testfile-arrays005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays005.ae)) @@ -121391,12 +118862,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays005.expected - testfile-arrays005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays005.ae)) @@ -121417,12 +118887,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays005.expected - testfile-arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays005.ae)) @@ -121442,12 +118911,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays005.expected - testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays005.ae)) @@ -121466,12 +118934,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays005.expected - testfile-arrays005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays005.ae)) @@ -121490,12 +118957,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays005.expected - testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays005.ae)) @@ -121514,12 +118980,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays005.expected - testfile-arrays005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays005_cdcl.output) (deps (:input testfile-arrays005.ae)) @@ -121537,10 +119002,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays005.expected testfile-arrays005_cdcl.output))) + (deps testfile-arrays005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_cdcl.output))) (rule (target testfile-arrays005_tableaux_cdcl.output) (deps (:input testfile-arrays005.ae)) @@ -121558,12 +119024,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays005.expected - testfile-arrays005_tableaux_cdcl.output))) + (deps testfile-arrays005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_tableaux_cdcl.output))) (rule (target testfile-arrays005_tableaux.output) (deps (:input testfile-arrays005.ae)) @@ -121581,10 +119046,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays005.expected testfile-arrays005_tableaux.output))) + (deps testfile-arrays005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_tableaux.output))) (rule (target testfile-arrays005_legacy.output) (deps (:input testfile-arrays005.ae)) @@ -121601,10 +119067,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays005.expected testfile-arrays005_legacy.output))) + (deps testfile-arrays005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_legacy.output))) (rule (target testfile-arrays005_dolmen.output) (deps (:input testfile-arrays005.ae)) @@ -121621,10 +119088,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays005.expected testfile-arrays005_dolmen.output))) + (deps testfile-arrays005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_dolmen.output))) (rule (target testfile-arrays005_fpa.output) (deps (:input testfile-arrays005.ae)) @@ -121641,10 +119109,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays005.expected testfile-arrays005_fpa.output))) + (deps testfile-arrays005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays005.expected testfile-arrays005_fpa.output))) (rule (target testfile-arrays004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays004.ae)) @@ -121663,12 +119132,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays004.expected - testfile-arrays004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays004.ae)) @@ -121689,12 +119157,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays004.expected - testfile-arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays004.ae)) @@ -121714,12 +119181,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays004.expected - testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays004.ae)) @@ -121738,12 +119204,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays004.expected - testfile-arrays004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays004.ae)) @@ -121762,12 +119227,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays004.expected - testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays004.ae)) @@ -121786,12 +119250,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays004.expected - testfile-arrays004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays004_cdcl.output) (deps (:input testfile-arrays004.ae)) @@ -121809,10 +119272,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays004.expected testfile-arrays004_cdcl.output))) + (deps testfile-arrays004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_cdcl.output))) (rule (target testfile-arrays004_tableaux_cdcl.output) (deps (:input testfile-arrays004.ae)) @@ -121830,12 +119294,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays004.expected - testfile-arrays004_tableaux_cdcl.output))) + (deps testfile-arrays004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_tableaux_cdcl.output))) (rule (target testfile-arrays004_tableaux.output) (deps (:input testfile-arrays004.ae)) @@ -121853,10 +119316,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays004.expected testfile-arrays004_tableaux.output))) + (deps testfile-arrays004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_tableaux.output))) (rule (target testfile-arrays004_legacy.output) (deps (:input testfile-arrays004.ae)) @@ -121873,10 +119337,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays004.expected testfile-arrays004_legacy.output))) + (deps testfile-arrays004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_legacy.output))) (rule (target testfile-arrays004_dolmen.output) (deps (:input testfile-arrays004.ae)) @@ -121893,10 +119358,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays004.expected testfile-arrays004_dolmen.output))) + (deps testfile-arrays004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_dolmen.output))) (rule (target testfile-arrays004_fpa.output) (deps (:input testfile-arrays004.ae)) @@ -121913,10 +119379,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays004.expected testfile-arrays004_fpa.output))) + (deps testfile-arrays004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays004.expected testfile-arrays004_fpa.output))) (rule (target testfile-arrays003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays003.ae)) @@ -121935,12 +119402,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays003.expected - testfile-arrays003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays003.ae)) @@ -121961,12 +119427,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays003.expected - testfile-arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays003.ae)) @@ -121986,12 +119451,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays003.expected - testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays003.ae)) @@ -122010,12 +119474,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays003.expected - testfile-arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays003.ae)) @@ -122034,12 +119497,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays003.expected - testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays003.ae)) @@ -122058,12 +119520,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays003.expected - testfile-arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays003_cdcl.output) (deps (:input testfile-arrays003.ae)) @@ -122081,10 +119542,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays003.expected testfile-arrays003_cdcl.output))) + (deps testfile-arrays003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_cdcl.output))) (rule (target testfile-arrays003_tableaux_cdcl.output) (deps (:input testfile-arrays003.ae)) @@ -122102,12 +119564,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays003.expected - testfile-arrays003_tableaux_cdcl.output))) + (deps testfile-arrays003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_tableaux_cdcl.output))) (rule (target testfile-arrays003_tableaux.output) (deps (:input testfile-arrays003.ae)) @@ -122125,10 +119586,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays003.expected testfile-arrays003_tableaux.output))) + (deps testfile-arrays003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_tableaux.output))) (rule (target testfile-arrays003_legacy.output) (deps (:input testfile-arrays003.ae)) @@ -122145,10 +119607,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays003.expected testfile-arrays003_legacy.output))) + (deps testfile-arrays003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_legacy.output))) (rule (target testfile-arrays003_dolmen.output) (deps (:input testfile-arrays003.ae)) @@ -122165,10 +119628,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays003.expected testfile-arrays003_dolmen.output))) + (deps testfile-arrays003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_dolmen.output))) (rule (target testfile-arrays003_fpa.output) (deps (:input testfile-arrays003.ae)) @@ -122185,10 +119649,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays003.expected testfile-arrays003_fpa.output))) + (deps testfile-arrays003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays003.expected testfile-arrays003_fpa.output))) (rule (target testfile-arrays002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays002.ae)) @@ -122207,12 +119672,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays002.expected - testfile-arrays002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays002.ae)) @@ -122233,12 +119697,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays002.expected - testfile-arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays002.ae)) @@ -122258,12 +119721,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays002.expected - testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays002.ae)) @@ -122282,12 +119744,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays002.expected - testfile-arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays002.ae)) @@ -122306,12 +119767,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays002.expected - testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays002.ae)) @@ -122330,12 +119790,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays002.expected - testfile-arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays002_cdcl.output) (deps (:input testfile-arrays002.ae)) @@ -122353,10 +119812,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays002.expected testfile-arrays002_cdcl.output))) + (deps testfile-arrays002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_cdcl.output))) (rule (target testfile-arrays002_tableaux_cdcl.output) (deps (:input testfile-arrays002.ae)) @@ -122374,12 +119834,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays002.expected - testfile-arrays002_tableaux_cdcl.output))) + (deps testfile-arrays002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_tableaux_cdcl.output))) (rule (target testfile-arrays002_tableaux.output) (deps (:input testfile-arrays002.ae)) @@ -122397,10 +119856,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays002.expected testfile-arrays002_tableaux.output))) + (deps testfile-arrays002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_tableaux.output))) (rule (target testfile-arrays002_legacy.output) (deps (:input testfile-arrays002.ae)) @@ -122417,10 +119877,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays002.expected testfile-arrays002_legacy.output))) + (deps testfile-arrays002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_legacy.output))) (rule (target testfile-arrays002_dolmen.output) (deps (:input testfile-arrays002.ae)) @@ -122437,10 +119898,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays002.expected testfile-arrays002_dolmen.output))) + (deps testfile-arrays002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_dolmen.output))) (rule (target testfile-arrays002_fpa.output) (deps (:input testfile-arrays002.ae)) @@ -122457,10 +119919,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays002.expected testfile-arrays002_fpa.output))) + (deps testfile-arrays002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays002.expected testfile-arrays002_fpa.output))) (rule (target testfile-arrays001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays001.ae)) @@ -122479,12 +119942,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays001.expected - testfile-arrays001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-arrays001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays001.ae)) @@ -122505,12 +119967,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays001.expected - testfile-arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-arrays001.ae)) @@ -122530,12 +119991,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays001.expected - testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-arrays001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-arrays001.ae)) @@ -122554,12 +120014,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays001.expected - testfile-arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-arrays001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-arrays001.ae)) @@ -122578,12 +120037,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays001.expected - testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-arrays001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-arrays001.ae)) @@ -122602,12 +120060,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-arrays001.expected - testfile-arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-arrays001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-arrays001_cdcl.output) (deps (:input testfile-arrays001.ae)) @@ -122625,10 +120082,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays001.expected testfile-arrays001_cdcl.output))) + (deps testfile-arrays001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_cdcl.output))) (rule (target testfile-arrays001_tableaux_cdcl.output) (deps (:input testfile-arrays001.ae)) @@ -122646,12 +120104,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-arrays001.expected - testfile-arrays001_tableaux_cdcl.output))) + (deps testfile-arrays001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_tableaux_cdcl.output))) (rule (target testfile-arrays001_tableaux.output) (deps (:input testfile-arrays001.ae)) @@ -122669,10 +120126,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays001.expected testfile-arrays001_tableaux.output))) + (deps testfile-arrays001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_tableaux.output))) (rule (target testfile-arrays001_legacy.output) (deps (:input testfile-arrays001.ae)) @@ -122689,10 +120147,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays001.expected testfile-arrays001_legacy.output))) + (deps testfile-arrays001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_legacy.output))) (rule (target testfile-arrays001_dolmen.output) (deps (:input testfile-arrays001.ae)) @@ -122709,10 +120168,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays001.expected testfile-arrays001_dolmen.output))) + (deps testfile-arrays001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_dolmen.output))) (rule (target testfile-arrays001_fpa.output) (deps (:input testfile-arrays001.ae)) @@ -122729,10 +120189,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-arrays001.expected testfile-arrays001_fpa.output))) + (deps testfile-arrays001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-arrays001.expected testfile-arrays001_fpa.output))) (rule (target testfile-018_array_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-018_array.ae)) @@ -122751,12 +120212,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-018_array.expected - testfile-018_array_ci_cdcl_no_minimal_bj.output))) + (deps testfile-018_array_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-018_array_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-018_array.ae)) @@ -122777,12 +120237,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-018_array.expected - testfile-018_array_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-018_array_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-018_array.ae)) @@ -122802,12 +120261,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-018_array.expected - testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-018_array_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-018_array.ae)) @@ -122826,12 +120284,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-018_array.expected - testfile-018_array_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-018_array_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-018_array.ae)) @@ -122850,12 +120307,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-018_array.expected - testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-018_array_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-018_array.ae)) @@ -122874,12 +120330,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-018_array.expected - testfile-018_array_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-018_array_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-018_array_cdcl.output) (deps (:input testfile-018_array.ae)) @@ -122897,10 +120352,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-018_array.expected testfile-018_array_cdcl.output))) + (deps testfile-018_array_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_cdcl.output))) (rule (target testfile-018_array_tableaux_cdcl.output) (deps (:input testfile-018_array.ae)) @@ -122918,12 +120374,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-018_array.expected - testfile-018_array_tableaux_cdcl.output))) + (deps testfile-018_array_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_tableaux_cdcl.output))) (rule (target testfile-018_array_tableaux.output) (deps (:input testfile-018_array.ae)) @@ -122941,10 +120396,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-018_array.expected testfile-018_array_tableaux.output))) + (deps testfile-018_array_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_tableaux.output))) (rule (target testfile-018_array_legacy.output) (deps (:input testfile-018_array.ae)) @@ -122961,10 +120417,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-018_array.expected testfile-018_array_legacy.output))) + (deps testfile-018_array_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_legacy.output))) (rule (target testfile-018_array_dolmen.output) (deps (:input testfile-018_array.ae)) @@ -122981,10 +120438,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-018_array.expected testfile-018_array_dolmen.output))) + (deps testfile-018_array_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_dolmen.output))) (rule (target testfile-018_array_fpa.output) (deps (:input testfile-018_array.ae)) @@ -123001,10 +120459,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-018_array.expected testfile-018_array_fpa.output))) + (deps testfile-018_array_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-018_array.expected testfile-018_array_fpa.output))) (rule (target challenge-euf-arrays-with-ext__KO_ci_cdcl_no_minimal_bj.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123023,12 +120482,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_ci_cdcl_no_minimal_bj.output))) + (deps challenge-euf-arrays-with-ext__KO_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_ci_cdcl_no_minimal_bj.output))) (rule (target challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123049,12 +120507,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123074,12 +120531,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target challenge-euf-arrays-with-ext__KO_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123098,12 +120554,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps challenge-euf-arrays-with-ext__KO_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123122,12 +120577,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target challenge-euf-arrays-with-ext__KO_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123146,12 +120600,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps challenge-euf-arrays-with-ext__KO_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target challenge-euf-arrays-with-ext__KO_cdcl.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123169,12 +120622,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_cdcl.output))) + (deps challenge-euf-arrays-with-ext__KO_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_cdcl.output))) (rule (target challenge-euf-arrays-with-ext__KO_tableaux_cdcl.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123192,12 +120644,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_tableaux_cdcl.output))) + (deps challenge-euf-arrays-with-ext__KO_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_tableaux_cdcl.output))) (rule (target challenge-euf-arrays-with-ext__KO_tableaux.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123215,12 +120666,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_tableaux.output))) + (deps challenge-euf-arrays-with-ext__KO_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_tableaux.output))) (rule (target challenge-euf-arrays-with-ext__KO_legacy.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123237,12 +120687,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_legacy.output))) + (deps challenge-euf-arrays-with-ext__KO_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_legacy.output))) (rule (target challenge-euf-arrays-with-ext__KO_dolmen.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123259,12 +120708,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_dolmen.output))) + (deps challenge-euf-arrays-with-ext__KO_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_dolmen.output))) (rule (target challenge-euf-arrays-with-ext__KO_fpa.output) (deps (:input challenge-euf-arrays-with-ext__KO.ae)) @@ -123281,12 +120729,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - challenge-euf-arrays-with-ext__KO.expected - challenge-euf-arrays-with-ext__KO_fpa.output)))) + (deps challenge-euf-arrays-with-ext__KO_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff challenge-euf-arrays-with-ext__KO.expected challenge-euf-arrays-with-ext__KO_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -123308,12 +120755,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-bvnot.dolmen.expected - testfile-bvnot.dolmen_dolmen.output))) + (deps testfile-bvnot.dolmen_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bvnot.dolmen.expected testfile-bvnot.dolmen_dolmen.output))) (rule (target testfile-bvnot-term.dolmen_dolmen.output) (deps (:input testfile-bvnot-term.dolmen.smt2)) @@ -123330,12 +120776,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-bvnot-term.dolmen.expected - testfile-bvnot-term.dolmen_dolmen.output))) + (deps testfile-bvnot-term.dolmen_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bvnot-term.dolmen.expected testfile-bvnot-term.dolmen_dolmen.output))) (rule (target testfile-bitv023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv023.ae)) @@ -123354,12 +120799,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv023.expected - testfile-bitv023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv023.ae)) @@ -123380,12 +120824,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv023.expected - testfile-bitv023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv023.ae)) @@ -123405,12 +120848,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv023.expected - testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv023.ae)) @@ -123429,12 +120871,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv023.expected - testfile-bitv023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv023.ae)) @@ -123453,12 +120894,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv023.expected - testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv023.ae)) @@ -123477,12 +120917,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv023.expected - testfile-bitv023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv023_cdcl.output) (deps (:input testfile-bitv023.ae)) @@ -123500,10 +120939,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv023.expected testfile-bitv023_cdcl.output))) + (deps testfile-bitv023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_cdcl.output))) (rule (target testfile-bitv023_tableaux_cdcl.output) (deps (:input testfile-bitv023.ae)) @@ -123521,10 +120961,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv023.expected testfile-bitv023_tableaux_cdcl.output))) + (deps testfile-bitv023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_tableaux_cdcl.output))) (rule (target testfile-bitv023_tableaux.output) (deps (:input testfile-bitv023.ae)) @@ -123542,10 +120983,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv023.expected testfile-bitv023_tableaux.output))) + (deps testfile-bitv023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_tableaux.output))) (rule (target testfile-bitv023_legacy.output) (deps (:input testfile-bitv023.ae)) @@ -123562,10 +121004,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv023.expected testfile-bitv023_legacy.output))) + (deps testfile-bitv023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_legacy.output))) (rule (target testfile-bitv023_dolmen.output) (deps (:input testfile-bitv023.ae)) @@ -123582,10 +121025,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv023.expected testfile-bitv023_dolmen.output))) + (deps testfile-bitv023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_dolmen.output))) (rule (target testfile-bitv023_fpa.output) (deps (:input testfile-bitv023.ae)) @@ -123602,10 +121046,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv023.expected testfile-bitv023_fpa.output))) + (deps testfile-bitv023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv023.expected testfile-bitv023_fpa.output))) (rule (target testfile-bitv022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv022.ae)) @@ -123624,12 +121069,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv022.expected - testfile-bitv022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv022.ae)) @@ -123650,12 +121094,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv022.expected - testfile-bitv022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv022.ae)) @@ -123675,12 +121118,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv022.expected - testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv022.ae)) @@ -123699,12 +121141,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv022.expected - testfile-bitv022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv022.ae)) @@ -123723,12 +121164,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv022.expected - testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv022.ae)) @@ -123747,12 +121187,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv022.expected - testfile-bitv022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv022_cdcl.output) (deps (:input testfile-bitv022.ae)) @@ -123770,10 +121209,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv022.expected testfile-bitv022_cdcl.output))) + (deps testfile-bitv022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_cdcl.output))) (rule (target testfile-bitv022_tableaux_cdcl.output) (deps (:input testfile-bitv022.ae)) @@ -123791,10 +121231,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv022.expected testfile-bitv022_tableaux_cdcl.output))) + (deps testfile-bitv022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_tableaux_cdcl.output))) (rule (target testfile-bitv022_tableaux.output) (deps (:input testfile-bitv022.ae)) @@ -123812,10 +121253,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv022.expected testfile-bitv022_tableaux.output))) + (deps testfile-bitv022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_tableaux.output))) (rule (target testfile-bitv022_legacy.output) (deps (:input testfile-bitv022.ae)) @@ -123832,10 +121274,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv022.expected testfile-bitv022_legacy.output))) + (deps testfile-bitv022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_legacy.output))) (rule (target testfile-bitv022_dolmen.output) (deps (:input testfile-bitv022.ae)) @@ -123852,10 +121295,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv022.expected testfile-bitv022_dolmen.output))) + (deps testfile-bitv022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_dolmen.output))) (rule (target testfile-bitv022_fpa.output) (deps (:input testfile-bitv022.ae)) @@ -123872,10 +121316,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv022.expected testfile-bitv022_fpa.output))) + (deps testfile-bitv022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv022.expected testfile-bitv022_fpa.output))) (rule (target testfile-bitv021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv021.ae)) @@ -123894,12 +121339,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv021.expected - testfile-bitv021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv021.ae)) @@ -123920,12 +121364,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv021.expected - testfile-bitv021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv021.ae)) @@ -123945,12 +121388,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv021.expected - testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv021.ae)) @@ -123969,12 +121411,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv021.expected - testfile-bitv021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv021.ae)) @@ -123993,12 +121434,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv021.expected - testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv021.ae)) @@ -124017,12 +121457,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv021.expected - testfile-bitv021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv021_cdcl.output) (deps (:input testfile-bitv021.ae)) @@ -124040,10 +121479,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv021.expected testfile-bitv021_cdcl.output))) + (deps testfile-bitv021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_cdcl.output))) (rule (target testfile-bitv021_tableaux_cdcl.output) (deps (:input testfile-bitv021.ae)) @@ -124061,10 +121501,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv021.expected testfile-bitv021_tableaux_cdcl.output))) + (deps testfile-bitv021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_tableaux_cdcl.output))) (rule (target testfile-bitv021_tableaux.output) (deps (:input testfile-bitv021.ae)) @@ -124082,10 +121523,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv021.expected testfile-bitv021_tableaux.output))) + (deps testfile-bitv021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_tableaux.output))) (rule (target testfile-bitv021_legacy.output) (deps (:input testfile-bitv021.ae)) @@ -124102,10 +121544,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv021.expected testfile-bitv021_legacy.output))) + (deps testfile-bitv021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_legacy.output))) (rule (target testfile-bitv021_dolmen.output) (deps (:input testfile-bitv021.ae)) @@ -124122,10 +121565,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv021.expected testfile-bitv021_dolmen.output))) + (deps testfile-bitv021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_dolmen.output))) (rule (target testfile-bitv021_fpa.output) (deps (:input testfile-bitv021.ae)) @@ -124142,10 +121586,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv021.expected testfile-bitv021_fpa.output))) + (deps testfile-bitv021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv021.expected testfile-bitv021_fpa.output))) (rule (target testfile-bitv020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv020.ae)) @@ -124164,12 +121609,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv020.expected - testfile-bitv020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv020.ae)) @@ -124190,12 +121634,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv020.expected - testfile-bitv020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv020.ae)) @@ -124215,12 +121658,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv020.expected - testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv020.ae)) @@ -124239,12 +121681,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv020.expected - testfile-bitv020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv020.ae)) @@ -124263,12 +121704,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv020.expected - testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv020.ae)) @@ -124287,12 +121727,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv020.expected - testfile-bitv020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv020_cdcl.output) (deps (:input testfile-bitv020.ae)) @@ -124310,10 +121749,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv020.expected testfile-bitv020_cdcl.output))) + (deps testfile-bitv020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_cdcl.output))) (rule (target testfile-bitv020_tableaux_cdcl.output) (deps (:input testfile-bitv020.ae)) @@ -124331,10 +121771,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv020.expected testfile-bitv020_tableaux_cdcl.output))) + (deps testfile-bitv020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_tableaux_cdcl.output))) (rule (target testfile-bitv020_tableaux.output) (deps (:input testfile-bitv020.ae)) @@ -124352,10 +121793,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv020.expected testfile-bitv020_tableaux.output))) + (deps testfile-bitv020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_tableaux.output))) (rule (target testfile-bitv020_legacy.output) (deps (:input testfile-bitv020.ae)) @@ -124372,10 +121814,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv020.expected testfile-bitv020_legacy.output))) + (deps testfile-bitv020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_legacy.output))) (rule (target testfile-bitv020_dolmen.output) (deps (:input testfile-bitv020.ae)) @@ -124392,10 +121835,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv020.expected testfile-bitv020_dolmen.output))) + (deps testfile-bitv020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_dolmen.output))) (rule (target testfile-bitv020_fpa.output) (deps (:input testfile-bitv020.ae)) @@ -124412,10 +121856,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv020.expected testfile-bitv020_fpa.output))) + (deps testfile-bitv020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv020.expected testfile-bitv020_fpa.output))) (rule (target testfile-bitv019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv019.ae)) @@ -124434,12 +121879,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv019.expected - testfile-bitv019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv019.ae)) @@ -124460,12 +121904,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv019.expected - testfile-bitv019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv019.ae)) @@ -124485,12 +121928,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv019.expected - testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv019.ae)) @@ -124509,12 +121951,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv019.expected - testfile-bitv019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv019.ae)) @@ -124533,12 +121974,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv019.expected - testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv019.ae)) @@ -124557,12 +121997,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv019.expected - testfile-bitv019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv019_cdcl.output) (deps (:input testfile-bitv019.ae)) @@ -124580,10 +122019,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv019.expected testfile-bitv019_cdcl.output))) + (deps testfile-bitv019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_cdcl.output))) (rule (target testfile-bitv019_tableaux_cdcl.output) (deps (:input testfile-bitv019.ae)) @@ -124601,10 +122041,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv019.expected testfile-bitv019_tableaux_cdcl.output))) + (deps testfile-bitv019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_tableaux_cdcl.output))) (rule (target testfile-bitv019_tableaux.output) (deps (:input testfile-bitv019.ae)) @@ -124622,10 +122063,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv019.expected testfile-bitv019_tableaux.output))) + (deps testfile-bitv019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_tableaux.output))) (rule (target testfile-bitv019_legacy.output) (deps (:input testfile-bitv019.ae)) @@ -124642,10 +122084,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv019.expected testfile-bitv019_legacy.output))) + (deps testfile-bitv019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_legacy.output))) (rule (target testfile-bitv019_dolmen.output) (deps (:input testfile-bitv019.ae)) @@ -124662,10 +122105,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv019.expected testfile-bitv019_dolmen.output))) + (deps testfile-bitv019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_dolmen.output))) (rule (target testfile-bitv019_fpa.output) (deps (:input testfile-bitv019.ae)) @@ -124682,10 +122126,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv019.expected testfile-bitv019_fpa.output))) + (deps testfile-bitv019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv019.expected testfile-bitv019_fpa.output))) (rule (target testfile-bitv018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv018.ae)) @@ -124704,12 +122149,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv018.expected - testfile-bitv018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv018.ae)) @@ -124730,12 +122174,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv018.expected - testfile-bitv018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv018.ae)) @@ -124755,12 +122198,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv018.expected - testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv018.ae)) @@ -124779,12 +122221,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv018.expected - testfile-bitv018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv018.ae)) @@ -124803,12 +122244,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv018.expected - testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv018.ae)) @@ -124827,12 +122267,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv018.expected - testfile-bitv018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv018_cdcl.output) (deps (:input testfile-bitv018.ae)) @@ -124850,10 +122289,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv018.expected testfile-bitv018_cdcl.output))) + (deps testfile-bitv018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_cdcl.output))) (rule (target testfile-bitv018_tableaux_cdcl.output) (deps (:input testfile-bitv018.ae)) @@ -124871,10 +122311,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv018.expected testfile-bitv018_tableaux_cdcl.output))) + (deps testfile-bitv018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_tableaux_cdcl.output))) (rule (target testfile-bitv018_tableaux.output) (deps (:input testfile-bitv018.ae)) @@ -124892,10 +122333,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv018.expected testfile-bitv018_tableaux.output))) + (deps testfile-bitv018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_tableaux.output))) (rule (target testfile-bitv018_legacy.output) (deps (:input testfile-bitv018.ae)) @@ -124912,10 +122354,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv018.expected testfile-bitv018_legacy.output))) + (deps testfile-bitv018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_legacy.output))) (rule (target testfile-bitv018_dolmen.output) (deps (:input testfile-bitv018.ae)) @@ -124932,10 +122375,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv018.expected testfile-bitv018_dolmen.output))) + (deps testfile-bitv018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_dolmen.output))) (rule (target testfile-bitv018_fpa.output) (deps (:input testfile-bitv018.ae)) @@ -124952,10 +122396,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv018.expected testfile-bitv018_fpa.output))) + (deps testfile-bitv018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv018.expected testfile-bitv018_fpa.output))) (rule (target testfile-bitv017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv017.ae)) @@ -124974,12 +122419,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv017.expected - testfile-bitv017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv017.ae)) @@ -125000,12 +122444,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv017.expected - testfile-bitv017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv017.ae)) @@ -125025,12 +122468,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv017.expected - testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv017.ae)) @@ -125049,12 +122491,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv017.expected - testfile-bitv017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv017.ae)) @@ -125073,12 +122514,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv017.expected - testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv017.ae)) @@ -125097,12 +122537,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv017.expected - testfile-bitv017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv017_cdcl.output) (deps (:input testfile-bitv017.ae)) @@ -125120,10 +122559,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv017.expected testfile-bitv017_cdcl.output))) + (deps testfile-bitv017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_cdcl.output))) (rule (target testfile-bitv017_tableaux_cdcl.output) (deps (:input testfile-bitv017.ae)) @@ -125141,10 +122581,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv017.expected testfile-bitv017_tableaux_cdcl.output))) + (deps testfile-bitv017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_tableaux_cdcl.output))) (rule (target testfile-bitv017_tableaux.output) (deps (:input testfile-bitv017.ae)) @@ -125162,10 +122603,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv017.expected testfile-bitv017_tableaux.output))) + (deps testfile-bitv017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_tableaux.output))) (rule (target testfile-bitv017_legacy.output) (deps (:input testfile-bitv017.ae)) @@ -125182,10 +122624,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv017.expected testfile-bitv017_legacy.output))) + (deps testfile-bitv017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_legacy.output))) (rule (target testfile-bitv017_dolmen.output) (deps (:input testfile-bitv017.ae)) @@ -125202,10 +122645,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv017.expected testfile-bitv017_dolmen.output))) + (deps testfile-bitv017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_dolmen.output))) (rule (target testfile-bitv017_fpa.output) (deps (:input testfile-bitv017.ae)) @@ -125222,10 +122666,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv017.expected testfile-bitv017_fpa.output))) + (deps testfile-bitv017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv017.expected testfile-bitv017_fpa.output))) (rule (target testfile-bitv016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv016.ae)) @@ -125244,12 +122689,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv016.expected - testfile-bitv016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv016.ae)) @@ -125270,12 +122714,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv016.expected - testfile-bitv016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv016.ae)) @@ -125295,12 +122738,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv016.expected - testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv016.ae)) @@ -125319,12 +122761,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv016.expected - testfile-bitv016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv016.ae)) @@ -125343,12 +122784,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv016.expected - testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv016.ae)) @@ -125367,12 +122807,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv016.expected - testfile-bitv016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv016_cdcl.output) (deps (:input testfile-bitv016.ae)) @@ -125390,10 +122829,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv016.expected testfile-bitv016_cdcl.output))) + (deps testfile-bitv016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_cdcl.output))) (rule (target testfile-bitv016_tableaux_cdcl.output) (deps (:input testfile-bitv016.ae)) @@ -125411,10 +122851,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv016.expected testfile-bitv016_tableaux_cdcl.output))) + (deps testfile-bitv016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_tableaux_cdcl.output))) (rule (target testfile-bitv016_tableaux.output) (deps (:input testfile-bitv016.ae)) @@ -125432,10 +122873,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv016.expected testfile-bitv016_tableaux.output))) + (deps testfile-bitv016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_tableaux.output))) (rule (target testfile-bitv016_legacy.output) (deps (:input testfile-bitv016.ae)) @@ -125452,10 +122894,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv016.expected testfile-bitv016_legacy.output))) + (deps testfile-bitv016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_legacy.output))) (rule (target testfile-bitv016_dolmen.output) (deps (:input testfile-bitv016.ae)) @@ -125472,10 +122915,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv016.expected testfile-bitv016_dolmen.output))) + (deps testfile-bitv016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_dolmen.output))) (rule (target testfile-bitv016_fpa.output) (deps (:input testfile-bitv016.ae)) @@ -125492,10 +122936,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv016.expected testfile-bitv016_fpa.output))) + (deps testfile-bitv016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv016.expected testfile-bitv016_fpa.output))) (rule (target testfile-bitv015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv015.ae)) @@ -125514,12 +122959,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv015.expected - testfile-bitv015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv015.ae)) @@ -125540,12 +122984,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv015.expected - testfile-bitv015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv015.ae)) @@ -125565,12 +123008,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv015.expected - testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv015.ae)) @@ -125589,12 +123031,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv015.expected - testfile-bitv015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv015.ae)) @@ -125613,12 +123054,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv015.expected - testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv015.ae)) @@ -125637,12 +123077,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv015.expected - testfile-bitv015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv015_cdcl.output) (deps (:input testfile-bitv015.ae)) @@ -125660,10 +123099,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv015.expected testfile-bitv015_cdcl.output))) + (deps testfile-bitv015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_cdcl.output))) (rule (target testfile-bitv015_tableaux_cdcl.output) (deps (:input testfile-bitv015.ae)) @@ -125681,10 +123121,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv015.expected testfile-bitv015_tableaux_cdcl.output))) + (deps testfile-bitv015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_tableaux_cdcl.output))) (rule (target testfile-bitv015_tableaux.output) (deps (:input testfile-bitv015.ae)) @@ -125702,10 +123143,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv015.expected testfile-bitv015_tableaux.output))) + (deps testfile-bitv015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_tableaux.output))) (rule (target testfile-bitv015_legacy.output) (deps (:input testfile-bitv015.ae)) @@ -125722,10 +123164,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv015.expected testfile-bitv015_legacy.output))) + (deps testfile-bitv015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_legacy.output))) (rule (target testfile-bitv015_dolmen.output) (deps (:input testfile-bitv015.ae)) @@ -125742,10 +123185,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv015.expected testfile-bitv015_dolmen.output))) + (deps testfile-bitv015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_dolmen.output))) (rule (target testfile-bitv015_fpa.output) (deps (:input testfile-bitv015.ae)) @@ -125762,10 +123206,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv015.expected testfile-bitv015_fpa.output))) + (deps testfile-bitv015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv015.expected testfile-bitv015_fpa.output))) (rule (target testfile-bitv014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv014.ae)) @@ -125784,12 +123229,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv014.expected - testfile-bitv014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv014.ae)) @@ -125810,12 +123254,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv014.expected - testfile-bitv014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv014.ae)) @@ -125835,12 +123278,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv014.expected - testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv014.ae)) @@ -125859,12 +123301,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv014.expected - testfile-bitv014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv014.ae)) @@ -125883,12 +123324,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv014.expected - testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv014.ae)) @@ -125907,12 +123347,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv014.expected - testfile-bitv014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv014_cdcl.output) (deps (:input testfile-bitv014.ae)) @@ -125930,10 +123369,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv014.expected testfile-bitv014_cdcl.output))) + (deps testfile-bitv014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_cdcl.output))) (rule (target testfile-bitv014_tableaux_cdcl.output) (deps (:input testfile-bitv014.ae)) @@ -125951,10 +123391,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv014.expected testfile-bitv014_tableaux_cdcl.output))) + (deps testfile-bitv014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_tableaux_cdcl.output))) (rule (target testfile-bitv014_tableaux.output) (deps (:input testfile-bitv014.ae)) @@ -125972,10 +123413,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv014.expected testfile-bitv014_tableaux.output))) + (deps testfile-bitv014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_tableaux.output))) (rule (target testfile-bitv014_legacy.output) (deps (:input testfile-bitv014.ae)) @@ -125992,10 +123434,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv014.expected testfile-bitv014_legacy.output))) + (deps testfile-bitv014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_legacy.output))) (rule (target testfile-bitv014_dolmen.output) (deps (:input testfile-bitv014.ae)) @@ -126012,10 +123455,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv014.expected testfile-bitv014_dolmen.output))) + (deps testfile-bitv014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_dolmen.output))) (rule (target testfile-bitv014_fpa.output) (deps (:input testfile-bitv014.ae)) @@ -126032,10 +123476,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv014.expected testfile-bitv014_fpa.output))) + (deps testfile-bitv014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv014.expected testfile-bitv014_fpa.output))) (rule (target testfile-bitv013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv013.ae)) @@ -126054,12 +123499,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv013.expected - testfile-bitv013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv013.ae)) @@ -126080,12 +123524,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv013.expected - testfile-bitv013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv013.ae)) @@ -126105,12 +123548,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv013.expected - testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv013.ae)) @@ -126129,12 +123571,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv013.expected - testfile-bitv013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv013.ae)) @@ -126153,12 +123594,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv013.expected - testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv013.ae)) @@ -126177,12 +123617,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv013.expected - testfile-bitv013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv013_cdcl.output) (deps (:input testfile-bitv013.ae)) @@ -126200,10 +123639,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv013.expected testfile-bitv013_cdcl.output))) + (deps testfile-bitv013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_cdcl.output))) (rule (target testfile-bitv013_tableaux_cdcl.output) (deps (:input testfile-bitv013.ae)) @@ -126221,10 +123661,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv013.expected testfile-bitv013_tableaux_cdcl.output))) + (deps testfile-bitv013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_tableaux_cdcl.output))) (rule (target testfile-bitv013_tableaux.output) (deps (:input testfile-bitv013.ae)) @@ -126242,10 +123683,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv013.expected testfile-bitv013_tableaux.output))) + (deps testfile-bitv013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_tableaux.output))) (rule (target testfile-bitv013_legacy.output) (deps (:input testfile-bitv013.ae)) @@ -126262,10 +123704,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv013.expected testfile-bitv013_legacy.output))) + (deps testfile-bitv013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_legacy.output))) (rule (target testfile-bitv013_dolmen.output) (deps (:input testfile-bitv013.ae)) @@ -126282,10 +123725,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv013.expected testfile-bitv013_dolmen.output))) + (deps testfile-bitv013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_dolmen.output))) (rule (target testfile-bitv013_fpa.output) (deps (:input testfile-bitv013.ae)) @@ -126302,10 +123746,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv013.expected testfile-bitv013_fpa.output))) + (deps testfile-bitv013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv013.expected testfile-bitv013_fpa.output))) (rule (target testfile-bitv012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv012.ae)) @@ -126324,12 +123769,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv012.expected - testfile-bitv012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv012.ae)) @@ -126350,12 +123794,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv012.expected - testfile-bitv012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv012.ae)) @@ -126375,12 +123818,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv012.expected - testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv012.ae)) @@ -126399,12 +123841,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv012.expected - testfile-bitv012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv012.ae)) @@ -126423,12 +123864,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv012.expected - testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv012.ae)) @@ -126447,12 +123887,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv012.expected - testfile-bitv012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv012_cdcl.output) (deps (:input testfile-bitv012.ae)) @@ -126470,10 +123909,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv012.expected testfile-bitv012_cdcl.output))) + (deps testfile-bitv012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_cdcl.output))) (rule (target testfile-bitv012_tableaux_cdcl.output) (deps (:input testfile-bitv012.ae)) @@ -126491,10 +123931,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv012.expected testfile-bitv012_tableaux_cdcl.output))) + (deps testfile-bitv012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_tableaux_cdcl.output))) (rule (target testfile-bitv012_tableaux.output) (deps (:input testfile-bitv012.ae)) @@ -126512,10 +123953,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv012.expected testfile-bitv012_tableaux.output))) + (deps testfile-bitv012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_tableaux.output))) (rule (target testfile-bitv012_legacy.output) (deps (:input testfile-bitv012.ae)) @@ -126532,10 +123974,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv012.expected testfile-bitv012_legacy.output))) + (deps testfile-bitv012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_legacy.output))) (rule (target testfile-bitv012_dolmen.output) (deps (:input testfile-bitv012.ae)) @@ -126552,10 +123995,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv012.expected testfile-bitv012_dolmen.output))) + (deps testfile-bitv012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_dolmen.output))) (rule (target testfile-bitv012_fpa.output) (deps (:input testfile-bitv012.ae)) @@ -126572,10 +124016,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv012.expected testfile-bitv012_fpa.output))) + (deps testfile-bitv012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv012.expected testfile-bitv012_fpa.output))) (rule (target testfile-bitv011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv011.ae)) @@ -126594,12 +124039,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv011.expected - testfile-bitv011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv011.ae)) @@ -126620,12 +124064,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv011.expected - testfile-bitv011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv011.ae)) @@ -126645,12 +124088,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv011.expected - testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv011.ae)) @@ -126669,12 +124111,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv011.expected - testfile-bitv011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv011.ae)) @@ -126693,12 +124134,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv011.expected - testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv011.ae)) @@ -126717,12 +124157,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv011.expected - testfile-bitv011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv011_cdcl.output) (deps (:input testfile-bitv011.ae)) @@ -126740,10 +124179,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv011.expected testfile-bitv011_cdcl.output))) + (deps testfile-bitv011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_cdcl.output))) (rule (target testfile-bitv011_tableaux_cdcl.output) (deps (:input testfile-bitv011.ae)) @@ -126761,10 +124201,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv011.expected testfile-bitv011_tableaux_cdcl.output))) + (deps testfile-bitv011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_tableaux_cdcl.output))) (rule (target testfile-bitv011_tableaux.output) (deps (:input testfile-bitv011.ae)) @@ -126782,10 +124223,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv011.expected testfile-bitv011_tableaux.output))) + (deps testfile-bitv011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_tableaux.output))) (rule (target testfile-bitv011_legacy.output) (deps (:input testfile-bitv011.ae)) @@ -126802,10 +124244,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv011.expected testfile-bitv011_legacy.output))) + (deps testfile-bitv011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_legacy.output))) (rule (target testfile-bitv011_dolmen.output) (deps (:input testfile-bitv011.ae)) @@ -126822,10 +124265,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv011.expected testfile-bitv011_dolmen.output))) + (deps testfile-bitv011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_dolmen.output))) (rule (target testfile-bitv011_fpa.output) (deps (:input testfile-bitv011.ae)) @@ -126842,10 +124286,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv011.expected testfile-bitv011_fpa.output))) + (deps testfile-bitv011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv011.expected testfile-bitv011_fpa.output))) (rule (target testfile-bitv010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv010.ae)) @@ -126864,12 +124309,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv010.expected - testfile-bitv010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv010.ae)) @@ -126890,12 +124334,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv010.expected - testfile-bitv010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv010.ae)) @@ -126915,12 +124358,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv010.expected - testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv010.ae)) @@ -126939,12 +124381,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv010.expected - testfile-bitv010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv010.ae)) @@ -126963,12 +124404,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv010.expected - testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv010.ae)) @@ -126987,12 +124427,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv010.expected - testfile-bitv010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv010_cdcl.output) (deps (:input testfile-bitv010.ae)) @@ -127010,10 +124449,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv010.expected testfile-bitv010_cdcl.output))) + (deps testfile-bitv010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_cdcl.output))) (rule (target testfile-bitv010_tableaux_cdcl.output) (deps (:input testfile-bitv010.ae)) @@ -127031,10 +124471,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv010.expected testfile-bitv010_tableaux_cdcl.output))) + (deps testfile-bitv010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_tableaux_cdcl.output))) (rule (target testfile-bitv010_tableaux.output) (deps (:input testfile-bitv010.ae)) @@ -127052,10 +124493,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv010.expected testfile-bitv010_tableaux.output))) + (deps testfile-bitv010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_tableaux.output))) (rule (target testfile-bitv010_legacy.output) (deps (:input testfile-bitv010.ae)) @@ -127072,10 +124514,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv010.expected testfile-bitv010_legacy.output))) + (deps testfile-bitv010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_legacy.output))) (rule (target testfile-bitv010_dolmen.output) (deps (:input testfile-bitv010.ae)) @@ -127092,10 +124535,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv010.expected testfile-bitv010_dolmen.output))) + (deps testfile-bitv010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_dolmen.output))) (rule (target testfile-bitv010_fpa.output) (deps (:input testfile-bitv010.ae)) @@ -127112,10 +124556,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv010.expected testfile-bitv010_fpa.output))) + (deps testfile-bitv010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv010.expected testfile-bitv010_fpa.output))) (rule (target testfile-bitv009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv009.ae)) @@ -127134,12 +124579,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv009.expected - testfile-bitv009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv009.ae)) @@ -127160,12 +124604,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv009.expected - testfile-bitv009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv009.ae)) @@ -127185,12 +124628,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv009.expected - testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv009.ae)) @@ -127209,12 +124651,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv009.expected - testfile-bitv009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv009.ae)) @@ -127233,12 +124674,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv009.expected - testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv009.ae)) @@ -127257,12 +124697,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv009.expected - testfile-bitv009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv009_cdcl.output) (deps (:input testfile-bitv009.ae)) @@ -127280,10 +124719,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv009.expected testfile-bitv009_cdcl.output))) + (deps testfile-bitv009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_cdcl.output))) (rule (target testfile-bitv009_tableaux_cdcl.output) (deps (:input testfile-bitv009.ae)) @@ -127301,10 +124741,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv009.expected testfile-bitv009_tableaux_cdcl.output))) + (deps testfile-bitv009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_tableaux_cdcl.output))) (rule (target testfile-bitv009_tableaux.output) (deps (:input testfile-bitv009.ae)) @@ -127322,10 +124763,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv009.expected testfile-bitv009_tableaux.output))) + (deps testfile-bitv009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_tableaux.output))) (rule (target testfile-bitv009_legacy.output) (deps (:input testfile-bitv009.ae)) @@ -127342,10 +124784,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv009.expected testfile-bitv009_legacy.output))) + (deps testfile-bitv009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_legacy.output))) (rule (target testfile-bitv009_dolmen.output) (deps (:input testfile-bitv009.ae)) @@ -127362,10 +124805,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv009.expected testfile-bitv009_dolmen.output))) + (deps testfile-bitv009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_dolmen.output))) (rule (target testfile-bitv009_fpa.output) (deps (:input testfile-bitv009.ae)) @@ -127382,10 +124826,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv009.expected testfile-bitv009_fpa.output))) + (deps testfile-bitv009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv009.expected testfile-bitv009_fpa.output))) (rule (target testfile-bitv008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv008.ae)) @@ -127404,12 +124849,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv008.expected - testfile-bitv008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv008.ae)) @@ -127430,12 +124874,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv008.expected - testfile-bitv008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv008.ae)) @@ -127455,12 +124898,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv008.expected - testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv008.ae)) @@ -127479,12 +124921,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv008.expected - testfile-bitv008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv008.ae)) @@ -127503,12 +124944,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv008.expected - testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv008.ae)) @@ -127527,12 +124967,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv008.expected - testfile-bitv008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv008_cdcl.output) (deps (:input testfile-bitv008.ae)) @@ -127550,10 +124989,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv008.expected testfile-bitv008_cdcl.output))) + (deps testfile-bitv008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_cdcl.output))) (rule (target testfile-bitv008_tableaux_cdcl.output) (deps (:input testfile-bitv008.ae)) @@ -127571,10 +125011,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv008.expected testfile-bitv008_tableaux_cdcl.output))) + (deps testfile-bitv008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_tableaux_cdcl.output))) (rule (target testfile-bitv008_tableaux.output) (deps (:input testfile-bitv008.ae)) @@ -127592,10 +125033,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv008.expected testfile-bitv008_tableaux.output))) + (deps testfile-bitv008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_tableaux.output))) (rule (target testfile-bitv008_legacy.output) (deps (:input testfile-bitv008.ae)) @@ -127612,10 +125054,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv008.expected testfile-bitv008_legacy.output))) + (deps testfile-bitv008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_legacy.output))) (rule (target testfile-bitv008_dolmen.output) (deps (:input testfile-bitv008.ae)) @@ -127632,10 +125075,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv008.expected testfile-bitv008_dolmen.output))) + (deps testfile-bitv008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_dolmen.output))) (rule (target testfile-bitv008_fpa.output) (deps (:input testfile-bitv008.ae)) @@ -127652,10 +125096,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv008.expected testfile-bitv008_fpa.output))) + (deps testfile-bitv008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv008.expected testfile-bitv008_fpa.output))) (rule (target testfile-bitv007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv007.ae)) @@ -127674,12 +125119,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv007.expected - testfile-bitv007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv007.ae)) @@ -127700,12 +125144,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv007.expected - testfile-bitv007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv007.ae)) @@ -127725,12 +125168,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv007.expected - testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv007.ae)) @@ -127749,12 +125191,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv007.expected - testfile-bitv007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv007.ae)) @@ -127773,12 +125214,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv007.expected - testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv007.ae)) @@ -127797,12 +125237,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv007.expected - testfile-bitv007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv007_cdcl.output) (deps (:input testfile-bitv007.ae)) @@ -127820,10 +125259,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv007.expected testfile-bitv007_cdcl.output))) + (deps testfile-bitv007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_cdcl.output))) (rule (target testfile-bitv007_tableaux_cdcl.output) (deps (:input testfile-bitv007.ae)) @@ -127841,10 +125281,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv007.expected testfile-bitv007_tableaux_cdcl.output))) + (deps testfile-bitv007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_tableaux_cdcl.output))) (rule (target testfile-bitv007_tableaux.output) (deps (:input testfile-bitv007.ae)) @@ -127862,10 +125303,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv007.expected testfile-bitv007_tableaux.output))) + (deps testfile-bitv007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_tableaux.output))) (rule (target testfile-bitv007_legacy.output) (deps (:input testfile-bitv007.ae)) @@ -127882,10 +125324,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv007.expected testfile-bitv007_legacy.output))) + (deps testfile-bitv007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_legacy.output))) (rule (target testfile-bitv007_dolmen.output) (deps (:input testfile-bitv007.ae)) @@ -127902,10 +125345,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv007.expected testfile-bitv007_dolmen.output))) + (deps testfile-bitv007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_dolmen.output))) (rule (target testfile-bitv007_fpa.output) (deps (:input testfile-bitv007.ae)) @@ -127922,10 +125366,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv007.expected testfile-bitv007_fpa.output))) + (deps testfile-bitv007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv007.expected testfile-bitv007_fpa.output))) (rule (target testfile-bitv006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv006.ae)) @@ -127944,12 +125389,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv006.expected - testfile-bitv006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv006.ae)) @@ -127970,12 +125414,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv006.expected - testfile-bitv006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv006.ae)) @@ -127995,12 +125438,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv006.expected - testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv006.ae)) @@ -128019,12 +125461,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv006.expected - testfile-bitv006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv006.ae)) @@ -128043,12 +125484,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv006.expected - testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv006.ae)) @@ -128067,12 +125507,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv006.expected - testfile-bitv006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv006_cdcl.output) (deps (:input testfile-bitv006.ae)) @@ -128090,10 +125529,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv006.expected testfile-bitv006_cdcl.output))) + (deps testfile-bitv006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_cdcl.output))) (rule (target testfile-bitv006_tableaux_cdcl.output) (deps (:input testfile-bitv006.ae)) @@ -128111,10 +125551,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv006.expected testfile-bitv006_tableaux_cdcl.output))) + (deps testfile-bitv006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_tableaux_cdcl.output))) (rule (target testfile-bitv006_tableaux.output) (deps (:input testfile-bitv006.ae)) @@ -128132,10 +125573,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv006.expected testfile-bitv006_tableaux.output))) + (deps testfile-bitv006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_tableaux.output))) (rule (target testfile-bitv006_legacy.output) (deps (:input testfile-bitv006.ae)) @@ -128152,10 +125594,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv006.expected testfile-bitv006_legacy.output))) + (deps testfile-bitv006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_legacy.output))) (rule (target testfile-bitv006_dolmen.output) (deps (:input testfile-bitv006.ae)) @@ -128172,10 +125615,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv006.expected testfile-bitv006_dolmen.output))) + (deps testfile-bitv006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_dolmen.output))) (rule (target testfile-bitv006_fpa.output) (deps (:input testfile-bitv006.ae)) @@ -128192,10 +125636,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv006.expected testfile-bitv006_fpa.output))) + (deps testfile-bitv006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv006.expected testfile-bitv006_fpa.output))) (rule (target testfile-bitv005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv005.ae)) @@ -128214,12 +125659,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv005.expected - testfile-bitv005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv005.ae)) @@ -128240,12 +125684,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv005.expected - testfile-bitv005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv005.ae)) @@ -128265,12 +125708,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv005.expected - testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv005.ae)) @@ -128289,12 +125731,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv005.expected - testfile-bitv005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv005.ae)) @@ -128313,12 +125754,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv005.expected - testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv005.ae)) @@ -128337,12 +125777,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv005.expected - testfile-bitv005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv005_cdcl.output) (deps (:input testfile-bitv005.ae)) @@ -128360,10 +125799,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv005.expected testfile-bitv005_cdcl.output))) + (deps testfile-bitv005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_cdcl.output))) (rule (target testfile-bitv005_tableaux_cdcl.output) (deps (:input testfile-bitv005.ae)) @@ -128381,10 +125821,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv005.expected testfile-bitv005_tableaux_cdcl.output))) + (deps testfile-bitv005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_tableaux_cdcl.output))) (rule (target testfile-bitv005_tableaux.output) (deps (:input testfile-bitv005.ae)) @@ -128402,10 +125843,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv005.expected testfile-bitv005_tableaux.output))) + (deps testfile-bitv005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_tableaux.output))) (rule (target testfile-bitv005_legacy.output) (deps (:input testfile-bitv005.ae)) @@ -128422,10 +125864,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv005.expected testfile-bitv005_legacy.output))) + (deps testfile-bitv005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_legacy.output))) (rule (target testfile-bitv005_dolmen.output) (deps (:input testfile-bitv005.ae)) @@ -128442,10 +125885,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv005.expected testfile-bitv005_dolmen.output))) + (deps testfile-bitv005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_dolmen.output))) (rule (target testfile-bitv005_fpa.output) (deps (:input testfile-bitv005.ae)) @@ -128462,10 +125906,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv005.expected testfile-bitv005_fpa.output))) + (deps testfile-bitv005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv005.expected testfile-bitv005_fpa.output))) (rule (target testfile-bitv004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv004.ae)) @@ -128484,12 +125929,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv004.expected - testfile-bitv004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv004.ae)) @@ -128510,12 +125954,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv004.expected - testfile-bitv004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv004.ae)) @@ -128535,12 +125978,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv004.expected - testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv004.ae)) @@ -128559,12 +126001,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv004.expected - testfile-bitv004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv004.ae)) @@ -128583,12 +126024,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv004.expected - testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv004.ae)) @@ -128607,12 +126047,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv004.expected - testfile-bitv004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv004_cdcl.output) (deps (:input testfile-bitv004.ae)) @@ -128630,10 +126069,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv004.expected testfile-bitv004_cdcl.output))) + (deps testfile-bitv004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_cdcl.output))) (rule (target testfile-bitv004_tableaux_cdcl.output) (deps (:input testfile-bitv004.ae)) @@ -128651,10 +126091,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv004.expected testfile-bitv004_tableaux_cdcl.output))) + (deps testfile-bitv004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_tableaux_cdcl.output))) (rule (target testfile-bitv004_tableaux.output) (deps (:input testfile-bitv004.ae)) @@ -128672,10 +126113,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv004.expected testfile-bitv004_tableaux.output))) + (deps testfile-bitv004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_tableaux.output))) (rule (target testfile-bitv004_legacy.output) (deps (:input testfile-bitv004.ae)) @@ -128692,10 +126134,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv004.expected testfile-bitv004_legacy.output))) + (deps testfile-bitv004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_legacy.output))) (rule (target testfile-bitv004_dolmen.output) (deps (:input testfile-bitv004.ae)) @@ -128712,10 +126155,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv004.expected testfile-bitv004_dolmen.output))) + (deps testfile-bitv004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_dolmen.output))) (rule (target testfile-bitv004_fpa.output) (deps (:input testfile-bitv004.ae)) @@ -128732,10 +126176,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv004.expected testfile-bitv004_fpa.output))) + (deps testfile-bitv004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv004.expected testfile-bitv004_fpa.output))) (rule (target testfile-bitv003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv003.ae)) @@ -128754,12 +126199,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv003.expected - testfile-bitv003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv003.ae)) @@ -128780,12 +126224,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv003.expected - testfile-bitv003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv003.ae)) @@ -128805,12 +126248,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv003.expected - testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv003.ae)) @@ -128829,12 +126271,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv003.expected - testfile-bitv003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv003.ae)) @@ -128853,12 +126294,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv003.expected - testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv003.ae)) @@ -128877,12 +126317,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv003.expected - testfile-bitv003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv003_cdcl.output) (deps (:input testfile-bitv003.ae)) @@ -128900,10 +126339,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv003.expected testfile-bitv003_cdcl.output))) + (deps testfile-bitv003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_cdcl.output))) (rule (target testfile-bitv003_tableaux_cdcl.output) (deps (:input testfile-bitv003.ae)) @@ -128921,10 +126361,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv003.expected testfile-bitv003_tableaux_cdcl.output))) + (deps testfile-bitv003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_tableaux_cdcl.output))) (rule (target testfile-bitv003_tableaux.output) (deps (:input testfile-bitv003.ae)) @@ -128942,10 +126383,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv003.expected testfile-bitv003_tableaux.output))) + (deps testfile-bitv003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_tableaux.output))) (rule (target testfile-bitv003_legacy.output) (deps (:input testfile-bitv003.ae)) @@ -128962,10 +126404,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv003.expected testfile-bitv003_legacy.output))) + (deps testfile-bitv003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_legacy.output))) (rule (target testfile-bitv003_dolmen.output) (deps (:input testfile-bitv003.ae)) @@ -128982,10 +126425,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv003.expected testfile-bitv003_dolmen.output))) + (deps testfile-bitv003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_dolmen.output))) (rule (target testfile-bitv003_fpa.output) (deps (:input testfile-bitv003.ae)) @@ -129002,10 +126446,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv003.expected testfile-bitv003_fpa.output))) + (deps testfile-bitv003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv003.expected testfile-bitv003_fpa.output))) (rule (target testfile-bitv002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv002.ae)) @@ -129024,12 +126469,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv002.expected - testfile-bitv002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv002.ae)) @@ -129050,12 +126494,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv002.expected - testfile-bitv002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv002.ae)) @@ -129075,12 +126518,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv002.expected - testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv002.ae)) @@ -129099,12 +126541,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv002.expected - testfile-bitv002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv002.ae)) @@ -129123,12 +126564,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv002.expected - testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv002.ae)) @@ -129147,12 +126587,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv002.expected - testfile-bitv002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv002_cdcl.output) (deps (:input testfile-bitv002.ae)) @@ -129170,10 +126609,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv002.expected testfile-bitv002_cdcl.output))) + (deps testfile-bitv002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_cdcl.output))) (rule (target testfile-bitv002_tableaux_cdcl.output) (deps (:input testfile-bitv002.ae)) @@ -129191,10 +126631,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv002.expected testfile-bitv002_tableaux_cdcl.output))) + (deps testfile-bitv002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_tableaux_cdcl.output))) (rule (target testfile-bitv002_tableaux.output) (deps (:input testfile-bitv002.ae)) @@ -129212,10 +126653,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv002.expected testfile-bitv002_tableaux.output))) + (deps testfile-bitv002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_tableaux.output))) (rule (target testfile-bitv002_legacy.output) (deps (:input testfile-bitv002.ae)) @@ -129232,10 +126674,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv002.expected testfile-bitv002_legacy.output))) + (deps testfile-bitv002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_legacy.output))) (rule (target testfile-bitv002_dolmen.output) (deps (:input testfile-bitv002.ae)) @@ -129252,10 +126695,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv002.expected testfile-bitv002_dolmen.output))) + (deps testfile-bitv002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_dolmen.output))) (rule (target testfile-bitv002_fpa.output) (deps (:input testfile-bitv002.ae)) @@ -129272,10 +126716,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv002.expected testfile-bitv002_fpa.output))) + (deps testfile-bitv002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv002.expected testfile-bitv002_fpa.output))) (rule (target testfile-bitv001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv001.ae)) @@ -129294,12 +126739,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv001.expected - testfile-bitv001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bitv001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv001.ae)) @@ -129320,12 +126764,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv001.expected - testfile-bitv001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bitv001.ae)) @@ -129345,12 +126788,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv001.expected - testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bitv001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bitv001.ae)) @@ -129369,12 +126811,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv001.expected - testfile-bitv001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bitv001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bitv001.ae)) @@ -129393,12 +126834,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv001.expected - testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bitv001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bitv001.ae)) @@ -129417,12 +126857,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bitv001.expected - testfile-bitv001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bitv001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bitv001_cdcl.output) (deps (:input testfile-bitv001.ae)) @@ -129440,10 +126879,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv001.expected testfile-bitv001_cdcl.output))) + (deps testfile-bitv001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_cdcl.output))) (rule (target testfile-bitv001_tableaux_cdcl.output) (deps (:input testfile-bitv001.ae)) @@ -129461,10 +126901,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv001.expected testfile-bitv001_tableaux_cdcl.output))) + (deps testfile-bitv001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_tableaux_cdcl.output))) (rule (target testfile-bitv001_tableaux.output) (deps (:input testfile-bitv001.ae)) @@ -129482,10 +126923,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv001.expected testfile-bitv001_tableaux.output))) + (deps testfile-bitv001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_tableaux.output))) (rule (target testfile-bitv001_legacy.output) (deps (:input testfile-bitv001.ae)) @@ -129502,10 +126944,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv001.expected testfile-bitv001_legacy.output))) + (deps testfile-bitv001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_legacy.output))) (rule (target testfile-bitv001_dolmen.output) (deps (:input testfile-bitv001.ae)) @@ -129522,10 +126965,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv001.expected testfile-bitv001_dolmen.output))) + (deps testfile-bitv001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_dolmen.output))) (rule (target testfile-bitv001_fpa.output) (deps (:input testfile-bitv001.ae)) @@ -129542,10 +126986,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bitv001.expected testfile-bitv001_fpa.output)))) + (deps testfile-bitv001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bitv001.expected testfile-bitv001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -129569,12 +127014,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool050.expected - testfile-bool050_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool050_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool050.ae)) @@ -129595,12 +127039,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool050.expected - testfile-bool050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool050.ae)) @@ -129620,12 +127063,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool050.expected - testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool050_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool050.ae)) @@ -129644,12 +127086,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool050.expected - testfile-bool050_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool050_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool050.ae)) @@ -129668,12 +127109,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool050.expected - testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool050_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool050.ae)) @@ -129692,12 +127132,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool050.expected - testfile-bool050_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool050_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool050_cdcl.output) (deps (:input testfile-bool050.ae)) @@ -129715,10 +127154,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool050.expected testfile-bool050_cdcl.output))) + (deps testfile-bool050_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_cdcl.output))) (rule (target testfile-bool050_tableaux_cdcl.output) (deps (:input testfile-bool050.ae)) @@ -129736,10 +127176,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool050.expected testfile-bool050_tableaux_cdcl.output))) + (deps testfile-bool050_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_tableaux_cdcl.output))) (rule (target testfile-bool050_tableaux.output) (deps (:input testfile-bool050.ae)) @@ -129757,10 +127198,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool050.expected testfile-bool050_tableaux.output))) + (deps testfile-bool050_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_tableaux.output))) (rule (target testfile-bool050_legacy.output) (deps (:input testfile-bool050.ae)) @@ -129777,10 +127219,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool050.expected testfile-bool050_legacy.output))) + (deps testfile-bool050_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_legacy.output))) (rule (target testfile-bool050_dolmen.output) (deps (:input testfile-bool050.ae)) @@ -129797,10 +127240,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool050.expected testfile-bool050_dolmen.output))) + (deps testfile-bool050_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_dolmen.output))) (rule (target testfile-bool050_fpa.output) (deps (:input testfile-bool050.ae)) @@ -129817,10 +127261,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool050.expected testfile-bool050_fpa.output))) + (deps testfile-bool050_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool050.expected testfile-bool050_fpa.output))) (rule (target testfile-bool049_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool049.ae)) @@ -129839,12 +127284,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool049.expected - testfile-bool049_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool049_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool049.ae)) @@ -129865,12 +127309,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool049.expected - testfile-bool049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool049.ae)) @@ -129890,12 +127333,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool049.expected - testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool049_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool049.ae)) @@ -129914,12 +127356,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool049.expected - testfile-bool049_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool049_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool049.ae)) @@ -129938,12 +127379,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool049.expected - testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool049_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool049.ae)) @@ -129962,12 +127402,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool049.expected - testfile-bool049_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool049_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool049_cdcl.output) (deps (:input testfile-bool049.ae)) @@ -129985,10 +127424,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool049.expected testfile-bool049_cdcl.output))) + (deps testfile-bool049_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_cdcl.output))) (rule (target testfile-bool049_tableaux_cdcl.output) (deps (:input testfile-bool049.ae)) @@ -130006,10 +127446,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool049.expected testfile-bool049_tableaux_cdcl.output))) + (deps testfile-bool049_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_tableaux_cdcl.output))) (rule (target testfile-bool049_tableaux.output) (deps (:input testfile-bool049.ae)) @@ -130027,10 +127468,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool049.expected testfile-bool049_tableaux.output))) + (deps testfile-bool049_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_tableaux.output))) (rule (target testfile-bool049_legacy.output) (deps (:input testfile-bool049.ae)) @@ -130047,10 +127489,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool049.expected testfile-bool049_legacy.output))) + (deps testfile-bool049_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_legacy.output))) (rule (target testfile-bool049_dolmen.output) (deps (:input testfile-bool049.ae)) @@ -130067,10 +127510,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool049.expected testfile-bool049_dolmen.output))) + (deps testfile-bool049_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_dolmen.output))) (rule (target testfile-bool049_fpa.output) (deps (:input testfile-bool049.ae)) @@ -130087,10 +127531,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool049.expected testfile-bool049_fpa.output))) + (deps testfile-bool049_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool049.expected testfile-bool049_fpa.output))) (rule (target testfile-bool048_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool048.ae)) @@ -130109,12 +127554,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool048.expected - testfile-bool048_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool048_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool048.ae)) @@ -130135,12 +127579,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool048.expected - testfile-bool048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool048.ae)) @@ -130160,12 +127603,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool048.expected - testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool048_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool048.ae)) @@ -130184,12 +127626,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool048.expected - testfile-bool048_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool048_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool048.ae)) @@ -130208,12 +127649,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool048.expected - testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool048_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool048.ae)) @@ -130232,12 +127672,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool048.expected - testfile-bool048_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool048_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool048_cdcl.output) (deps (:input testfile-bool048.ae)) @@ -130255,10 +127694,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool048.expected testfile-bool048_cdcl.output))) + (deps testfile-bool048_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_cdcl.output))) (rule (target testfile-bool048_tableaux_cdcl.output) (deps (:input testfile-bool048.ae)) @@ -130276,10 +127716,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool048.expected testfile-bool048_tableaux_cdcl.output))) + (deps testfile-bool048_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_tableaux_cdcl.output))) (rule (target testfile-bool048_tableaux.output) (deps (:input testfile-bool048.ae)) @@ -130297,10 +127738,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool048.expected testfile-bool048_tableaux.output))) + (deps testfile-bool048_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_tableaux.output))) (rule (target testfile-bool048_legacy.output) (deps (:input testfile-bool048.ae)) @@ -130317,10 +127759,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool048.expected testfile-bool048_legacy.output))) + (deps testfile-bool048_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_legacy.output))) (rule (target testfile-bool048_dolmen.output) (deps (:input testfile-bool048.ae)) @@ -130337,10 +127780,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool048.expected testfile-bool048_dolmen.output))) + (deps testfile-bool048_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_dolmen.output))) (rule (target testfile-bool048_fpa.output) (deps (:input testfile-bool048.ae)) @@ -130357,10 +127801,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool048.expected testfile-bool048_fpa.output))) + (deps testfile-bool048_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool048.expected testfile-bool048_fpa.output))) (rule (target testfile-bool047_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool047.ae)) @@ -130379,12 +127824,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool047.expected - testfile-bool047_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool047_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool047.ae)) @@ -130405,12 +127849,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool047.expected - testfile-bool047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool047.ae)) @@ -130430,12 +127873,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool047.expected - testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool047_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool047.ae)) @@ -130454,12 +127896,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool047.expected - testfile-bool047_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool047_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool047.ae)) @@ -130478,12 +127919,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool047.expected - testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool047_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool047.ae)) @@ -130502,12 +127942,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool047.expected - testfile-bool047_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool047_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool047_cdcl.output) (deps (:input testfile-bool047.ae)) @@ -130525,10 +127964,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool047.expected testfile-bool047_cdcl.output))) + (deps testfile-bool047_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_cdcl.output))) (rule (target testfile-bool047_tableaux_cdcl.output) (deps (:input testfile-bool047.ae)) @@ -130546,10 +127986,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool047.expected testfile-bool047_tableaux_cdcl.output))) + (deps testfile-bool047_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_tableaux_cdcl.output))) (rule (target testfile-bool047_tableaux.output) (deps (:input testfile-bool047.ae)) @@ -130567,10 +128008,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool047.expected testfile-bool047_tableaux.output))) + (deps testfile-bool047_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_tableaux.output))) (rule (target testfile-bool047_legacy.output) (deps (:input testfile-bool047.ae)) @@ -130587,10 +128029,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool047.expected testfile-bool047_legacy.output))) + (deps testfile-bool047_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_legacy.output))) (rule (target testfile-bool047_dolmen.output) (deps (:input testfile-bool047.ae)) @@ -130607,10 +128050,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool047.expected testfile-bool047_dolmen.output))) + (deps testfile-bool047_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_dolmen.output))) (rule (target testfile-bool047_fpa.output) (deps (:input testfile-bool047.ae)) @@ -130627,10 +128071,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool047.expected testfile-bool047_fpa.output))) + (deps testfile-bool047_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool047.expected testfile-bool047_fpa.output))) (rule (target testfile-bool046_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool046.ae)) @@ -130649,12 +128094,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool046.expected - testfile-bool046_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool046_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool046.ae)) @@ -130675,12 +128119,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool046.expected - testfile-bool046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool046.ae)) @@ -130700,12 +128143,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool046.expected - testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool046_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool046.ae)) @@ -130724,12 +128166,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool046.expected - testfile-bool046_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool046_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool046.ae)) @@ -130748,12 +128189,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool046.expected - testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool046_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool046.ae)) @@ -130772,12 +128212,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool046.expected - testfile-bool046_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool046_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool046_cdcl.output) (deps (:input testfile-bool046.ae)) @@ -130795,10 +128234,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool046.expected testfile-bool046_cdcl.output))) + (deps testfile-bool046_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_cdcl.output))) (rule (target testfile-bool046_tableaux_cdcl.output) (deps (:input testfile-bool046.ae)) @@ -130816,10 +128256,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool046.expected testfile-bool046_tableaux_cdcl.output))) + (deps testfile-bool046_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_tableaux_cdcl.output))) (rule (target testfile-bool046_tableaux.output) (deps (:input testfile-bool046.ae)) @@ -130837,10 +128278,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool046.expected testfile-bool046_tableaux.output))) + (deps testfile-bool046_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_tableaux.output))) (rule (target testfile-bool046_legacy.output) (deps (:input testfile-bool046.ae)) @@ -130857,10 +128299,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool046.expected testfile-bool046_legacy.output))) + (deps testfile-bool046_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_legacy.output))) (rule (target testfile-bool046_dolmen.output) (deps (:input testfile-bool046.ae)) @@ -130877,10 +128320,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool046.expected testfile-bool046_dolmen.output))) + (deps testfile-bool046_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_dolmen.output))) (rule (target testfile-bool046_fpa.output) (deps (:input testfile-bool046.ae)) @@ -130897,10 +128341,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool046.expected testfile-bool046_fpa.output))) + (deps testfile-bool046_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool046.expected testfile-bool046_fpa.output))) (rule (target testfile-bool045_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool045.ae)) @@ -130919,12 +128364,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool045.expected - testfile-bool045_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool045_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool045.ae)) @@ -130945,12 +128389,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool045.expected - testfile-bool045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool045.ae)) @@ -130970,12 +128413,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool045.expected - testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool045_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool045.ae)) @@ -130994,12 +128436,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool045.expected - testfile-bool045_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool045_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool045.ae)) @@ -131018,12 +128459,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool045.expected - testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool045_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool045.ae)) @@ -131042,12 +128482,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool045.expected - testfile-bool045_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool045_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool045_cdcl.output) (deps (:input testfile-bool045.ae)) @@ -131065,10 +128504,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool045.expected testfile-bool045_cdcl.output))) + (deps testfile-bool045_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_cdcl.output))) (rule (target testfile-bool045_tableaux_cdcl.output) (deps (:input testfile-bool045.ae)) @@ -131086,10 +128526,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool045.expected testfile-bool045_tableaux_cdcl.output))) + (deps testfile-bool045_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_tableaux_cdcl.output))) (rule (target testfile-bool045_tableaux.output) (deps (:input testfile-bool045.ae)) @@ -131107,10 +128548,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool045.expected testfile-bool045_tableaux.output))) + (deps testfile-bool045_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_tableaux.output))) (rule (target testfile-bool045_legacy.output) (deps (:input testfile-bool045.ae)) @@ -131127,10 +128569,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool045.expected testfile-bool045_legacy.output))) + (deps testfile-bool045_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_legacy.output))) (rule (target testfile-bool045_dolmen.output) (deps (:input testfile-bool045.ae)) @@ -131147,10 +128590,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool045.expected testfile-bool045_dolmen.output))) + (deps testfile-bool045_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_dolmen.output))) (rule (target testfile-bool045_fpa.output) (deps (:input testfile-bool045.ae)) @@ -131167,10 +128611,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool045.expected testfile-bool045_fpa.output))) + (deps testfile-bool045_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool045.expected testfile-bool045_fpa.output))) (rule (target testfile-bool044_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool044.ae)) @@ -131189,12 +128634,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool044.expected - testfile-bool044_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool044_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool044.ae)) @@ -131215,12 +128659,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool044.expected - testfile-bool044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool044.ae)) @@ -131240,12 +128683,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool044.expected - testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool044_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool044.ae)) @@ -131264,12 +128706,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool044.expected - testfile-bool044_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool044_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool044.ae)) @@ -131288,12 +128729,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool044.expected - testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool044_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool044.ae)) @@ -131312,12 +128752,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool044.expected - testfile-bool044_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool044_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool044_cdcl.output) (deps (:input testfile-bool044.ae)) @@ -131335,10 +128774,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool044.expected testfile-bool044_cdcl.output))) + (deps testfile-bool044_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_cdcl.output))) (rule (target testfile-bool044_tableaux_cdcl.output) (deps (:input testfile-bool044.ae)) @@ -131356,10 +128796,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool044.expected testfile-bool044_tableaux_cdcl.output))) + (deps testfile-bool044_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_tableaux_cdcl.output))) (rule (target testfile-bool044_tableaux.output) (deps (:input testfile-bool044.ae)) @@ -131377,10 +128818,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool044.expected testfile-bool044_tableaux.output))) + (deps testfile-bool044_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_tableaux.output))) (rule (target testfile-bool044_legacy.output) (deps (:input testfile-bool044.ae)) @@ -131397,10 +128839,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool044.expected testfile-bool044_legacy.output))) + (deps testfile-bool044_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_legacy.output))) (rule (target testfile-bool044_dolmen.output) (deps (:input testfile-bool044.ae)) @@ -131417,10 +128860,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool044.expected testfile-bool044_dolmen.output))) + (deps testfile-bool044_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_dolmen.output))) (rule (target testfile-bool044_fpa.output) (deps (:input testfile-bool044.ae)) @@ -131437,10 +128881,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool044.expected testfile-bool044_fpa.output))) + (deps testfile-bool044_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool044.expected testfile-bool044_fpa.output))) (rule (target testfile-bool043_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool043.ae)) @@ -131459,12 +128904,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool043.expected - testfile-bool043_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool043_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool043.ae)) @@ -131485,12 +128929,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool043.expected - testfile-bool043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool043.ae)) @@ -131510,12 +128953,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool043.expected - testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool043_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool043.ae)) @@ -131534,12 +128976,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool043.expected - testfile-bool043_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool043_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool043.ae)) @@ -131558,12 +128999,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool043.expected - testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool043_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool043.ae)) @@ -131582,12 +129022,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool043.expected - testfile-bool043_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool043_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool043_cdcl.output) (deps (:input testfile-bool043.ae)) @@ -131605,10 +129044,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool043.expected testfile-bool043_cdcl.output))) + (deps testfile-bool043_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_cdcl.output))) (rule (target testfile-bool043_tableaux_cdcl.output) (deps (:input testfile-bool043.ae)) @@ -131626,10 +129066,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool043.expected testfile-bool043_tableaux_cdcl.output))) + (deps testfile-bool043_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_tableaux_cdcl.output))) (rule (target testfile-bool043_tableaux.output) (deps (:input testfile-bool043.ae)) @@ -131647,10 +129088,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool043.expected testfile-bool043_tableaux.output))) + (deps testfile-bool043_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_tableaux.output))) (rule (target testfile-bool043_legacy.output) (deps (:input testfile-bool043.ae)) @@ -131667,10 +129109,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool043.expected testfile-bool043_legacy.output))) + (deps testfile-bool043_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_legacy.output))) (rule (target testfile-bool043_dolmen.output) (deps (:input testfile-bool043.ae)) @@ -131687,10 +129130,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool043.expected testfile-bool043_dolmen.output))) + (deps testfile-bool043_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_dolmen.output))) (rule (target testfile-bool043_fpa.output) (deps (:input testfile-bool043.ae)) @@ -131707,10 +129151,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool043.expected testfile-bool043_fpa.output))) + (deps testfile-bool043_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool043.expected testfile-bool043_fpa.output))) (rule (target testfile-bool042_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool042.ae)) @@ -131729,12 +129174,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool042.expected - testfile-bool042_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool042_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool042.ae)) @@ -131755,12 +129199,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool042.expected - testfile-bool042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool042.ae)) @@ -131780,12 +129223,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool042.expected - testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool042_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool042.ae)) @@ -131804,12 +129246,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool042.expected - testfile-bool042_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool042_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool042.ae)) @@ -131828,12 +129269,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool042.expected - testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool042_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool042.ae)) @@ -131852,12 +129292,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool042.expected - testfile-bool042_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool042_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool042_cdcl.output) (deps (:input testfile-bool042.ae)) @@ -131875,10 +129314,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool042.expected testfile-bool042_cdcl.output))) + (deps testfile-bool042_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_cdcl.output))) (rule (target testfile-bool042_tableaux_cdcl.output) (deps (:input testfile-bool042.ae)) @@ -131896,10 +129336,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool042.expected testfile-bool042_tableaux_cdcl.output))) + (deps testfile-bool042_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_tableaux_cdcl.output))) (rule (target testfile-bool042_tableaux.output) (deps (:input testfile-bool042.ae)) @@ -131917,10 +129358,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool042.expected testfile-bool042_tableaux.output))) + (deps testfile-bool042_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_tableaux.output))) (rule (target testfile-bool042_legacy.output) (deps (:input testfile-bool042.ae)) @@ -131937,10 +129379,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool042.expected testfile-bool042_legacy.output))) + (deps testfile-bool042_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_legacy.output))) (rule (target testfile-bool042_dolmen.output) (deps (:input testfile-bool042.ae)) @@ -131957,10 +129400,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool042.expected testfile-bool042_dolmen.output))) + (deps testfile-bool042_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_dolmen.output))) (rule (target testfile-bool042_fpa.output) (deps (:input testfile-bool042.ae)) @@ -131977,10 +129421,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool042.expected testfile-bool042_fpa.output))) + (deps testfile-bool042_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool042.expected testfile-bool042_fpa.output))) (rule (target testfile-bool041_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool041.ae)) @@ -131999,12 +129444,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool041.expected - testfile-bool041_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool041_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool041.ae)) @@ -132025,12 +129469,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool041.expected - testfile-bool041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool041.ae)) @@ -132050,12 +129493,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool041.expected - testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool041_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool041.ae)) @@ -132074,12 +129516,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool041.expected - testfile-bool041_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool041_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool041.ae)) @@ -132098,12 +129539,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool041.expected - testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool041_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool041.ae)) @@ -132122,12 +129562,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool041.expected - testfile-bool041_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool041_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool041_cdcl.output) (deps (:input testfile-bool041.ae)) @@ -132145,10 +129584,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool041.expected testfile-bool041_cdcl.output))) + (deps testfile-bool041_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_cdcl.output))) (rule (target testfile-bool041_tableaux_cdcl.output) (deps (:input testfile-bool041.ae)) @@ -132166,10 +129606,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool041.expected testfile-bool041_tableaux_cdcl.output))) + (deps testfile-bool041_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_tableaux_cdcl.output))) (rule (target testfile-bool041_tableaux.output) (deps (:input testfile-bool041.ae)) @@ -132187,10 +129628,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool041.expected testfile-bool041_tableaux.output))) + (deps testfile-bool041_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_tableaux.output))) (rule (target testfile-bool041_legacy.output) (deps (:input testfile-bool041.ae)) @@ -132207,10 +129649,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool041.expected testfile-bool041_legacy.output))) + (deps testfile-bool041_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_legacy.output))) (rule (target testfile-bool041_dolmen.output) (deps (:input testfile-bool041.ae)) @@ -132227,10 +129670,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool041.expected testfile-bool041_dolmen.output))) + (deps testfile-bool041_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_dolmen.output))) (rule (target testfile-bool041_fpa.output) (deps (:input testfile-bool041.ae)) @@ -132247,10 +129691,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool041.expected testfile-bool041_fpa.output))) + (deps testfile-bool041_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool041.expected testfile-bool041_fpa.output))) (rule (target testfile-bool040_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool040.ae)) @@ -132269,12 +129714,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool040.expected - testfile-bool040_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool040_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool040.ae)) @@ -132295,12 +129739,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool040.expected - testfile-bool040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool040.ae)) @@ -132320,12 +129763,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool040.expected - testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool040_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool040.ae)) @@ -132344,12 +129786,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool040.expected - testfile-bool040_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool040_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool040.ae)) @@ -132368,12 +129809,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool040.expected - testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool040_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool040.ae)) @@ -132392,12 +129832,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool040.expected - testfile-bool040_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool040_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool040_cdcl.output) (deps (:input testfile-bool040.ae)) @@ -132415,10 +129854,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool040.expected testfile-bool040_cdcl.output))) + (deps testfile-bool040_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_cdcl.output))) (rule (target testfile-bool040_tableaux_cdcl.output) (deps (:input testfile-bool040.ae)) @@ -132436,10 +129876,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool040.expected testfile-bool040_tableaux_cdcl.output))) + (deps testfile-bool040_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_tableaux_cdcl.output))) (rule (target testfile-bool040_tableaux.output) (deps (:input testfile-bool040.ae)) @@ -132457,10 +129898,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool040.expected testfile-bool040_tableaux.output))) + (deps testfile-bool040_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_tableaux.output))) (rule (target testfile-bool040_legacy.output) (deps (:input testfile-bool040.ae)) @@ -132477,10 +129919,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool040.expected testfile-bool040_legacy.output))) + (deps testfile-bool040_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_legacy.output))) (rule (target testfile-bool040_dolmen.output) (deps (:input testfile-bool040.ae)) @@ -132497,10 +129940,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool040.expected testfile-bool040_dolmen.output))) + (deps testfile-bool040_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_dolmen.output))) (rule (target testfile-bool040_fpa.output) (deps (:input testfile-bool040.ae)) @@ -132517,10 +129961,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool040.expected testfile-bool040_fpa.output))) + (deps testfile-bool040_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool040.expected testfile-bool040_fpa.output))) (rule (target testfile-bool039_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool039.ae)) @@ -132539,12 +129984,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool039.expected - testfile-bool039_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool039_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool039.ae)) @@ -132565,12 +130009,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool039.expected - testfile-bool039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool039.ae)) @@ -132590,12 +130033,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool039.expected - testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool039_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool039.ae)) @@ -132614,12 +130056,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool039.expected - testfile-bool039_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool039_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool039.ae)) @@ -132638,12 +130079,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool039.expected - testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool039_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool039.ae)) @@ -132662,12 +130102,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool039.expected - testfile-bool039_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool039_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool039_cdcl.output) (deps (:input testfile-bool039.ae)) @@ -132685,10 +130124,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool039.expected testfile-bool039_cdcl.output))) + (deps testfile-bool039_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_cdcl.output))) (rule (target testfile-bool039_tableaux_cdcl.output) (deps (:input testfile-bool039.ae)) @@ -132706,10 +130146,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool039.expected testfile-bool039_tableaux_cdcl.output))) + (deps testfile-bool039_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_tableaux_cdcl.output))) (rule (target testfile-bool039_tableaux.output) (deps (:input testfile-bool039.ae)) @@ -132727,10 +130168,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool039.expected testfile-bool039_tableaux.output))) + (deps testfile-bool039_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_tableaux.output))) (rule (target testfile-bool039_legacy.output) (deps (:input testfile-bool039.ae)) @@ -132747,10 +130189,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool039.expected testfile-bool039_legacy.output))) + (deps testfile-bool039_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_legacy.output))) (rule (target testfile-bool039_dolmen.output) (deps (:input testfile-bool039.ae)) @@ -132767,10 +130210,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool039.expected testfile-bool039_dolmen.output))) + (deps testfile-bool039_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_dolmen.output))) (rule (target testfile-bool039_fpa.output) (deps (:input testfile-bool039.ae)) @@ -132787,10 +130231,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool039.expected testfile-bool039_fpa.output))) + (deps testfile-bool039_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool039.expected testfile-bool039_fpa.output))) (rule (target testfile-bool038_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool038.ae)) @@ -132809,12 +130254,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool038.expected - testfile-bool038_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool038_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool038.ae)) @@ -132835,12 +130279,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool038.expected - testfile-bool038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool038.ae)) @@ -132860,12 +130303,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool038.expected - testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool038_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool038.ae)) @@ -132884,12 +130326,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool038.expected - testfile-bool038_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool038_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool038.ae)) @@ -132908,12 +130349,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool038.expected - testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool038_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool038.ae)) @@ -132932,12 +130372,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool038.expected - testfile-bool038_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool038_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool038_cdcl.output) (deps (:input testfile-bool038.ae)) @@ -132955,10 +130394,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool038.expected testfile-bool038_cdcl.output))) + (deps testfile-bool038_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_cdcl.output))) (rule (target testfile-bool038_tableaux_cdcl.output) (deps (:input testfile-bool038.ae)) @@ -132976,10 +130416,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool038.expected testfile-bool038_tableaux_cdcl.output))) + (deps testfile-bool038_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_tableaux_cdcl.output))) (rule (target testfile-bool038_tableaux.output) (deps (:input testfile-bool038.ae)) @@ -132997,10 +130438,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool038.expected testfile-bool038_tableaux.output))) + (deps testfile-bool038_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_tableaux.output))) (rule (target testfile-bool038_legacy.output) (deps (:input testfile-bool038.ae)) @@ -133017,10 +130459,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool038.expected testfile-bool038_legacy.output))) + (deps testfile-bool038_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_legacy.output))) (rule (target testfile-bool038_dolmen.output) (deps (:input testfile-bool038.ae)) @@ -133037,10 +130480,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool038.expected testfile-bool038_dolmen.output))) + (deps testfile-bool038_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_dolmen.output))) (rule (target testfile-bool038_fpa.output) (deps (:input testfile-bool038.ae)) @@ -133057,10 +130501,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool038.expected testfile-bool038_fpa.output))) + (deps testfile-bool038_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool038.expected testfile-bool038_fpa.output))) (rule (target testfile-bool037_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool037.ae)) @@ -133079,12 +130524,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool037.expected - testfile-bool037_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool037_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool037.ae)) @@ -133105,12 +130549,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool037.expected - testfile-bool037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool037.ae)) @@ -133130,12 +130573,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool037.expected - testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool037_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool037.ae)) @@ -133154,12 +130596,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool037.expected - testfile-bool037_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool037_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool037.ae)) @@ -133178,12 +130619,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool037.expected - testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool037_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool037.ae)) @@ -133202,12 +130642,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool037.expected - testfile-bool037_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool037_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool037_cdcl.output) (deps (:input testfile-bool037.ae)) @@ -133225,10 +130664,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool037.expected testfile-bool037_cdcl.output))) + (deps testfile-bool037_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_cdcl.output))) (rule (target testfile-bool037_tableaux_cdcl.output) (deps (:input testfile-bool037.ae)) @@ -133246,10 +130686,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool037.expected testfile-bool037_tableaux_cdcl.output))) + (deps testfile-bool037_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_tableaux_cdcl.output))) (rule (target testfile-bool037_tableaux.output) (deps (:input testfile-bool037.ae)) @@ -133267,10 +130708,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool037.expected testfile-bool037_tableaux.output))) + (deps testfile-bool037_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_tableaux.output))) (rule (target testfile-bool037_legacy.output) (deps (:input testfile-bool037.ae)) @@ -133287,10 +130729,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool037.expected testfile-bool037_legacy.output))) + (deps testfile-bool037_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_legacy.output))) (rule (target testfile-bool037_dolmen.output) (deps (:input testfile-bool037.ae)) @@ -133307,10 +130750,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool037.expected testfile-bool037_dolmen.output))) + (deps testfile-bool037_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_dolmen.output))) (rule (target testfile-bool037_fpa.output) (deps (:input testfile-bool037.ae)) @@ -133327,10 +130771,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool037.expected testfile-bool037_fpa.output))) + (deps testfile-bool037_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool037.expected testfile-bool037_fpa.output))) (rule (target testfile-bool036_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool036.ae)) @@ -133349,12 +130794,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool036.expected - testfile-bool036_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool036_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool036.ae)) @@ -133375,12 +130819,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool036.expected - testfile-bool036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool036.ae)) @@ -133400,12 +130843,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool036.expected - testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool036_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool036.ae)) @@ -133424,12 +130866,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool036.expected - testfile-bool036_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool036_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool036.ae)) @@ -133448,12 +130889,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool036.expected - testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool036_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool036.ae)) @@ -133472,12 +130912,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool036.expected - testfile-bool036_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool036_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool036_cdcl.output) (deps (:input testfile-bool036.ae)) @@ -133495,10 +130934,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool036.expected testfile-bool036_cdcl.output))) + (deps testfile-bool036_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_cdcl.output))) (rule (target testfile-bool036_tableaux_cdcl.output) (deps (:input testfile-bool036.ae)) @@ -133516,10 +130956,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool036.expected testfile-bool036_tableaux_cdcl.output))) + (deps testfile-bool036_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_tableaux_cdcl.output))) (rule (target testfile-bool036_tableaux.output) (deps (:input testfile-bool036.ae)) @@ -133537,10 +130978,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool036.expected testfile-bool036_tableaux.output))) + (deps testfile-bool036_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_tableaux.output))) (rule (target testfile-bool036_legacy.output) (deps (:input testfile-bool036.ae)) @@ -133557,10 +130999,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool036.expected testfile-bool036_legacy.output))) + (deps testfile-bool036_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_legacy.output))) (rule (target testfile-bool036_dolmen.output) (deps (:input testfile-bool036.ae)) @@ -133577,10 +131020,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool036.expected testfile-bool036_dolmen.output))) + (deps testfile-bool036_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_dolmen.output))) (rule (target testfile-bool036_fpa.output) (deps (:input testfile-bool036.ae)) @@ -133597,10 +131041,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool036.expected testfile-bool036_fpa.output))) + (deps testfile-bool036_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool036.expected testfile-bool036_fpa.output))) (rule (target testfile-bool035_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool035.ae)) @@ -133619,12 +131064,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool035.expected - testfile-bool035_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool035_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool035.ae)) @@ -133645,12 +131089,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool035.expected - testfile-bool035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool035.ae)) @@ -133670,12 +131113,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool035.expected - testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool035_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool035.ae)) @@ -133694,12 +131136,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool035.expected - testfile-bool035_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool035_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool035.ae)) @@ -133718,12 +131159,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool035.expected - testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool035_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool035.ae)) @@ -133742,12 +131182,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool035.expected - testfile-bool035_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool035_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool035_cdcl.output) (deps (:input testfile-bool035.ae)) @@ -133765,10 +131204,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool035.expected testfile-bool035_cdcl.output))) + (deps testfile-bool035_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_cdcl.output))) (rule (target testfile-bool035_tableaux_cdcl.output) (deps (:input testfile-bool035.ae)) @@ -133786,10 +131226,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool035.expected testfile-bool035_tableaux_cdcl.output))) + (deps testfile-bool035_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_tableaux_cdcl.output))) (rule (target testfile-bool035_tableaux.output) (deps (:input testfile-bool035.ae)) @@ -133807,10 +131248,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool035.expected testfile-bool035_tableaux.output))) + (deps testfile-bool035_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_tableaux.output))) (rule (target testfile-bool035_legacy.output) (deps (:input testfile-bool035.ae)) @@ -133827,10 +131269,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool035.expected testfile-bool035_legacy.output))) + (deps testfile-bool035_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_legacy.output))) (rule (target testfile-bool035_dolmen.output) (deps (:input testfile-bool035.ae)) @@ -133847,10 +131290,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool035.expected testfile-bool035_dolmen.output))) + (deps testfile-bool035_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_dolmen.output))) (rule (target testfile-bool035_fpa.output) (deps (:input testfile-bool035.ae)) @@ -133867,10 +131311,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool035.expected testfile-bool035_fpa.output))) + (deps testfile-bool035_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool035.expected testfile-bool035_fpa.output))) (rule (target testfile-bool034_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool034.ae)) @@ -133889,12 +131334,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool034.expected - testfile-bool034_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool034_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool034.ae)) @@ -133915,12 +131359,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool034.expected - testfile-bool034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool034.ae)) @@ -133940,12 +131383,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool034.expected - testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool034_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool034.ae)) @@ -133964,12 +131406,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool034.expected - testfile-bool034_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool034_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool034.ae)) @@ -133988,12 +131429,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool034.expected - testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool034_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool034.ae)) @@ -134012,12 +131452,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool034.expected - testfile-bool034_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool034_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool034_cdcl.output) (deps (:input testfile-bool034.ae)) @@ -134035,10 +131474,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool034.expected testfile-bool034_cdcl.output))) + (deps testfile-bool034_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_cdcl.output))) (rule (target testfile-bool034_tableaux_cdcl.output) (deps (:input testfile-bool034.ae)) @@ -134056,10 +131496,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool034.expected testfile-bool034_tableaux_cdcl.output))) + (deps testfile-bool034_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_tableaux_cdcl.output))) (rule (target testfile-bool034_tableaux.output) (deps (:input testfile-bool034.ae)) @@ -134077,10 +131518,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool034.expected testfile-bool034_tableaux.output))) + (deps testfile-bool034_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_tableaux.output))) (rule (target testfile-bool034_legacy.output) (deps (:input testfile-bool034.ae)) @@ -134097,10 +131539,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool034.expected testfile-bool034_legacy.output))) + (deps testfile-bool034_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_legacy.output))) (rule (target testfile-bool034_dolmen.output) (deps (:input testfile-bool034.ae)) @@ -134117,10 +131560,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool034.expected testfile-bool034_dolmen.output))) + (deps testfile-bool034_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_dolmen.output))) (rule (target testfile-bool034_fpa.output) (deps (:input testfile-bool034.ae)) @@ -134137,10 +131581,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool034.expected testfile-bool034_fpa.output))) + (deps testfile-bool034_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool034.expected testfile-bool034_fpa.output))) (rule (target testfile-bool033_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool033.ae)) @@ -134159,12 +131604,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool033.expected - testfile-bool033_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool033_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool033.ae)) @@ -134185,12 +131629,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool033.expected - testfile-bool033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool033.ae)) @@ -134210,12 +131653,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool033.expected - testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool033_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool033.ae)) @@ -134234,12 +131676,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool033.expected - testfile-bool033_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool033_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool033.ae)) @@ -134258,12 +131699,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool033.expected - testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool033_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool033.ae)) @@ -134282,12 +131722,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool033.expected - testfile-bool033_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool033_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool033_cdcl.output) (deps (:input testfile-bool033.ae)) @@ -134305,10 +131744,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool033.expected testfile-bool033_cdcl.output))) + (deps testfile-bool033_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_cdcl.output))) (rule (target testfile-bool033_tableaux_cdcl.output) (deps (:input testfile-bool033.ae)) @@ -134326,10 +131766,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool033.expected testfile-bool033_tableaux_cdcl.output))) + (deps testfile-bool033_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_tableaux_cdcl.output))) (rule (target testfile-bool033_tableaux.output) (deps (:input testfile-bool033.ae)) @@ -134347,10 +131788,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool033.expected testfile-bool033_tableaux.output))) + (deps testfile-bool033_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_tableaux.output))) (rule (target testfile-bool033_legacy.output) (deps (:input testfile-bool033.ae)) @@ -134367,10 +131809,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool033.expected testfile-bool033_legacy.output))) + (deps testfile-bool033_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_legacy.output))) (rule (target testfile-bool033_dolmen.output) (deps (:input testfile-bool033.ae)) @@ -134387,10 +131830,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool033.expected testfile-bool033_dolmen.output))) + (deps testfile-bool033_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_dolmen.output))) (rule (target testfile-bool033_fpa.output) (deps (:input testfile-bool033.ae)) @@ -134407,10 +131851,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool033.expected testfile-bool033_fpa.output))) + (deps testfile-bool033_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool033.expected testfile-bool033_fpa.output))) (rule (target testfile-bool032_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool032.ae)) @@ -134429,12 +131874,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool032.expected - testfile-bool032_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool032_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool032.ae)) @@ -134455,12 +131899,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool032.expected - testfile-bool032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool032.ae)) @@ -134480,12 +131923,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool032.expected - testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool032_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool032.ae)) @@ -134504,12 +131946,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool032.expected - testfile-bool032_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool032_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool032.ae)) @@ -134528,12 +131969,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool032.expected - testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool032_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool032.ae)) @@ -134552,12 +131992,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool032.expected - testfile-bool032_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool032_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool032_cdcl.output) (deps (:input testfile-bool032.ae)) @@ -134575,10 +132014,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool032.expected testfile-bool032_cdcl.output))) + (deps testfile-bool032_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_cdcl.output))) (rule (target testfile-bool032_tableaux_cdcl.output) (deps (:input testfile-bool032.ae)) @@ -134596,10 +132036,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool032.expected testfile-bool032_tableaux_cdcl.output))) + (deps testfile-bool032_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_tableaux_cdcl.output))) (rule (target testfile-bool032_tableaux.output) (deps (:input testfile-bool032.ae)) @@ -134617,10 +132058,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool032.expected testfile-bool032_tableaux.output))) + (deps testfile-bool032_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_tableaux.output))) (rule (target testfile-bool032_legacy.output) (deps (:input testfile-bool032.ae)) @@ -134637,10 +132079,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool032.expected testfile-bool032_legacy.output))) + (deps testfile-bool032_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_legacy.output))) (rule (target testfile-bool032_dolmen.output) (deps (:input testfile-bool032.ae)) @@ -134657,10 +132100,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool032.expected testfile-bool032_dolmen.output))) + (deps testfile-bool032_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_dolmen.output))) (rule (target testfile-bool032_fpa.output) (deps (:input testfile-bool032.ae)) @@ -134677,10 +132121,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool032.expected testfile-bool032_fpa.output))) + (deps testfile-bool032_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool032.expected testfile-bool032_fpa.output))) (rule (target testfile-bool031_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool031.ae)) @@ -134699,12 +132144,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool031.expected - testfile-bool031_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool031_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool031.ae)) @@ -134725,12 +132169,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool031.expected - testfile-bool031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool031.ae)) @@ -134750,12 +132193,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool031.expected - testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool031_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool031.ae)) @@ -134774,12 +132216,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool031.expected - testfile-bool031_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool031_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool031.ae)) @@ -134798,12 +132239,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool031.expected - testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool031_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool031.ae)) @@ -134822,12 +132262,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool031.expected - testfile-bool031_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool031_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool031_cdcl.output) (deps (:input testfile-bool031.ae)) @@ -134845,10 +132284,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool031.expected testfile-bool031_cdcl.output))) + (deps testfile-bool031_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_cdcl.output))) (rule (target testfile-bool031_tableaux_cdcl.output) (deps (:input testfile-bool031.ae)) @@ -134866,10 +132306,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool031.expected testfile-bool031_tableaux_cdcl.output))) + (deps testfile-bool031_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_tableaux_cdcl.output))) (rule (target testfile-bool031_tableaux.output) (deps (:input testfile-bool031.ae)) @@ -134887,10 +132328,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool031.expected testfile-bool031_tableaux.output))) + (deps testfile-bool031_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_tableaux.output))) (rule (target testfile-bool031_legacy.output) (deps (:input testfile-bool031.ae)) @@ -134907,10 +132349,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool031.expected testfile-bool031_legacy.output))) + (deps testfile-bool031_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_legacy.output))) (rule (target testfile-bool031_dolmen.output) (deps (:input testfile-bool031.ae)) @@ -134927,10 +132370,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool031.expected testfile-bool031_dolmen.output))) + (deps testfile-bool031_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_dolmen.output))) (rule (target testfile-bool031_fpa.output) (deps (:input testfile-bool031.ae)) @@ -134947,10 +132391,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool031.expected testfile-bool031_fpa.output))) + (deps testfile-bool031_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool031.expected testfile-bool031_fpa.output))) (rule (target testfile-bool030_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool030.ae)) @@ -134969,12 +132414,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool030.expected - testfile-bool030_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool030_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool030.ae)) @@ -134995,12 +132439,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool030.expected - testfile-bool030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool030.ae)) @@ -135020,12 +132463,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool030.expected - testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool030_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool030.ae)) @@ -135044,12 +132486,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool030.expected - testfile-bool030_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool030_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool030.ae)) @@ -135068,12 +132509,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool030.expected - testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool030_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool030.ae)) @@ -135092,12 +132532,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool030.expected - testfile-bool030_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool030_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool030_cdcl.output) (deps (:input testfile-bool030.ae)) @@ -135115,10 +132554,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool030.expected testfile-bool030_cdcl.output))) + (deps testfile-bool030_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_cdcl.output))) (rule (target testfile-bool030_tableaux_cdcl.output) (deps (:input testfile-bool030.ae)) @@ -135136,10 +132576,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool030.expected testfile-bool030_tableaux_cdcl.output))) + (deps testfile-bool030_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_tableaux_cdcl.output))) (rule (target testfile-bool030_tableaux.output) (deps (:input testfile-bool030.ae)) @@ -135157,10 +132598,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool030.expected testfile-bool030_tableaux.output))) + (deps testfile-bool030_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_tableaux.output))) (rule (target testfile-bool030_legacy.output) (deps (:input testfile-bool030.ae)) @@ -135177,10 +132619,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool030.expected testfile-bool030_legacy.output))) + (deps testfile-bool030_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_legacy.output))) (rule (target testfile-bool030_dolmen.output) (deps (:input testfile-bool030.ae)) @@ -135197,10 +132640,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool030.expected testfile-bool030_dolmen.output))) + (deps testfile-bool030_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_dolmen.output))) (rule (target testfile-bool030_fpa.output) (deps (:input testfile-bool030.ae)) @@ -135217,10 +132661,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool030.expected testfile-bool030_fpa.output))) + (deps testfile-bool030_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool030.expected testfile-bool030_fpa.output))) (rule (target testfile-bool029_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool029.ae)) @@ -135239,12 +132684,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool029.expected - testfile-bool029_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool029_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool029.ae)) @@ -135265,12 +132709,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool029.expected - testfile-bool029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool029.ae)) @@ -135290,12 +132733,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool029.expected - testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool029_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool029.ae)) @@ -135314,12 +132756,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool029.expected - testfile-bool029_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool029_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool029.ae)) @@ -135338,12 +132779,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool029.expected - testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool029_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool029.ae)) @@ -135362,12 +132802,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool029.expected - testfile-bool029_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool029_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool029_cdcl.output) (deps (:input testfile-bool029.ae)) @@ -135385,10 +132824,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool029.expected testfile-bool029_cdcl.output))) + (deps testfile-bool029_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_cdcl.output))) (rule (target testfile-bool029_tableaux_cdcl.output) (deps (:input testfile-bool029.ae)) @@ -135406,10 +132846,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool029.expected testfile-bool029_tableaux_cdcl.output))) + (deps testfile-bool029_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_tableaux_cdcl.output))) (rule (target testfile-bool029_tableaux.output) (deps (:input testfile-bool029.ae)) @@ -135427,10 +132868,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool029.expected testfile-bool029_tableaux.output))) + (deps testfile-bool029_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_tableaux.output))) (rule (target testfile-bool029_legacy.output) (deps (:input testfile-bool029.ae)) @@ -135447,10 +132889,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool029.expected testfile-bool029_legacy.output))) + (deps testfile-bool029_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_legacy.output))) (rule (target testfile-bool029_dolmen.output) (deps (:input testfile-bool029.ae)) @@ -135467,10 +132910,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool029.expected testfile-bool029_dolmen.output))) + (deps testfile-bool029_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_dolmen.output))) (rule (target testfile-bool029_fpa.output) (deps (:input testfile-bool029.ae)) @@ -135487,10 +132931,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool029.expected testfile-bool029_fpa.output))) + (deps testfile-bool029_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool029.expected testfile-bool029_fpa.output))) (rule (target testfile-bool028_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool028.ae)) @@ -135509,12 +132954,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool028.expected - testfile-bool028_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool028_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool028.ae)) @@ -135535,12 +132979,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool028.expected - testfile-bool028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool028.ae)) @@ -135560,12 +133003,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool028.expected - testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool028_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool028.ae)) @@ -135584,12 +133026,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool028.expected - testfile-bool028_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool028_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool028.ae)) @@ -135608,12 +133049,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool028.expected - testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool028_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool028.ae)) @@ -135632,12 +133072,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool028.expected - testfile-bool028_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool028_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool028_cdcl.output) (deps (:input testfile-bool028.ae)) @@ -135655,10 +133094,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool028.expected testfile-bool028_cdcl.output))) + (deps testfile-bool028_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_cdcl.output))) (rule (target testfile-bool028_tableaux_cdcl.output) (deps (:input testfile-bool028.ae)) @@ -135676,10 +133116,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool028.expected testfile-bool028_tableaux_cdcl.output))) + (deps testfile-bool028_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_tableaux_cdcl.output))) (rule (target testfile-bool028_tableaux.output) (deps (:input testfile-bool028.ae)) @@ -135697,10 +133138,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool028.expected testfile-bool028_tableaux.output))) + (deps testfile-bool028_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_tableaux.output))) (rule (target testfile-bool028_legacy.output) (deps (:input testfile-bool028.ae)) @@ -135717,10 +133159,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool028.expected testfile-bool028_legacy.output))) + (deps testfile-bool028_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_legacy.output))) (rule (target testfile-bool028_dolmen.output) (deps (:input testfile-bool028.ae)) @@ -135737,10 +133180,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool028.expected testfile-bool028_dolmen.output))) + (deps testfile-bool028_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_dolmen.output))) (rule (target testfile-bool028_fpa.output) (deps (:input testfile-bool028.ae)) @@ -135757,10 +133201,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool028.expected testfile-bool028_fpa.output))) + (deps testfile-bool028_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool028.expected testfile-bool028_fpa.output))) (rule (target testfile-bool027_bis_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool027_bis.ae)) @@ -135779,12 +133224,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool027_bis_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool027_bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool027_bis.ae)) @@ -135805,12 +133249,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool027_bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool027_bis.ae)) @@ -135830,12 +133273,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool027_bis_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool027_bis.ae)) @@ -135854,12 +133296,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool027_bis_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool027_bis.ae)) @@ -135878,12 +133319,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool027_bis_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool027_bis.ae)) @@ -135902,12 +133342,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool027_bis_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool027_bis_cdcl.output) (deps (:input testfile-bool027_bis.ae)) @@ -135925,10 +133364,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool027_bis.expected testfile-bool027_bis_cdcl.output))) + (deps testfile-bool027_bis_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_cdcl.output))) (rule (target testfile-bool027_bis_tableaux_cdcl.output) (deps (:input testfile-bool027_bis.ae)) @@ -135946,12 +133386,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_tableaux_cdcl.output))) + (deps testfile-bool027_bis_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_tableaux_cdcl.output))) (rule (target testfile-bool027_bis_tableaux.output) (deps (:input testfile-bool027_bis.ae)) @@ -135969,12 +133408,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-bool027_bis.expected - testfile-bool027_bis_tableaux.output))) + (deps testfile-bool027_bis_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_tableaux.output))) (rule (target testfile-bool027_bis_legacy.output) (deps (:input testfile-bool027_bis.ae)) @@ -135991,10 +133429,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool027_bis.expected testfile-bool027_bis_legacy.output))) + (deps testfile-bool027_bis_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_legacy.output))) (rule (target testfile-bool027_bis_dolmen.output) (deps (:input testfile-bool027_bis.ae)) @@ -136011,10 +133450,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool027_bis.expected testfile-bool027_bis_dolmen.output))) + (deps testfile-bool027_bis_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_dolmen.output))) (rule (target testfile-bool027_bis_fpa.output) (deps (:input testfile-bool027_bis.ae)) @@ -136031,10 +133471,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool027_bis.expected testfile-bool027_bis_fpa.output))) + (deps testfile-bool027_bis_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool027_bis.expected testfile-bool027_bis_fpa.output))) (rule (target testfile-bool026_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool026.ae)) @@ -136053,12 +133494,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool026.expected - testfile-bool026_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool026_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool026.ae)) @@ -136079,12 +133519,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool026.expected - testfile-bool026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool026.ae)) @@ -136104,12 +133543,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool026.expected - testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool026_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool026.ae)) @@ -136128,12 +133566,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool026.expected - testfile-bool026_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool026_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool026.ae)) @@ -136152,12 +133589,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool026.expected - testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool026_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool026.ae)) @@ -136176,12 +133612,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool026.expected - testfile-bool026_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool026_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool026_cdcl.output) (deps (:input testfile-bool026.ae)) @@ -136199,10 +133634,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool026.expected testfile-bool026_cdcl.output))) + (deps testfile-bool026_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_cdcl.output))) (rule (target testfile-bool026_tableaux_cdcl.output) (deps (:input testfile-bool026.ae)) @@ -136220,10 +133656,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool026.expected testfile-bool026_tableaux_cdcl.output))) + (deps testfile-bool026_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_tableaux_cdcl.output))) (rule (target testfile-bool026_tableaux.output) (deps (:input testfile-bool026.ae)) @@ -136241,10 +133678,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool026.expected testfile-bool026_tableaux.output))) + (deps testfile-bool026_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_tableaux.output))) (rule (target testfile-bool026_legacy.output) (deps (:input testfile-bool026.ae)) @@ -136261,10 +133699,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool026.expected testfile-bool026_legacy.output))) + (deps testfile-bool026_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_legacy.output))) (rule (target testfile-bool026_dolmen.output) (deps (:input testfile-bool026.ae)) @@ -136281,10 +133720,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool026.expected testfile-bool026_dolmen.output))) + (deps testfile-bool026_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_dolmen.output))) (rule (target testfile-bool026_fpa.output) (deps (:input testfile-bool026.ae)) @@ -136301,10 +133741,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool026.expected testfile-bool026_fpa.output))) + (deps testfile-bool026_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool026.expected testfile-bool026_fpa.output))) (rule (target testfile-bool025_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool025.ae)) @@ -136323,12 +133764,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool025.expected - testfile-bool025_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool025_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool025.ae)) @@ -136349,12 +133789,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool025.expected - testfile-bool025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool025.ae)) @@ -136374,12 +133813,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool025.expected - testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool025_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool025.ae)) @@ -136398,12 +133836,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool025.expected - testfile-bool025_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool025_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool025.ae)) @@ -136422,12 +133859,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool025.expected - testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool025_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool025.ae)) @@ -136446,12 +133882,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool025.expected - testfile-bool025_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool025_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool025_cdcl.output) (deps (:input testfile-bool025.ae)) @@ -136469,10 +133904,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool025.expected testfile-bool025_cdcl.output))) + (deps testfile-bool025_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_cdcl.output))) (rule (target testfile-bool025_tableaux_cdcl.output) (deps (:input testfile-bool025.ae)) @@ -136490,10 +133926,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool025.expected testfile-bool025_tableaux_cdcl.output))) + (deps testfile-bool025_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_tableaux_cdcl.output))) (rule (target testfile-bool025_tableaux.output) (deps (:input testfile-bool025.ae)) @@ -136511,10 +133948,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool025.expected testfile-bool025_tableaux.output))) + (deps testfile-bool025_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_tableaux.output))) (rule (target testfile-bool025_legacy.output) (deps (:input testfile-bool025.ae)) @@ -136531,10 +133969,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool025.expected testfile-bool025_legacy.output))) + (deps testfile-bool025_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_legacy.output))) (rule (target testfile-bool025_dolmen.output) (deps (:input testfile-bool025.ae)) @@ -136551,10 +133990,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool025.expected testfile-bool025_dolmen.output))) + (deps testfile-bool025_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_dolmen.output))) (rule (target testfile-bool025_fpa.output) (deps (:input testfile-bool025.ae)) @@ -136571,10 +134011,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool025.expected testfile-bool025_fpa.output))) + (deps testfile-bool025_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool025.expected testfile-bool025_fpa.output))) (rule (target testfile-bool024_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool024.ae)) @@ -136593,12 +134034,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool024.expected - testfile-bool024_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool024_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool024.ae)) @@ -136619,12 +134059,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool024.expected - testfile-bool024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool024.ae)) @@ -136644,12 +134083,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool024.expected - testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool024_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool024.ae)) @@ -136668,12 +134106,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool024.expected - testfile-bool024_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool024_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool024.ae)) @@ -136692,12 +134129,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool024.expected - testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool024_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool024.ae)) @@ -136716,12 +134152,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool024.expected - testfile-bool024_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool024_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool024_cdcl.output) (deps (:input testfile-bool024.ae)) @@ -136739,10 +134174,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool024.expected testfile-bool024_cdcl.output))) + (deps testfile-bool024_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_cdcl.output))) (rule (target testfile-bool024_tableaux_cdcl.output) (deps (:input testfile-bool024.ae)) @@ -136760,10 +134196,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool024.expected testfile-bool024_tableaux_cdcl.output))) + (deps testfile-bool024_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_tableaux_cdcl.output))) (rule (target testfile-bool024_tableaux.output) (deps (:input testfile-bool024.ae)) @@ -136781,10 +134218,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool024.expected testfile-bool024_tableaux.output))) + (deps testfile-bool024_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_tableaux.output))) (rule (target testfile-bool024_legacy.output) (deps (:input testfile-bool024.ae)) @@ -136801,10 +134239,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool024.expected testfile-bool024_legacy.output))) + (deps testfile-bool024_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_legacy.output))) (rule (target testfile-bool024_dolmen.output) (deps (:input testfile-bool024.ae)) @@ -136821,10 +134260,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool024.expected testfile-bool024_dolmen.output))) + (deps testfile-bool024_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_dolmen.output))) (rule (target testfile-bool024_fpa.output) (deps (:input testfile-bool024.ae)) @@ -136841,10 +134281,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool024.expected testfile-bool024_fpa.output))) + (deps testfile-bool024_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool024.expected testfile-bool024_fpa.output))) (rule (target testfile-bool023_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool023.ae)) @@ -136863,12 +134304,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool023.expected - testfile-bool023_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool023_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool023.ae)) @@ -136889,12 +134329,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool023.expected - testfile-bool023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool023.ae)) @@ -136914,12 +134353,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool023.expected - testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool023_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool023.ae)) @@ -136938,12 +134376,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool023.expected - testfile-bool023_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool023_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool023.ae)) @@ -136962,12 +134399,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool023.expected - testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool023_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool023.ae)) @@ -136986,12 +134422,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool023.expected - testfile-bool023_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool023_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool023_cdcl.output) (deps (:input testfile-bool023.ae)) @@ -137009,10 +134444,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool023.expected testfile-bool023_cdcl.output))) + (deps testfile-bool023_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_cdcl.output))) (rule (target testfile-bool023_tableaux_cdcl.output) (deps (:input testfile-bool023.ae)) @@ -137030,10 +134466,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool023.expected testfile-bool023_tableaux_cdcl.output))) + (deps testfile-bool023_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_tableaux_cdcl.output))) (rule (target testfile-bool023_tableaux.output) (deps (:input testfile-bool023.ae)) @@ -137051,10 +134488,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool023.expected testfile-bool023_tableaux.output))) + (deps testfile-bool023_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_tableaux.output))) (rule (target testfile-bool023_legacy.output) (deps (:input testfile-bool023.ae)) @@ -137071,10 +134509,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool023.expected testfile-bool023_legacy.output))) + (deps testfile-bool023_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_legacy.output))) (rule (target testfile-bool023_dolmen.output) (deps (:input testfile-bool023.ae)) @@ -137091,10 +134530,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool023.expected testfile-bool023_dolmen.output))) + (deps testfile-bool023_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_dolmen.output))) (rule (target testfile-bool023_fpa.output) (deps (:input testfile-bool023.ae)) @@ -137111,10 +134551,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool023.expected testfile-bool023_fpa.output))) + (deps testfile-bool023_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool023.expected testfile-bool023_fpa.output))) (rule (target testfile-bool022_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool022.ae)) @@ -137133,12 +134574,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool022.expected - testfile-bool022_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool022_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool022.ae)) @@ -137159,12 +134599,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool022.expected - testfile-bool022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool022.ae)) @@ -137184,12 +134623,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool022.expected - testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool022_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool022.ae)) @@ -137208,12 +134646,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool022.expected - testfile-bool022_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool022_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool022.ae)) @@ -137232,12 +134669,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool022.expected - testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool022_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool022.ae)) @@ -137256,12 +134692,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool022.expected - testfile-bool022_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool022_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool022_cdcl.output) (deps (:input testfile-bool022.ae)) @@ -137279,10 +134714,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool022.expected testfile-bool022_cdcl.output))) + (deps testfile-bool022_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_cdcl.output))) (rule (target testfile-bool022_tableaux_cdcl.output) (deps (:input testfile-bool022.ae)) @@ -137300,10 +134736,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool022.expected testfile-bool022_tableaux_cdcl.output))) + (deps testfile-bool022_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_tableaux_cdcl.output))) (rule (target testfile-bool022_tableaux.output) (deps (:input testfile-bool022.ae)) @@ -137321,10 +134758,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool022.expected testfile-bool022_tableaux.output))) + (deps testfile-bool022_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_tableaux.output))) (rule (target testfile-bool022_legacy.output) (deps (:input testfile-bool022.ae)) @@ -137341,10 +134779,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool022.expected testfile-bool022_legacy.output))) + (deps testfile-bool022_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_legacy.output))) (rule (target testfile-bool022_dolmen.output) (deps (:input testfile-bool022.ae)) @@ -137361,10 +134800,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool022.expected testfile-bool022_dolmen.output))) + (deps testfile-bool022_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_dolmen.output))) (rule (target testfile-bool022_fpa.output) (deps (:input testfile-bool022.ae)) @@ -137381,10 +134821,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool022.expected testfile-bool022_fpa.output))) + (deps testfile-bool022_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool022.expected testfile-bool022_fpa.output))) (rule (target testfile-bool021_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool021.ae)) @@ -137403,12 +134844,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool021.expected - testfile-bool021_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool021_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool021.ae)) @@ -137429,12 +134869,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool021.expected - testfile-bool021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool021.ae)) @@ -137454,12 +134893,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool021.expected - testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool021_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool021.ae)) @@ -137478,12 +134916,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool021.expected - testfile-bool021_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool021_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool021.ae)) @@ -137502,12 +134939,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool021.expected - testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool021_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool021.ae)) @@ -137526,12 +134962,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool021.expected - testfile-bool021_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool021_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool021_cdcl.output) (deps (:input testfile-bool021.ae)) @@ -137549,10 +134984,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool021.expected testfile-bool021_cdcl.output))) + (deps testfile-bool021_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_cdcl.output))) (rule (target testfile-bool021_tableaux_cdcl.output) (deps (:input testfile-bool021.ae)) @@ -137570,10 +135006,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool021.expected testfile-bool021_tableaux_cdcl.output))) + (deps testfile-bool021_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_tableaux_cdcl.output))) (rule (target testfile-bool021_tableaux.output) (deps (:input testfile-bool021.ae)) @@ -137591,10 +135028,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool021.expected testfile-bool021_tableaux.output))) + (deps testfile-bool021_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_tableaux.output))) (rule (target testfile-bool021_legacy.output) (deps (:input testfile-bool021.ae)) @@ -137611,10 +135049,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool021.expected testfile-bool021_legacy.output))) + (deps testfile-bool021_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_legacy.output))) (rule (target testfile-bool021_dolmen.output) (deps (:input testfile-bool021.ae)) @@ -137631,10 +135070,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool021.expected testfile-bool021_dolmen.output))) + (deps testfile-bool021_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_dolmen.output))) (rule (target testfile-bool021_fpa.output) (deps (:input testfile-bool021.ae)) @@ -137651,10 +135091,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool021.expected testfile-bool021_fpa.output))) + (deps testfile-bool021_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool021.expected testfile-bool021_fpa.output))) (rule (target testfile-bool020_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool020.ae)) @@ -137673,12 +135114,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool020.expected - testfile-bool020_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool020_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool020.ae)) @@ -137699,12 +135139,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool020.expected - testfile-bool020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool020.ae)) @@ -137724,12 +135163,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool020.expected - testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool020_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool020.ae)) @@ -137748,12 +135186,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool020.expected - testfile-bool020_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool020_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool020.ae)) @@ -137772,12 +135209,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool020.expected - testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool020_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool020.ae)) @@ -137796,12 +135232,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool020.expected - testfile-bool020_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool020_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool020_cdcl.output) (deps (:input testfile-bool020.ae)) @@ -137819,10 +135254,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool020.expected testfile-bool020_cdcl.output))) + (deps testfile-bool020_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_cdcl.output))) (rule (target testfile-bool020_tableaux_cdcl.output) (deps (:input testfile-bool020.ae)) @@ -137840,10 +135276,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool020.expected testfile-bool020_tableaux_cdcl.output))) + (deps testfile-bool020_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_tableaux_cdcl.output))) (rule (target testfile-bool020_tableaux.output) (deps (:input testfile-bool020.ae)) @@ -137861,10 +135298,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool020.expected testfile-bool020_tableaux.output))) + (deps testfile-bool020_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_tableaux.output))) (rule (target testfile-bool020_legacy.output) (deps (:input testfile-bool020.ae)) @@ -137881,10 +135319,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool020.expected testfile-bool020_legacy.output))) + (deps testfile-bool020_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_legacy.output))) (rule (target testfile-bool020_dolmen.output) (deps (:input testfile-bool020.ae)) @@ -137901,10 +135340,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool020.expected testfile-bool020_dolmen.output))) + (deps testfile-bool020_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_dolmen.output))) (rule (target testfile-bool020_fpa.output) (deps (:input testfile-bool020.ae)) @@ -137921,10 +135361,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool020.expected testfile-bool020_fpa.output))) + (deps testfile-bool020_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool020.expected testfile-bool020_fpa.output))) (rule (target testfile-bool019_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool019.ae)) @@ -137943,12 +135384,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool019.expected - testfile-bool019_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool019_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool019.ae)) @@ -137969,12 +135409,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool019.expected - testfile-bool019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool019.ae)) @@ -137994,12 +135433,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool019.expected - testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool019_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool019.ae)) @@ -138018,12 +135456,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool019.expected - testfile-bool019_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool019_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool019.ae)) @@ -138042,12 +135479,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool019.expected - testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool019_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool019.ae)) @@ -138066,12 +135502,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool019.expected - testfile-bool019_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool019_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool019_cdcl.output) (deps (:input testfile-bool019.ae)) @@ -138089,10 +135524,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool019.expected testfile-bool019_cdcl.output))) + (deps testfile-bool019_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_cdcl.output))) (rule (target testfile-bool019_tableaux_cdcl.output) (deps (:input testfile-bool019.ae)) @@ -138110,10 +135546,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool019.expected testfile-bool019_tableaux_cdcl.output))) + (deps testfile-bool019_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_tableaux_cdcl.output))) (rule (target testfile-bool019_tableaux.output) (deps (:input testfile-bool019.ae)) @@ -138131,10 +135568,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool019.expected testfile-bool019_tableaux.output))) + (deps testfile-bool019_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_tableaux.output))) (rule (target testfile-bool019_legacy.output) (deps (:input testfile-bool019.ae)) @@ -138151,10 +135589,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool019.expected testfile-bool019_legacy.output))) + (deps testfile-bool019_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_legacy.output))) (rule (target testfile-bool019_dolmen.output) (deps (:input testfile-bool019.ae)) @@ -138171,10 +135610,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool019.expected testfile-bool019_dolmen.output))) + (deps testfile-bool019_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_dolmen.output))) (rule (target testfile-bool019_fpa.output) (deps (:input testfile-bool019.ae)) @@ -138191,10 +135631,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool019.expected testfile-bool019_fpa.output))) + (deps testfile-bool019_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool019.expected testfile-bool019_fpa.output))) (rule (target testfile-bool018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool018.ae)) @@ -138213,12 +135654,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool018.expected - testfile-bool018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool018.ae)) @@ -138239,12 +135679,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool018.expected - testfile-bool018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool018.ae)) @@ -138264,12 +135703,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool018.expected - testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool018.ae)) @@ -138288,12 +135726,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool018.expected - testfile-bool018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool018.ae)) @@ -138312,12 +135749,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool018.expected - testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool018.ae)) @@ -138336,12 +135772,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool018.expected - testfile-bool018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool018_cdcl.output) (deps (:input testfile-bool018.ae)) @@ -138359,10 +135794,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool018.expected testfile-bool018_cdcl.output))) + (deps testfile-bool018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_cdcl.output))) (rule (target testfile-bool018_tableaux_cdcl.output) (deps (:input testfile-bool018.ae)) @@ -138380,10 +135816,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool018.expected testfile-bool018_tableaux_cdcl.output))) + (deps testfile-bool018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_tableaux_cdcl.output))) (rule (target testfile-bool018_tableaux.output) (deps (:input testfile-bool018.ae)) @@ -138401,10 +135838,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool018.expected testfile-bool018_tableaux.output))) + (deps testfile-bool018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_tableaux.output))) (rule (target testfile-bool018_legacy.output) (deps (:input testfile-bool018.ae)) @@ -138421,10 +135859,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool018.expected testfile-bool018_legacy.output))) + (deps testfile-bool018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_legacy.output))) (rule (target testfile-bool018_dolmen.output) (deps (:input testfile-bool018.ae)) @@ -138441,10 +135880,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool018.expected testfile-bool018_dolmen.output))) + (deps testfile-bool018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_dolmen.output))) (rule (target testfile-bool018_fpa.output) (deps (:input testfile-bool018.ae)) @@ -138461,10 +135901,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool018.expected testfile-bool018_fpa.output))) + (deps testfile-bool018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool018.expected testfile-bool018_fpa.output))) (rule (target testfile-bool017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool017.ae)) @@ -138483,12 +135924,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool017.expected - testfile-bool017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool017.ae)) @@ -138509,12 +135949,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool017.expected - testfile-bool017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool017.ae)) @@ -138534,12 +135973,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool017.expected - testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool017.ae)) @@ -138558,12 +135996,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool017.expected - testfile-bool017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool017.ae)) @@ -138582,12 +136019,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool017.expected - testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool017.ae)) @@ -138606,12 +136042,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool017.expected - testfile-bool017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool017_cdcl.output) (deps (:input testfile-bool017.ae)) @@ -138629,10 +136064,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool017.expected testfile-bool017_cdcl.output))) + (deps testfile-bool017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_cdcl.output))) (rule (target testfile-bool017_tableaux_cdcl.output) (deps (:input testfile-bool017.ae)) @@ -138650,10 +136086,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool017.expected testfile-bool017_tableaux_cdcl.output))) + (deps testfile-bool017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_tableaux_cdcl.output))) (rule (target testfile-bool017_tableaux.output) (deps (:input testfile-bool017.ae)) @@ -138671,10 +136108,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool017.expected testfile-bool017_tableaux.output))) + (deps testfile-bool017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_tableaux.output))) (rule (target testfile-bool017_legacy.output) (deps (:input testfile-bool017.ae)) @@ -138691,10 +136129,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool017.expected testfile-bool017_legacy.output))) + (deps testfile-bool017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_legacy.output))) (rule (target testfile-bool017_dolmen.output) (deps (:input testfile-bool017.ae)) @@ -138711,10 +136150,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool017.expected testfile-bool017_dolmen.output))) + (deps testfile-bool017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_dolmen.output))) (rule (target testfile-bool017_fpa.output) (deps (:input testfile-bool017.ae)) @@ -138731,10 +136171,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool017.expected testfile-bool017_fpa.output))) + (deps testfile-bool017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool017.expected testfile-bool017_fpa.output))) (rule (target testfile-bool016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool016.ae)) @@ -138753,12 +136194,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool016.expected - testfile-bool016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool016.ae)) @@ -138779,12 +136219,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool016.expected - testfile-bool016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool016.ae)) @@ -138804,12 +136243,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool016.expected - testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool016.ae)) @@ -138828,12 +136266,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool016.expected - testfile-bool016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool016.ae)) @@ -138852,12 +136289,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool016.expected - testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool016.ae)) @@ -138876,12 +136312,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool016.expected - testfile-bool016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool016_cdcl.output) (deps (:input testfile-bool016.ae)) @@ -138899,10 +136334,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool016.expected testfile-bool016_cdcl.output))) + (deps testfile-bool016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_cdcl.output))) (rule (target testfile-bool016_tableaux_cdcl.output) (deps (:input testfile-bool016.ae)) @@ -138920,10 +136356,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool016.expected testfile-bool016_tableaux_cdcl.output))) + (deps testfile-bool016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_tableaux_cdcl.output))) (rule (target testfile-bool016_tableaux.output) (deps (:input testfile-bool016.ae)) @@ -138941,10 +136378,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool016.expected testfile-bool016_tableaux.output))) + (deps testfile-bool016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_tableaux.output))) (rule (target testfile-bool016_legacy.output) (deps (:input testfile-bool016.ae)) @@ -138961,10 +136399,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool016.expected testfile-bool016_legacy.output))) + (deps testfile-bool016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_legacy.output))) (rule (target testfile-bool016_dolmen.output) (deps (:input testfile-bool016.ae)) @@ -138981,10 +136420,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool016.expected testfile-bool016_dolmen.output))) + (deps testfile-bool016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_dolmen.output))) (rule (target testfile-bool016_fpa.output) (deps (:input testfile-bool016.ae)) @@ -139001,10 +136441,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool016.expected testfile-bool016_fpa.output))) + (deps testfile-bool016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool016.expected testfile-bool016_fpa.output))) (rule (target testfile-bool015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool015.ae)) @@ -139023,12 +136464,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool015.expected - testfile-bool015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool015.ae)) @@ -139049,12 +136489,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool015.expected - testfile-bool015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool015.ae)) @@ -139074,12 +136513,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool015.expected - testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool015.ae)) @@ -139098,12 +136536,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool015.expected - testfile-bool015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool015.ae)) @@ -139122,12 +136559,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool015.expected - testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool015.ae)) @@ -139146,12 +136582,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool015.expected - testfile-bool015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool015_cdcl.output) (deps (:input testfile-bool015.ae)) @@ -139169,10 +136604,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool015.expected testfile-bool015_cdcl.output))) + (deps testfile-bool015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_cdcl.output))) (rule (target testfile-bool015_tableaux_cdcl.output) (deps (:input testfile-bool015.ae)) @@ -139190,10 +136626,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool015.expected testfile-bool015_tableaux_cdcl.output))) + (deps testfile-bool015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_tableaux_cdcl.output))) (rule (target testfile-bool015_tableaux.output) (deps (:input testfile-bool015.ae)) @@ -139211,10 +136648,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool015.expected testfile-bool015_tableaux.output))) + (deps testfile-bool015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_tableaux.output))) (rule (target testfile-bool015_legacy.output) (deps (:input testfile-bool015.ae)) @@ -139231,10 +136669,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool015.expected testfile-bool015_legacy.output))) + (deps testfile-bool015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_legacy.output))) (rule (target testfile-bool015_dolmen.output) (deps (:input testfile-bool015.ae)) @@ -139251,10 +136690,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool015.expected testfile-bool015_dolmen.output))) + (deps testfile-bool015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_dolmen.output))) (rule (target testfile-bool015_fpa.output) (deps (:input testfile-bool015.ae)) @@ -139271,10 +136711,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool015.expected testfile-bool015_fpa.output))) + (deps testfile-bool015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool015.expected testfile-bool015_fpa.output))) (rule (target testfile-bool014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool014.ae)) @@ -139293,12 +136734,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool014.expected - testfile-bool014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool014.ae)) @@ -139319,12 +136759,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool014.expected - testfile-bool014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool014.ae)) @@ -139344,12 +136783,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool014.expected - testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool014.ae)) @@ -139368,12 +136806,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool014.expected - testfile-bool014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool014.ae)) @@ -139392,12 +136829,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool014.expected - testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool014.ae)) @@ -139416,12 +136852,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool014.expected - testfile-bool014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool014_cdcl.output) (deps (:input testfile-bool014.ae)) @@ -139439,10 +136874,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool014.expected testfile-bool014_cdcl.output))) + (deps testfile-bool014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_cdcl.output))) (rule (target testfile-bool014_tableaux_cdcl.output) (deps (:input testfile-bool014.ae)) @@ -139460,10 +136896,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool014.expected testfile-bool014_tableaux_cdcl.output))) + (deps testfile-bool014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_tableaux_cdcl.output))) (rule (target testfile-bool014_tableaux.output) (deps (:input testfile-bool014.ae)) @@ -139481,10 +136918,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool014.expected testfile-bool014_tableaux.output))) + (deps testfile-bool014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_tableaux.output))) (rule (target testfile-bool014_legacy.output) (deps (:input testfile-bool014.ae)) @@ -139501,10 +136939,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool014.expected testfile-bool014_legacy.output))) + (deps testfile-bool014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_legacy.output))) (rule (target testfile-bool014_dolmen.output) (deps (:input testfile-bool014.ae)) @@ -139521,10 +136960,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool014.expected testfile-bool014_dolmen.output))) + (deps testfile-bool014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_dolmen.output))) (rule (target testfile-bool014_fpa.output) (deps (:input testfile-bool014.ae)) @@ -139541,10 +136981,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool014.expected testfile-bool014_fpa.output))) + (deps testfile-bool014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool014.expected testfile-bool014_fpa.output))) (rule (target testfile-bool013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool013.ae)) @@ -139563,12 +137004,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool013.expected - testfile-bool013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool013.ae)) @@ -139589,12 +137029,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool013.expected - testfile-bool013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool013.ae)) @@ -139614,12 +137053,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool013.expected - testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool013.ae)) @@ -139638,12 +137076,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool013.expected - testfile-bool013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool013.ae)) @@ -139662,12 +137099,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool013.expected - testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool013.ae)) @@ -139686,12 +137122,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool013.expected - testfile-bool013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool013_cdcl.output) (deps (:input testfile-bool013.ae)) @@ -139709,10 +137144,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool013.expected testfile-bool013_cdcl.output))) + (deps testfile-bool013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_cdcl.output))) (rule (target testfile-bool013_tableaux_cdcl.output) (deps (:input testfile-bool013.ae)) @@ -139730,10 +137166,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool013.expected testfile-bool013_tableaux_cdcl.output))) + (deps testfile-bool013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_tableaux_cdcl.output))) (rule (target testfile-bool013_tableaux.output) (deps (:input testfile-bool013.ae)) @@ -139751,10 +137188,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool013.expected testfile-bool013_tableaux.output))) + (deps testfile-bool013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_tableaux.output))) (rule (target testfile-bool013_legacy.output) (deps (:input testfile-bool013.ae)) @@ -139771,10 +137209,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool013.expected testfile-bool013_legacy.output))) + (deps testfile-bool013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_legacy.output))) (rule (target testfile-bool013_dolmen.output) (deps (:input testfile-bool013.ae)) @@ -139791,10 +137230,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool013.expected testfile-bool013_dolmen.output))) + (deps testfile-bool013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_dolmen.output))) (rule (target testfile-bool013_fpa.output) (deps (:input testfile-bool013.ae)) @@ -139811,10 +137251,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool013.expected testfile-bool013_fpa.output))) + (deps testfile-bool013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool013.expected testfile-bool013_fpa.output))) (rule (target testfile-bool012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool012.ae)) @@ -139833,12 +137274,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool012.expected - testfile-bool012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool012.ae)) @@ -139859,12 +137299,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool012.expected - testfile-bool012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool012.ae)) @@ -139884,12 +137323,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool012.expected - testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool012.ae)) @@ -139908,12 +137346,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool012.expected - testfile-bool012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool012.ae)) @@ -139932,12 +137369,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool012.expected - testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool012.ae)) @@ -139956,12 +137392,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool012.expected - testfile-bool012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool012_cdcl.output) (deps (:input testfile-bool012.ae)) @@ -139979,10 +137414,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool012.expected testfile-bool012_cdcl.output))) + (deps testfile-bool012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_cdcl.output))) (rule (target testfile-bool012_tableaux_cdcl.output) (deps (:input testfile-bool012.ae)) @@ -140000,10 +137436,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool012.expected testfile-bool012_tableaux_cdcl.output))) + (deps testfile-bool012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_tableaux_cdcl.output))) (rule (target testfile-bool012_tableaux.output) (deps (:input testfile-bool012.ae)) @@ -140021,10 +137458,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool012.expected testfile-bool012_tableaux.output))) + (deps testfile-bool012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_tableaux.output))) (rule (target testfile-bool012_legacy.output) (deps (:input testfile-bool012.ae)) @@ -140041,10 +137479,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool012.expected testfile-bool012_legacy.output))) + (deps testfile-bool012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_legacy.output))) (rule (target testfile-bool012_dolmen.output) (deps (:input testfile-bool012.ae)) @@ -140061,10 +137500,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool012.expected testfile-bool012_dolmen.output))) + (deps testfile-bool012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_dolmen.output))) (rule (target testfile-bool012_fpa.output) (deps (:input testfile-bool012.ae)) @@ -140081,10 +137521,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool012.expected testfile-bool012_fpa.output))) + (deps testfile-bool012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool012.expected testfile-bool012_fpa.output))) (rule (target testfile-bool011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool011.ae)) @@ -140103,12 +137544,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool011.expected - testfile-bool011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool011.ae)) @@ -140129,12 +137569,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool011.expected - testfile-bool011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool011.ae)) @@ -140154,12 +137593,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool011.expected - testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool011.ae)) @@ -140178,12 +137616,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool011.expected - testfile-bool011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool011.ae)) @@ -140202,12 +137639,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool011.expected - testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool011.ae)) @@ -140226,12 +137662,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool011.expected - testfile-bool011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool011_cdcl.output) (deps (:input testfile-bool011.ae)) @@ -140249,10 +137684,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool011.expected testfile-bool011_cdcl.output))) + (deps testfile-bool011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_cdcl.output))) (rule (target testfile-bool011_tableaux_cdcl.output) (deps (:input testfile-bool011.ae)) @@ -140270,10 +137706,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool011.expected testfile-bool011_tableaux_cdcl.output))) + (deps testfile-bool011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_tableaux_cdcl.output))) (rule (target testfile-bool011_tableaux.output) (deps (:input testfile-bool011.ae)) @@ -140291,10 +137728,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool011.expected testfile-bool011_tableaux.output))) + (deps testfile-bool011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_tableaux.output))) (rule (target testfile-bool011_legacy.output) (deps (:input testfile-bool011.ae)) @@ -140311,10 +137749,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool011.expected testfile-bool011_legacy.output))) + (deps testfile-bool011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_legacy.output))) (rule (target testfile-bool011_dolmen.output) (deps (:input testfile-bool011.ae)) @@ -140331,10 +137770,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool011.expected testfile-bool011_dolmen.output))) + (deps testfile-bool011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_dolmen.output))) (rule (target testfile-bool011_fpa.output) (deps (:input testfile-bool011.ae)) @@ -140351,10 +137791,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool011.expected testfile-bool011_fpa.output))) + (deps testfile-bool011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool011.expected testfile-bool011_fpa.output))) (rule (target testfile-bool010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool010.ae)) @@ -140373,12 +137814,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool010.expected - testfile-bool010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool010.ae)) @@ -140399,12 +137839,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool010.expected - testfile-bool010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool010.ae)) @@ -140424,12 +137863,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool010.expected - testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool010.ae)) @@ -140448,12 +137886,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool010.expected - testfile-bool010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool010.ae)) @@ -140472,12 +137909,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool010.expected - testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool010.ae)) @@ -140496,12 +137932,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool010.expected - testfile-bool010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool010_cdcl.output) (deps (:input testfile-bool010.ae)) @@ -140519,10 +137954,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool010.expected testfile-bool010_cdcl.output))) + (deps testfile-bool010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_cdcl.output))) (rule (target testfile-bool010_tableaux_cdcl.output) (deps (:input testfile-bool010.ae)) @@ -140540,10 +137976,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool010.expected testfile-bool010_tableaux_cdcl.output))) + (deps testfile-bool010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_tableaux_cdcl.output))) (rule (target testfile-bool010_tableaux.output) (deps (:input testfile-bool010.ae)) @@ -140561,10 +137998,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool010.expected testfile-bool010_tableaux.output))) + (deps testfile-bool010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_tableaux.output))) (rule (target testfile-bool010_legacy.output) (deps (:input testfile-bool010.ae)) @@ -140581,10 +138019,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool010.expected testfile-bool010_legacy.output))) + (deps testfile-bool010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_legacy.output))) (rule (target testfile-bool010_dolmen.output) (deps (:input testfile-bool010.ae)) @@ -140601,10 +138040,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool010.expected testfile-bool010_dolmen.output))) + (deps testfile-bool010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_dolmen.output))) (rule (target testfile-bool010_fpa.output) (deps (:input testfile-bool010.ae)) @@ -140621,10 +138061,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool010.expected testfile-bool010_fpa.output))) + (deps testfile-bool010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool010.expected testfile-bool010_fpa.output))) (rule (target testfile-bool009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool009.ae)) @@ -140643,12 +138084,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool009.expected - testfile-bool009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool009.ae)) @@ -140669,12 +138109,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool009.expected - testfile-bool009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool009.ae)) @@ -140694,12 +138133,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool009.expected - testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool009.ae)) @@ -140718,12 +138156,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool009.expected - testfile-bool009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool009.ae)) @@ -140742,12 +138179,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool009.expected - testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool009.ae)) @@ -140766,12 +138202,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool009.expected - testfile-bool009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool009_cdcl.output) (deps (:input testfile-bool009.ae)) @@ -140789,10 +138224,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool009.expected testfile-bool009_cdcl.output))) + (deps testfile-bool009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_cdcl.output))) (rule (target testfile-bool009_tableaux_cdcl.output) (deps (:input testfile-bool009.ae)) @@ -140810,10 +138246,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool009.expected testfile-bool009_tableaux_cdcl.output))) + (deps testfile-bool009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_tableaux_cdcl.output))) (rule (target testfile-bool009_tableaux.output) (deps (:input testfile-bool009.ae)) @@ -140831,10 +138268,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool009.expected testfile-bool009_tableaux.output))) + (deps testfile-bool009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_tableaux.output))) (rule (target testfile-bool009_legacy.output) (deps (:input testfile-bool009.ae)) @@ -140851,10 +138289,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool009.expected testfile-bool009_legacy.output))) + (deps testfile-bool009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_legacy.output))) (rule (target testfile-bool009_dolmen.output) (deps (:input testfile-bool009.ae)) @@ -140871,10 +138310,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool009.expected testfile-bool009_dolmen.output))) + (deps testfile-bool009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_dolmen.output))) (rule (target testfile-bool009_fpa.output) (deps (:input testfile-bool009.ae)) @@ -140891,10 +138331,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool009.expected testfile-bool009_fpa.output))) + (deps testfile-bool009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool009.expected testfile-bool009_fpa.output))) (rule (target testfile-bool008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool008.ae)) @@ -140913,12 +138354,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool008.expected - testfile-bool008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool008.ae)) @@ -140939,12 +138379,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool008.expected - testfile-bool008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool008.ae)) @@ -140964,12 +138403,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool008.expected - testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool008.ae)) @@ -140988,12 +138426,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool008.expected - testfile-bool008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool008.ae)) @@ -141012,12 +138449,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool008.expected - testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool008.ae)) @@ -141036,12 +138472,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool008.expected - testfile-bool008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool008_cdcl.output) (deps (:input testfile-bool008.ae)) @@ -141059,10 +138494,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool008.expected testfile-bool008_cdcl.output))) + (deps testfile-bool008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_cdcl.output))) (rule (target testfile-bool008_tableaux_cdcl.output) (deps (:input testfile-bool008.ae)) @@ -141080,10 +138516,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool008.expected testfile-bool008_tableaux_cdcl.output))) + (deps testfile-bool008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_tableaux_cdcl.output))) (rule (target testfile-bool008_tableaux.output) (deps (:input testfile-bool008.ae)) @@ -141101,10 +138538,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool008.expected testfile-bool008_tableaux.output))) + (deps testfile-bool008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_tableaux.output))) (rule (target testfile-bool008_legacy.output) (deps (:input testfile-bool008.ae)) @@ -141121,10 +138559,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool008.expected testfile-bool008_legacy.output))) + (deps testfile-bool008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_legacy.output))) (rule (target testfile-bool008_dolmen.output) (deps (:input testfile-bool008.ae)) @@ -141141,10 +138580,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool008.expected testfile-bool008_dolmen.output))) + (deps testfile-bool008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_dolmen.output))) (rule (target testfile-bool008_fpa.output) (deps (:input testfile-bool008.ae)) @@ -141161,10 +138601,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool008.expected testfile-bool008_fpa.output))) + (deps testfile-bool008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool008.expected testfile-bool008_fpa.output))) (rule (target testfile-bool007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool007.ae)) @@ -141183,12 +138624,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool007.expected - testfile-bool007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool007.ae)) @@ -141209,12 +138649,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool007.expected - testfile-bool007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool007.ae)) @@ -141234,12 +138673,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool007.expected - testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool007.ae)) @@ -141258,12 +138696,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool007.expected - testfile-bool007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool007.ae)) @@ -141282,12 +138719,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool007.expected - testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool007.ae)) @@ -141306,12 +138742,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool007.expected - testfile-bool007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool007_cdcl.output) (deps (:input testfile-bool007.ae)) @@ -141329,10 +138764,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool007.expected testfile-bool007_cdcl.output))) + (deps testfile-bool007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_cdcl.output))) (rule (target testfile-bool007_tableaux_cdcl.output) (deps (:input testfile-bool007.ae)) @@ -141350,10 +138786,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool007.expected testfile-bool007_tableaux_cdcl.output))) + (deps testfile-bool007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_tableaux_cdcl.output))) (rule (target testfile-bool007_tableaux.output) (deps (:input testfile-bool007.ae)) @@ -141371,10 +138808,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool007.expected testfile-bool007_tableaux.output))) + (deps testfile-bool007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_tableaux.output))) (rule (target testfile-bool007_legacy.output) (deps (:input testfile-bool007.ae)) @@ -141391,10 +138829,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool007.expected testfile-bool007_legacy.output))) + (deps testfile-bool007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_legacy.output))) (rule (target testfile-bool007_dolmen.output) (deps (:input testfile-bool007.ae)) @@ -141411,10 +138850,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool007.expected testfile-bool007_dolmen.output))) + (deps testfile-bool007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_dolmen.output))) (rule (target testfile-bool007_fpa.output) (deps (:input testfile-bool007.ae)) @@ -141431,10 +138871,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool007.expected testfile-bool007_fpa.output))) + (deps testfile-bool007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool007.expected testfile-bool007_fpa.output))) (rule (target testfile-bool006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool006.ae)) @@ -141453,12 +138894,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool006.expected - testfile-bool006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool006.ae)) @@ -141479,12 +138919,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool006.expected - testfile-bool006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool006.ae)) @@ -141504,12 +138943,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool006.expected - testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool006.ae)) @@ -141528,12 +138966,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool006.expected - testfile-bool006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool006.ae)) @@ -141552,12 +138989,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool006.expected - testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool006.ae)) @@ -141576,12 +139012,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool006.expected - testfile-bool006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool006_cdcl.output) (deps (:input testfile-bool006.ae)) @@ -141599,10 +139034,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool006.expected testfile-bool006_cdcl.output))) + (deps testfile-bool006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_cdcl.output))) (rule (target testfile-bool006_tableaux_cdcl.output) (deps (:input testfile-bool006.ae)) @@ -141620,10 +139056,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool006.expected testfile-bool006_tableaux_cdcl.output))) + (deps testfile-bool006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_tableaux_cdcl.output))) (rule (target testfile-bool006_tableaux.output) (deps (:input testfile-bool006.ae)) @@ -141641,10 +139078,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool006.expected testfile-bool006_tableaux.output))) + (deps testfile-bool006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_tableaux.output))) (rule (target testfile-bool006_legacy.output) (deps (:input testfile-bool006.ae)) @@ -141661,10 +139099,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool006.expected testfile-bool006_legacy.output))) + (deps testfile-bool006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_legacy.output))) (rule (target testfile-bool006_dolmen.output) (deps (:input testfile-bool006.ae)) @@ -141681,10 +139120,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool006.expected testfile-bool006_dolmen.output))) + (deps testfile-bool006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_dolmen.output))) (rule (target testfile-bool006_fpa.output) (deps (:input testfile-bool006.ae)) @@ -141701,10 +139141,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool006.expected testfile-bool006_fpa.output))) + (deps testfile-bool006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool006.expected testfile-bool006_fpa.output))) (rule (target testfile-bool005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool005.ae)) @@ -141723,12 +139164,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool005.expected - testfile-bool005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool005.ae)) @@ -141749,12 +139189,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool005.expected - testfile-bool005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool005.ae)) @@ -141774,12 +139213,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool005.expected - testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool005.ae)) @@ -141798,12 +139236,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool005.expected - testfile-bool005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool005.ae)) @@ -141822,12 +139259,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool005.expected - testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool005.ae)) @@ -141846,12 +139282,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool005.expected - testfile-bool005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool005_cdcl.output) (deps (:input testfile-bool005.ae)) @@ -141869,10 +139304,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool005.expected testfile-bool005_cdcl.output))) + (deps testfile-bool005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_cdcl.output))) (rule (target testfile-bool005_tableaux_cdcl.output) (deps (:input testfile-bool005.ae)) @@ -141890,10 +139326,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool005.expected testfile-bool005_tableaux_cdcl.output))) + (deps testfile-bool005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_tableaux_cdcl.output))) (rule (target testfile-bool005_tableaux.output) (deps (:input testfile-bool005.ae)) @@ -141911,10 +139348,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool005.expected testfile-bool005_tableaux.output))) + (deps testfile-bool005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_tableaux.output))) (rule (target testfile-bool005_legacy.output) (deps (:input testfile-bool005.ae)) @@ -141931,10 +139369,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool005.expected testfile-bool005_legacy.output))) + (deps testfile-bool005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_legacy.output))) (rule (target testfile-bool005_dolmen.output) (deps (:input testfile-bool005.ae)) @@ -141951,10 +139390,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool005.expected testfile-bool005_dolmen.output))) + (deps testfile-bool005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_dolmen.output))) (rule (target testfile-bool005_fpa.output) (deps (:input testfile-bool005.ae)) @@ -141971,10 +139411,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool005.expected testfile-bool005_fpa.output))) + (deps testfile-bool005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool005.expected testfile-bool005_fpa.output))) (rule (target testfile-bool004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool004.ae)) @@ -141993,12 +139434,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool004.expected - testfile-bool004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool004.ae)) @@ -142019,12 +139459,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool004.expected - testfile-bool004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool004.ae)) @@ -142044,12 +139483,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool004.expected - testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool004.ae)) @@ -142068,12 +139506,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool004.expected - testfile-bool004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool004.ae)) @@ -142092,12 +139529,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool004.expected - testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool004.ae)) @@ -142116,12 +139552,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool004.expected - testfile-bool004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool004_cdcl.output) (deps (:input testfile-bool004.ae)) @@ -142139,10 +139574,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool004.expected testfile-bool004_cdcl.output))) + (deps testfile-bool004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_cdcl.output))) (rule (target testfile-bool004_tableaux_cdcl.output) (deps (:input testfile-bool004.ae)) @@ -142160,10 +139596,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool004.expected testfile-bool004_tableaux_cdcl.output))) + (deps testfile-bool004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_tableaux_cdcl.output))) (rule (target testfile-bool004_tableaux.output) (deps (:input testfile-bool004.ae)) @@ -142181,10 +139618,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool004.expected testfile-bool004_tableaux.output))) + (deps testfile-bool004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_tableaux.output))) (rule (target testfile-bool004_legacy.output) (deps (:input testfile-bool004.ae)) @@ -142201,10 +139639,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool004.expected testfile-bool004_legacy.output))) + (deps testfile-bool004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_legacy.output))) (rule (target testfile-bool004_dolmen.output) (deps (:input testfile-bool004.ae)) @@ -142221,10 +139660,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool004.expected testfile-bool004_dolmen.output))) + (deps testfile-bool004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_dolmen.output))) (rule (target testfile-bool004_fpa.output) (deps (:input testfile-bool004.ae)) @@ -142241,10 +139681,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool004.expected testfile-bool004_fpa.output))) + (deps testfile-bool004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool004.expected testfile-bool004_fpa.output))) (rule (target testfile-bool003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool003.ae)) @@ -142263,12 +139704,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool003.expected - testfile-bool003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool003.ae)) @@ -142289,12 +139729,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool003.expected - testfile-bool003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool003.ae)) @@ -142314,12 +139753,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool003.expected - testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool003.ae)) @@ -142338,12 +139776,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool003.expected - testfile-bool003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool003.ae)) @@ -142362,12 +139799,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool003.expected - testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool003.ae)) @@ -142386,12 +139822,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool003.expected - testfile-bool003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool003_cdcl.output) (deps (:input testfile-bool003.ae)) @@ -142409,10 +139844,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool003.expected testfile-bool003_cdcl.output))) + (deps testfile-bool003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_cdcl.output))) (rule (target testfile-bool003_tableaux_cdcl.output) (deps (:input testfile-bool003.ae)) @@ -142430,10 +139866,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool003.expected testfile-bool003_tableaux_cdcl.output))) + (deps testfile-bool003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_tableaux_cdcl.output))) (rule (target testfile-bool003_tableaux.output) (deps (:input testfile-bool003.ae)) @@ -142451,10 +139888,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool003.expected testfile-bool003_tableaux.output))) + (deps testfile-bool003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_tableaux.output))) (rule (target testfile-bool003_legacy.output) (deps (:input testfile-bool003.ae)) @@ -142471,10 +139909,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool003.expected testfile-bool003_legacy.output))) + (deps testfile-bool003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_legacy.output))) (rule (target testfile-bool003_dolmen.output) (deps (:input testfile-bool003.ae)) @@ -142491,10 +139930,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool003.expected testfile-bool003_dolmen.output))) + (deps testfile-bool003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_dolmen.output))) (rule (target testfile-bool003_fpa.output) (deps (:input testfile-bool003.ae)) @@ -142511,10 +139951,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool003.expected testfile-bool003_fpa.output))) + (deps testfile-bool003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool003.expected testfile-bool003_fpa.output))) (rule (target testfile-bool002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool002.ae)) @@ -142533,12 +139974,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool002.expected - testfile-bool002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool002.ae)) @@ -142559,12 +139999,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool002.expected - testfile-bool002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool002.ae)) @@ -142584,12 +140023,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool002.expected - testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool002.ae)) @@ -142608,12 +140046,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool002.expected - testfile-bool002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool002.ae)) @@ -142632,12 +140069,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool002.expected - testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool002.ae)) @@ -142656,12 +140092,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool002.expected - testfile-bool002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool002_cdcl.output) (deps (:input testfile-bool002.ae)) @@ -142679,10 +140114,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool002.expected testfile-bool002_cdcl.output))) + (deps testfile-bool002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_cdcl.output))) (rule (target testfile-bool002_tableaux_cdcl.output) (deps (:input testfile-bool002.ae)) @@ -142700,10 +140136,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool002.expected testfile-bool002_tableaux_cdcl.output))) + (deps testfile-bool002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_tableaux_cdcl.output))) (rule (target testfile-bool002_tableaux.output) (deps (:input testfile-bool002.ae)) @@ -142721,10 +140158,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool002.expected testfile-bool002_tableaux.output))) + (deps testfile-bool002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_tableaux.output))) (rule (target testfile-bool002_legacy.output) (deps (:input testfile-bool002.ae)) @@ -142741,10 +140179,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool002.expected testfile-bool002_legacy.output))) + (deps testfile-bool002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_legacy.output))) (rule (target testfile-bool002_dolmen.output) (deps (:input testfile-bool002.ae)) @@ -142761,10 +140200,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool002.expected testfile-bool002_dolmen.output))) + (deps testfile-bool002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_dolmen.output))) (rule (target testfile-bool002_fpa.output) (deps (:input testfile-bool002.ae)) @@ -142781,10 +140221,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool002.expected testfile-bool002_fpa.output))) + (deps testfile-bool002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool002.expected testfile-bool002_fpa.output))) (rule (target testfile-bool001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-bool001.ae)) @@ -142803,12 +140244,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool001.expected - testfile-bool001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-bool001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-bool001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool001.ae)) @@ -142829,12 +140269,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool001.expected - testfile-bool001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-bool001.ae)) @@ -142854,12 +140293,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool001.expected - testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-bool001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-bool001.ae)) @@ -142878,12 +140316,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool001.expected - testfile-bool001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-bool001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-bool001.ae)) @@ -142902,12 +140339,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool001.expected - testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-bool001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-bool001.ae)) @@ -142926,12 +140362,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-bool001.expected - testfile-bool001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-bool001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-bool001_cdcl.output) (deps (:input testfile-bool001.ae)) @@ -142949,10 +140384,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool001.expected testfile-bool001_cdcl.output))) + (deps testfile-bool001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_cdcl.output))) (rule (target testfile-bool001_tableaux_cdcl.output) (deps (:input testfile-bool001.ae)) @@ -142970,10 +140406,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool001.expected testfile-bool001_tableaux_cdcl.output))) + (deps testfile-bool001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_tableaux_cdcl.output))) (rule (target testfile-bool001_tableaux.output) (deps (:input testfile-bool001.ae)) @@ -142991,10 +140428,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool001.expected testfile-bool001_tableaux.output))) + (deps testfile-bool001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_tableaux.output))) (rule (target testfile-bool001_legacy.output) (deps (:input testfile-bool001.ae)) @@ -143011,10 +140449,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool001.expected testfile-bool001_legacy.output))) + (deps testfile-bool001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_legacy.output))) (rule (target testfile-bool001_dolmen.output) (deps (:input testfile-bool001.ae)) @@ -143031,10 +140470,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool001.expected testfile-bool001_dolmen.output))) + (deps testfile-bool001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_dolmen.output))) (rule (target testfile-bool001_fpa.output) (deps (:input testfile-bool001.ae)) @@ -143051,10 +140491,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-bool001.expected testfile-bool001_fpa.output)))) + (deps testfile-bool001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-bool001.expected testfile-bool001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -143078,12 +140519,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc016.expected - testfile-cc016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc016.ae)) @@ -143104,12 +140544,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc016.expected - testfile-cc016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc016.ae)) @@ -143129,12 +140568,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc016.expected - testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc016.ae)) @@ -143153,12 +140591,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc016.expected - testfile-cc016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc016.ae)) @@ -143177,12 +140614,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc016.expected - testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc016.ae)) @@ -143201,12 +140637,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc016.expected - testfile-cc016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc016_cdcl.output) (deps (:input testfile-cc016.ae)) @@ -143224,10 +140659,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc016.expected testfile-cc016_cdcl.output))) + (deps testfile-cc016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_cdcl.output))) (rule (target testfile-cc016_tableaux_cdcl.output) (deps (:input testfile-cc016.ae)) @@ -143245,10 +140681,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc016.expected testfile-cc016_tableaux_cdcl.output))) + (deps testfile-cc016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_tableaux_cdcl.output))) (rule (target testfile-cc016_tableaux.output) (deps (:input testfile-cc016.ae)) @@ -143266,10 +140703,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc016.expected testfile-cc016_tableaux.output))) + (deps testfile-cc016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_tableaux.output))) (rule (target testfile-cc016_legacy.output) (deps (:input testfile-cc016.ae)) @@ -143286,10 +140724,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc016.expected testfile-cc016_legacy.output))) + (deps testfile-cc016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_legacy.output))) (rule (target testfile-cc016_dolmen.output) (deps (:input testfile-cc016.ae)) @@ -143306,10 +140745,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc016.expected testfile-cc016_dolmen.output))) + (deps testfile-cc016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_dolmen.output))) (rule (target testfile-cc016_fpa.output) (deps (:input testfile-cc016.ae)) @@ -143326,10 +140766,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc016.expected testfile-cc016_fpa.output))) + (deps testfile-cc016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc016.expected testfile-cc016_fpa.output))) (rule (target testfile-cc015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc015.ae)) @@ -143348,12 +140789,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc015.expected - testfile-cc015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc015.ae)) @@ -143374,12 +140814,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc015.expected - testfile-cc015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc015.ae)) @@ -143399,12 +140838,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc015.expected - testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc015.ae)) @@ -143423,12 +140861,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc015.expected - testfile-cc015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc015.ae)) @@ -143447,12 +140884,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc015.expected - testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc015.ae)) @@ -143471,12 +140907,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc015.expected - testfile-cc015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc015_cdcl.output) (deps (:input testfile-cc015.ae)) @@ -143494,10 +140929,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc015.expected testfile-cc015_cdcl.output))) + (deps testfile-cc015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_cdcl.output))) (rule (target testfile-cc015_tableaux_cdcl.output) (deps (:input testfile-cc015.ae)) @@ -143515,10 +140951,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc015.expected testfile-cc015_tableaux_cdcl.output))) + (deps testfile-cc015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_tableaux_cdcl.output))) (rule (target testfile-cc015_tableaux.output) (deps (:input testfile-cc015.ae)) @@ -143536,10 +140973,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc015.expected testfile-cc015_tableaux.output))) + (deps testfile-cc015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_tableaux.output))) (rule (target testfile-cc015_legacy.output) (deps (:input testfile-cc015.ae)) @@ -143556,10 +140994,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc015.expected testfile-cc015_legacy.output))) + (deps testfile-cc015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_legacy.output))) (rule (target testfile-cc015_dolmen.output) (deps (:input testfile-cc015.ae)) @@ -143576,10 +141015,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc015.expected testfile-cc015_dolmen.output))) + (deps testfile-cc015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_dolmen.output))) (rule (target testfile-cc015_fpa.output) (deps (:input testfile-cc015.ae)) @@ -143596,10 +141036,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc015.expected testfile-cc015_fpa.output))) + (deps testfile-cc015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc015.expected testfile-cc015_fpa.output))) (rule (target testfile-cc014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc014.ae)) @@ -143618,12 +141059,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc014.expected - testfile-cc014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc014.ae)) @@ -143644,12 +141084,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc014.expected - testfile-cc014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc014.ae)) @@ -143669,12 +141108,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc014.expected - testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc014.ae)) @@ -143693,12 +141131,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc014.expected - testfile-cc014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc014.ae)) @@ -143717,12 +141154,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc014.expected - testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc014.ae)) @@ -143741,12 +141177,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc014.expected - testfile-cc014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc014_cdcl.output) (deps (:input testfile-cc014.ae)) @@ -143764,10 +141199,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc014.expected testfile-cc014_cdcl.output))) + (deps testfile-cc014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_cdcl.output))) (rule (target testfile-cc014_tableaux_cdcl.output) (deps (:input testfile-cc014.ae)) @@ -143785,10 +141221,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc014.expected testfile-cc014_tableaux_cdcl.output))) + (deps testfile-cc014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_tableaux_cdcl.output))) (rule (target testfile-cc014_tableaux.output) (deps (:input testfile-cc014.ae)) @@ -143806,10 +141243,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc014.expected testfile-cc014_tableaux.output))) + (deps testfile-cc014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_tableaux.output))) (rule (target testfile-cc014_legacy.output) (deps (:input testfile-cc014.ae)) @@ -143826,10 +141264,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc014.expected testfile-cc014_legacy.output))) + (deps testfile-cc014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_legacy.output))) (rule (target testfile-cc014_dolmen.output) (deps (:input testfile-cc014.ae)) @@ -143846,10 +141285,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc014.expected testfile-cc014_dolmen.output))) + (deps testfile-cc014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_dolmen.output))) (rule (target testfile-cc014_fpa.output) (deps (:input testfile-cc014.ae)) @@ -143866,10 +141306,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc014.expected testfile-cc014_fpa.output))) + (deps testfile-cc014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc014.expected testfile-cc014_fpa.output))) (rule (target testfile-cc013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc013.ae)) @@ -143888,12 +141329,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc013.expected - testfile-cc013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc013.ae)) @@ -143914,12 +141354,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc013.expected - testfile-cc013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc013.ae)) @@ -143939,12 +141378,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc013.expected - testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc013.ae)) @@ -143963,12 +141401,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc013.expected - testfile-cc013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc013.ae)) @@ -143987,12 +141424,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc013.expected - testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc013.ae)) @@ -144011,12 +141447,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc013.expected - testfile-cc013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc013_cdcl.output) (deps (:input testfile-cc013.ae)) @@ -144034,10 +141469,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc013.expected testfile-cc013_cdcl.output))) + (deps testfile-cc013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_cdcl.output))) (rule (target testfile-cc013_tableaux_cdcl.output) (deps (:input testfile-cc013.ae)) @@ -144055,10 +141491,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc013.expected testfile-cc013_tableaux_cdcl.output))) + (deps testfile-cc013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_tableaux_cdcl.output))) (rule (target testfile-cc013_tableaux.output) (deps (:input testfile-cc013.ae)) @@ -144076,10 +141513,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc013.expected testfile-cc013_tableaux.output))) + (deps testfile-cc013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_tableaux.output))) (rule (target testfile-cc013_legacy.output) (deps (:input testfile-cc013.ae)) @@ -144096,10 +141534,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc013.expected testfile-cc013_legacy.output))) + (deps testfile-cc013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_legacy.output))) (rule (target testfile-cc013_dolmen.output) (deps (:input testfile-cc013.ae)) @@ -144116,10 +141555,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc013.expected testfile-cc013_dolmen.output))) + (deps testfile-cc013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_dolmen.output))) (rule (target testfile-cc013_fpa.output) (deps (:input testfile-cc013.ae)) @@ -144136,10 +141576,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc013.expected testfile-cc013_fpa.output))) + (deps testfile-cc013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc013.expected testfile-cc013_fpa.output))) (rule (target testfile-cc012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc012.ae)) @@ -144158,12 +141599,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc012.expected - testfile-cc012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc012.ae)) @@ -144184,12 +141624,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc012.expected - testfile-cc012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc012.ae)) @@ -144209,12 +141648,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc012.expected - testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc012.ae)) @@ -144233,12 +141671,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc012.expected - testfile-cc012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc012.ae)) @@ -144257,12 +141694,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc012.expected - testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc012.ae)) @@ -144281,12 +141717,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc012.expected - testfile-cc012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc012_cdcl.output) (deps (:input testfile-cc012.ae)) @@ -144304,10 +141739,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc012.expected testfile-cc012_cdcl.output))) + (deps testfile-cc012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_cdcl.output))) (rule (target testfile-cc012_tableaux_cdcl.output) (deps (:input testfile-cc012.ae)) @@ -144325,10 +141761,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc012.expected testfile-cc012_tableaux_cdcl.output))) + (deps testfile-cc012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_tableaux_cdcl.output))) (rule (target testfile-cc012_tableaux.output) (deps (:input testfile-cc012.ae)) @@ -144346,10 +141783,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc012.expected testfile-cc012_tableaux.output))) + (deps testfile-cc012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_tableaux.output))) (rule (target testfile-cc012_legacy.output) (deps (:input testfile-cc012.ae)) @@ -144366,10 +141804,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc012.expected testfile-cc012_legacy.output))) + (deps testfile-cc012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_legacy.output))) (rule (target testfile-cc012_dolmen.output) (deps (:input testfile-cc012.ae)) @@ -144386,10 +141825,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc012.expected testfile-cc012_dolmen.output))) + (deps testfile-cc012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_dolmen.output))) (rule (target testfile-cc012_fpa.output) (deps (:input testfile-cc012.ae)) @@ -144406,10 +141846,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc012.expected testfile-cc012_fpa.output))) + (deps testfile-cc012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc012.expected testfile-cc012_fpa.output))) (rule (target testfile-cc011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc011.ae)) @@ -144428,12 +141869,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc011.expected - testfile-cc011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc011.ae)) @@ -144454,12 +141894,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc011.expected - testfile-cc011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc011.ae)) @@ -144479,12 +141918,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc011.expected - testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc011.ae)) @@ -144503,12 +141941,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc011.expected - testfile-cc011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc011.ae)) @@ -144527,12 +141964,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc011.expected - testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc011.ae)) @@ -144551,12 +141987,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc011.expected - testfile-cc011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc011_cdcl.output) (deps (:input testfile-cc011.ae)) @@ -144574,10 +142009,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc011.expected testfile-cc011_cdcl.output))) + (deps testfile-cc011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_cdcl.output))) (rule (target testfile-cc011_tableaux_cdcl.output) (deps (:input testfile-cc011.ae)) @@ -144595,10 +142031,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc011.expected testfile-cc011_tableaux_cdcl.output))) + (deps testfile-cc011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_tableaux_cdcl.output))) (rule (target testfile-cc011_tableaux.output) (deps (:input testfile-cc011.ae)) @@ -144616,10 +142053,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc011.expected testfile-cc011_tableaux.output))) + (deps testfile-cc011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_tableaux.output))) (rule (target testfile-cc011_legacy.output) (deps (:input testfile-cc011.ae)) @@ -144636,10 +142074,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc011.expected testfile-cc011_legacy.output))) + (deps testfile-cc011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_legacy.output))) (rule (target testfile-cc011_dolmen.output) (deps (:input testfile-cc011.ae)) @@ -144656,10 +142095,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc011.expected testfile-cc011_dolmen.output))) + (deps testfile-cc011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_dolmen.output))) (rule (target testfile-cc011_fpa.output) (deps (:input testfile-cc011.ae)) @@ -144676,10 +142116,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc011.expected testfile-cc011_fpa.output))) + (deps testfile-cc011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc011.expected testfile-cc011_fpa.output))) (rule (target testfile-cc010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc010.ae)) @@ -144698,12 +142139,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc010.expected - testfile-cc010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc010.ae)) @@ -144724,12 +142164,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc010.expected - testfile-cc010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc010.ae)) @@ -144749,12 +142188,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc010.expected - testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc010.ae)) @@ -144773,12 +142211,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc010.expected - testfile-cc010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc010.ae)) @@ -144797,12 +142234,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc010.expected - testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc010.ae)) @@ -144821,12 +142257,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc010.expected - testfile-cc010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc010_cdcl.output) (deps (:input testfile-cc010.ae)) @@ -144844,10 +142279,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc010.expected testfile-cc010_cdcl.output))) + (deps testfile-cc010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_cdcl.output))) (rule (target testfile-cc010_tableaux_cdcl.output) (deps (:input testfile-cc010.ae)) @@ -144865,10 +142301,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc010.expected testfile-cc010_tableaux_cdcl.output))) + (deps testfile-cc010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_tableaux_cdcl.output))) (rule (target testfile-cc010_tableaux.output) (deps (:input testfile-cc010.ae)) @@ -144886,10 +142323,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc010.expected testfile-cc010_tableaux.output))) + (deps testfile-cc010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_tableaux.output))) (rule (target testfile-cc010_legacy.output) (deps (:input testfile-cc010.ae)) @@ -144906,10 +142344,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc010.expected testfile-cc010_legacy.output))) + (deps testfile-cc010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_legacy.output))) (rule (target testfile-cc010_dolmen.output) (deps (:input testfile-cc010.ae)) @@ -144926,10 +142365,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc010.expected testfile-cc010_dolmen.output))) + (deps testfile-cc010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_dolmen.output))) (rule (target testfile-cc010_fpa.output) (deps (:input testfile-cc010.ae)) @@ -144946,10 +142386,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc010.expected testfile-cc010_fpa.output))) + (deps testfile-cc010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc010.expected testfile-cc010_fpa.output))) (rule (target testfile-cc009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc009.ae)) @@ -144968,12 +142409,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc009.expected - testfile-cc009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc009.ae)) @@ -144994,12 +142434,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc009.expected - testfile-cc009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc009.ae)) @@ -145019,12 +142458,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc009.expected - testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc009.ae)) @@ -145043,12 +142481,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc009.expected - testfile-cc009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc009.ae)) @@ -145067,12 +142504,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc009.expected - testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc009.ae)) @@ -145091,12 +142527,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc009.expected - testfile-cc009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc009_cdcl.output) (deps (:input testfile-cc009.ae)) @@ -145114,10 +142549,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc009.expected testfile-cc009_cdcl.output))) + (deps testfile-cc009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_cdcl.output))) (rule (target testfile-cc009_tableaux_cdcl.output) (deps (:input testfile-cc009.ae)) @@ -145135,10 +142571,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc009.expected testfile-cc009_tableaux_cdcl.output))) + (deps testfile-cc009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_tableaux_cdcl.output))) (rule (target testfile-cc009_tableaux.output) (deps (:input testfile-cc009.ae)) @@ -145156,10 +142593,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc009.expected testfile-cc009_tableaux.output))) + (deps testfile-cc009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_tableaux.output))) (rule (target testfile-cc009_legacy.output) (deps (:input testfile-cc009.ae)) @@ -145176,10 +142614,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc009.expected testfile-cc009_legacy.output))) + (deps testfile-cc009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_legacy.output))) (rule (target testfile-cc009_dolmen.output) (deps (:input testfile-cc009.ae)) @@ -145196,10 +142635,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc009.expected testfile-cc009_dolmen.output))) + (deps testfile-cc009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_dolmen.output))) (rule (target testfile-cc009_fpa.output) (deps (:input testfile-cc009.ae)) @@ -145216,10 +142656,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc009.expected testfile-cc009_fpa.output))) + (deps testfile-cc009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc009.expected testfile-cc009_fpa.output))) (rule (target testfile-cc008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc008.ae)) @@ -145238,12 +142679,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc008.expected - testfile-cc008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc008.ae)) @@ -145264,12 +142704,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc008.expected - testfile-cc008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc008.ae)) @@ -145289,12 +142728,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc008.expected - testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc008.ae)) @@ -145313,12 +142751,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc008.expected - testfile-cc008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc008.ae)) @@ -145337,12 +142774,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc008.expected - testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc008.ae)) @@ -145361,12 +142797,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc008.expected - testfile-cc008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc008_cdcl.output) (deps (:input testfile-cc008.ae)) @@ -145384,10 +142819,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc008.expected testfile-cc008_cdcl.output))) + (deps testfile-cc008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_cdcl.output))) (rule (target testfile-cc008_tableaux_cdcl.output) (deps (:input testfile-cc008.ae)) @@ -145405,10 +142841,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc008.expected testfile-cc008_tableaux_cdcl.output))) + (deps testfile-cc008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_tableaux_cdcl.output))) (rule (target testfile-cc008_tableaux.output) (deps (:input testfile-cc008.ae)) @@ -145426,10 +142863,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc008.expected testfile-cc008_tableaux.output))) + (deps testfile-cc008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_tableaux.output))) (rule (target testfile-cc008_legacy.output) (deps (:input testfile-cc008.ae)) @@ -145446,10 +142884,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc008.expected testfile-cc008_legacy.output))) + (deps testfile-cc008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_legacy.output))) (rule (target testfile-cc008_dolmen.output) (deps (:input testfile-cc008.ae)) @@ -145466,10 +142905,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc008.expected testfile-cc008_dolmen.output))) + (deps testfile-cc008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_dolmen.output))) (rule (target testfile-cc008_fpa.output) (deps (:input testfile-cc008.ae)) @@ -145486,10 +142926,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc008.expected testfile-cc008_fpa.output))) + (deps testfile-cc008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc008.expected testfile-cc008_fpa.output))) (rule (target testfile-cc007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc007.ae)) @@ -145508,12 +142949,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc007.expected - testfile-cc007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc007.ae)) @@ -145534,12 +142974,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc007.expected - testfile-cc007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc007.ae)) @@ -145559,12 +142998,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc007.expected - testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc007.ae)) @@ -145583,12 +143021,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc007.expected - testfile-cc007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc007.ae)) @@ -145607,12 +143044,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc007.expected - testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc007.ae)) @@ -145631,12 +143067,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc007.expected - testfile-cc007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc007_cdcl.output) (deps (:input testfile-cc007.ae)) @@ -145654,10 +143089,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc007.expected testfile-cc007_cdcl.output))) + (deps testfile-cc007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_cdcl.output))) (rule (target testfile-cc007_tableaux_cdcl.output) (deps (:input testfile-cc007.ae)) @@ -145675,10 +143111,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc007.expected testfile-cc007_tableaux_cdcl.output))) + (deps testfile-cc007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_tableaux_cdcl.output))) (rule (target testfile-cc007_tableaux.output) (deps (:input testfile-cc007.ae)) @@ -145696,10 +143133,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc007.expected testfile-cc007_tableaux.output))) + (deps testfile-cc007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_tableaux.output))) (rule (target testfile-cc007_legacy.output) (deps (:input testfile-cc007.ae)) @@ -145716,10 +143154,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc007.expected testfile-cc007_legacy.output))) + (deps testfile-cc007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_legacy.output))) (rule (target testfile-cc007_dolmen.output) (deps (:input testfile-cc007.ae)) @@ -145736,10 +143175,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc007.expected testfile-cc007_dolmen.output))) + (deps testfile-cc007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_dolmen.output))) (rule (target testfile-cc007_fpa.output) (deps (:input testfile-cc007.ae)) @@ -145756,10 +143196,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc007.expected testfile-cc007_fpa.output))) + (deps testfile-cc007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc007.expected testfile-cc007_fpa.output))) (rule (target testfile-cc006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc006.ae)) @@ -145778,12 +143219,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc006.expected - testfile-cc006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc006.ae)) @@ -145804,12 +143244,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc006.expected - testfile-cc006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc006.ae)) @@ -145829,12 +143268,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc006.expected - testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc006.ae)) @@ -145853,12 +143291,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc006.expected - testfile-cc006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc006.ae)) @@ -145877,12 +143314,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc006.expected - testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc006.ae)) @@ -145901,12 +143337,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc006.expected - testfile-cc006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc006_cdcl.output) (deps (:input testfile-cc006.ae)) @@ -145924,10 +143359,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc006.expected testfile-cc006_cdcl.output))) + (deps testfile-cc006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_cdcl.output))) (rule (target testfile-cc006_tableaux_cdcl.output) (deps (:input testfile-cc006.ae)) @@ -145945,10 +143381,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc006.expected testfile-cc006_tableaux_cdcl.output))) + (deps testfile-cc006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_tableaux_cdcl.output))) (rule (target testfile-cc006_tableaux.output) (deps (:input testfile-cc006.ae)) @@ -145966,10 +143403,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc006.expected testfile-cc006_tableaux.output))) + (deps testfile-cc006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_tableaux.output))) (rule (target testfile-cc006_legacy.output) (deps (:input testfile-cc006.ae)) @@ -145986,10 +143424,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc006.expected testfile-cc006_legacy.output))) + (deps testfile-cc006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_legacy.output))) (rule (target testfile-cc006_dolmen.output) (deps (:input testfile-cc006.ae)) @@ -146006,10 +143445,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc006.expected testfile-cc006_dolmen.output))) + (deps testfile-cc006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_dolmen.output))) (rule (target testfile-cc006_fpa.output) (deps (:input testfile-cc006.ae)) @@ -146026,10 +143466,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc006.expected testfile-cc006_fpa.output))) + (deps testfile-cc006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc006.expected testfile-cc006_fpa.output))) (rule (target testfile-cc005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc005.ae)) @@ -146048,12 +143489,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc005.expected - testfile-cc005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc005.ae)) @@ -146074,12 +143514,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc005.expected - testfile-cc005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc005.ae)) @@ -146099,12 +143538,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc005.expected - testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc005.ae)) @@ -146123,12 +143561,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc005.expected - testfile-cc005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc005.ae)) @@ -146147,12 +143584,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc005.expected - testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc005.ae)) @@ -146171,12 +143607,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc005.expected - testfile-cc005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc005_cdcl.output) (deps (:input testfile-cc005.ae)) @@ -146194,10 +143629,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc005.expected testfile-cc005_cdcl.output))) + (deps testfile-cc005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_cdcl.output))) (rule (target testfile-cc005_tableaux_cdcl.output) (deps (:input testfile-cc005.ae)) @@ -146215,10 +143651,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc005.expected testfile-cc005_tableaux_cdcl.output))) + (deps testfile-cc005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_tableaux_cdcl.output))) (rule (target testfile-cc005_tableaux.output) (deps (:input testfile-cc005.ae)) @@ -146236,10 +143673,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc005.expected testfile-cc005_tableaux.output))) + (deps testfile-cc005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_tableaux.output))) (rule (target testfile-cc005_legacy.output) (deps (:input testfile-cc005.ae)) @@ -146256,10 +143694,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc005.expected testfile-cc005_legacy.output))) + (deps testfile-cc005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_legacy.output))) (rule (target testfile-cc005_dolmen.output) (deps (:input testfile-cc005.ae)) @@ -146276,10 +143715,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc005.expected testfile-cc005_dolmen.output))) + (deps testfile-cc005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_dolmen.output))) (rule (target testfile-cc005_fpa.output) (deps (:input testfile-cc005.ae)) @@ -146296,10 +143736,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc005.expected testfile-cc005_fpa.output))) + (deps testfile-cc005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc005.expected testfile-cc005_fpa.output))) (rule (target testfile-cc004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc004.ae)) @@ -146318,12 +143759,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc004.expected - testfile-cc004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc004.ae)) @@ -146344,12 +143784,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc004.expected - testfile-cc004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc004.ae)) @@ -146369,12 +143808,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc004.expected - testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc004.ae)) @@ -146393,12 +143831,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc004.expected - testfile-cc004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc004.ae)) @@ -146417,12 +143854,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc004.expected - testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc004.ae)) @@ -146441,12 +143877,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc004.expected - testfile-cc004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc004_cdcl.output) (deps (:input testfile-cc004.ae)) @@ -146464,10 +143899,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc004.expected testfile-cc004_cdcl.output))) + (deps testfile-cc004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_cdcl.output))) (rule (target testfile-cc004_tableaux_cdcl.output) (deps (:input testfile-cc004.ae)) @@ -146485,10 +143921,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc004.expected testfile-cc004_tableaux_cdcl.output))) + (deps testfile-cc004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_tableaux_cdcl.output))) (rule (target testfile-cc004_tableaux.output) (deps (:input testfile-cc004.ae)) @@ -146506,10 +143943,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc004.expected testfile-cc004_tableaux.output))) + (deps testfile-cc004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_tableaux.output))) (rule (target testfile-cc004_legacy.output) (deps (:input testfile-cc004.ae)) @@ -146526,10 +143964,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc004.expected testfile-cc004_legacy.output))) + (deps testfile-cc004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_legacy.output))) (rule (target testfile-cc004_dolmen.output) (deps (:input testfile-cc004.ae)) @@ -146546,10 +143985,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc004.expected testfile-cc004_dolmen.output))) + (deps testfile-cc004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_dolmen.output))) (rule (target testfile-cc004_fpa.output) (deps (:input testfile-cc004.ae)) @@ -146566,10 +144006,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc004.expected testfile-cc004_fpa.output))) + (deps testfile-cc004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc004.expected testfile-cc004_fpa.output))) (rule (target testfile-cc003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc003.ae)) @@ -146588,12 +144029,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc003.expected - testfile-cc003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc003.ae)) @@ -146614,12 +144054,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc003.expected - testfile-cc003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc003.ae)) @@ -146639,12 +144078,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc003.expected - testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc003.ae)) @@ -146663,12 +144101,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc003.expected - testfile-cc003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc003.ae)) @@ -146687,12 +144124,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc003.expected - testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc003.ae)) @@ -146711,12 +144147,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc003.expected - testfile-cc003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc003_cdcl.output) (deps (:input testfile-cc003.ae)) @@ -146734,10 +144169,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc003.expected testfile-cc003_cdcl.output))) + (deps testfile-cc003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_cdcl.output))) (rule (target testfile-cc003_tableaux_cdcl.output) (deps (:input testfile-cc003.ae)) @@ -146755,10 +144191,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc003.expected testfile-cc003_tableaux_cdcl.output))) + (deps testfile-cc003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_tableaux_cdcl.output))) (rule (target testfile-cc003_tableaux.output) (deps (:input testfile-cc003.ae)) @@ -146776,10 +144213,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc003.expected testfile-cc003_tableaux.output))) + (deps testfile-cc003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_tableaux.output))) (rule (target testfile-cc003_legacy.output) (deps (:input testfile-cc003.ae)) @@ -146796,10 +144234,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc003.expected testfile-cc003_legacy.output))) + (deps testfile-cc003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_legacy.output))) (rule (target testfile-cc003_dolmen.output) (deps (:input testfile-cc003.ae)) @@ -146816,10 +144255,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc003.expected testfile-cc003_dolmen.output))) + (deps testfile-cc003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_dolmen.output))) (rule (target testfile-cc003_fpa.output) (deps (:input testfile-cc003.ae)) @@ -146836,10 +144276,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc003.expected testfile-cc003_fpa.output))) + (deps testfile-cc003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc003.expected testfile-cc003_fpa.output))) (rule (target testfile-cc002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc002.ae)) @@ -146858,12 +144299,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc002.expected - testfile-cc002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc002.ae)) @@ -146884,12 +144324,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc002.expected - testfile-cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc002.ae)) @@ -146909,12 +144348,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc002.expected - testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc002.ae)) @@ -146933,12 +144371,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc002.expected - testfile-cc002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc002.ae)) @@ -146957,12 +144394,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc002.expected - testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc002.ae)) @@ -146981,12 +144417,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc002.expected - testfile-cc002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc002_cdcl.output) (deps (:input testfile-cc002.ae)) @@ -147004,10 +144439,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc002.expected testfile-cc002_cdcl.output))) + (deps testfile-cc002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_cdcl.output))) (rule (target testfile-cc002_tableaux_cdcl.output) (deps (:input testfile-cc002.ae)) @@ -147025,10 +144461,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc002.expected testfile-cc002_tableaux_cdcl.output))) + (deps testfile-cc002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_tableaux_cdcl.output))) (rule (target testfile-cc002_tableaux.output) (deps (:input testfile-cc002.ae)) @@ -147046,10 +144483,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc002.expected testfile-cc002_tableaux.output))) + (deps testfile-cc002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_tableaux.output))) (rule (target testfile-cc002_legacy.output) (deps (:input testfile-cc002.ae)) @@ -147066,10 +144504,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc002.expected testfile-cc002_legacy.output))) + (deps testfile-cc002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_legacy.output))) (rule (target testfile-cc002_dolmen.output) (deps (:input testfile-cc002.ae)) @@ -147086,10 +144525,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc002.expected testfile-cc002_dolmen.output))) + (deps testfile-cc002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_dolmen.output))) (rule (target testfile-cc002_fpa.output) (deps (:input testfile-cc002.ae)) @@ -147106,10 +144546,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc002.expected testfile-cc002_fpa.output))) + (deps testfile-cc002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc002.expected testfile-cc002_fpa.output))) (rule (target testfile-cc001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-cc001.ae)) @@ -147128,12 +144569,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc001.expected - testfile-cc001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-cc001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-cc001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc001.ae)) @@ -147154,12 +144594,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc001.expected - testfile-cc001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-cc001.ae)) @@ -147179,12 +144618,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc001.expected - testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-cc001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-cc001.ae)) @@ -147203,12 +144641,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc001.expected - testfile-cc001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-cc001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-cc001.ae)) @@ -147227,12 +144664,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc001.expected - testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-cc001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-cc001.ae)) @@ -147251,12 +144687,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-cc001.expected - testfile-cc001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-cc001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-cc001_cdcl.output) (deps (:input testfile-cc001.ae)) @@ -147274,10 +144709,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc001.expected testfile-cc001_cdcl.output))) + (deps testfile-cc001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_cdcl.output))) (rule (target testfile-cc001_tableaux_cdcl.output) (deps (:input testfile-cc001.ae)) @@ -147295,10 +144731,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc001.expected testfile-cc001_tableaux_cdcl.output))) + (deps testfile-cc001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_tableaux_cdcl.output))) (rule (target testfile-cc001_tableaux.output) (deps (:input testfile-cc001.ae)) @@ -147316,10 +144753,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc001.expected testfile-cc001_tableaux.output))) + (deps testfile-cc001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_tableaux.output))) (rule (target testfile-cc001_legacy.output) (deps (:input testfile-cc001.ae)) @@ -147336,10 +144774,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc001.expected testfile-cc001_legacy.output))) + (deps testfile-cc001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_legacy.output))) (rule (target testfile-cc001_dolmen.output) (deps (:input testfile-cc001.ae)) @@ -147356,10 +144795,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc001.expected testfile-cc001_dolmen.output))) + (deps testfile-cc001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_dolmen.output))) (rule (target testfile-cc001_fpa.output) (deps (:input testfile-cc001.ae)) @@ -147376,10 +144816,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-cc001.expected testfile-cc001_fpa.output))) + (deps testfile-cc001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-cc001.expected testfile-cc001_fpa.output))) (rule (target testfile-ac_cc002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_cc002.ae)) @@ -147398,12 +144839,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_cc002.expected - testfile-ac_cc002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_cc002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_cc002.ae)) @@ -147424,12 +144864,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_cc002.expected - testfile-ac_cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_cc002.ae)) @@ -147449,12 +144888,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_cc002.expected - testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_cc002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_cc002.ae)) @@ -147473,12 +144911,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_cc002.expected - testfile-ac_cc002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_cc002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_cc002.ae)) @@ -147497,12 +144934,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_cc002.expected - testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_cc002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_cc002.ae)) @@ -147521,12 +144957,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_cc002.expected - testfile-ac_cc002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_cc002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_cc002_cdcl.output) (deps (:input testfile-ac_cc002.ae)) @@ -147544,10 +144979,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_cc002.expected testfile-ac_cc002_cdcl.output))) + (deps testfile-ac_cc002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_cdcl.output))) (rule (target testfile-ac_cc002_tableaux_cdcl.output) (deps (:input testfile-ac_cc002.ae)) @@ -147565,12 +145001,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_cc002.expected - testfile-ac_cc002_tableaux_cdcl.output))) + (deps testfile-ac_cc002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_tableaux_cdcl.output))) (rule (target testfile-ac_cc002_tableaux.output) (deps (:input testfile-ac_cc002.ae)) @@ -147588,10 +145023,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_cc002.expected testfile-ac_cc002_tableaux.output))) + (deps testfile-ac_cc002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_tableaux.output))) (rule (target testfile-ac_cc002_legacy.output) (deps (:input testfile-ac_cc002.ae)) @@ -147608,10 +145044,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_cc002.expected testfile-ac_cc002_legacy.output))) + (deps testfile-ac_cc002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_legacy.output))) (rule (target testfile-ac_cc002_dolmen.output) (deps (:input testfile-ac_cc002.ae)) @@ -147628,10 +145065,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_cc002.expected testfile-ac_cc002_dolmen.output))) + (deps testfile-ac_cc002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_dolmen.output))) (rule (target testfile-ac_cc002_fpa.output) (deps (:input testfile-ac_cc002.ae)) @@ -147648,10 +145086,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_cc002.expected testfile-ac_cc002_fpa.output)))) + (deps testfile-ac_cc002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_cc002.expected testfile-ac_cc002_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -147675,12 +145114,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147701,12 +145139,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147726,12 +145163,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147750,12 +145186,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum_poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147774,12 +145209,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum_poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147798,12 +145232,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays003_cdcl.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147821,12 +145254,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_cdcl.output))) + (deps testfile-sum_poly_arrays003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_cdcl.output))) (rule (target testfile-sum_poly_arrays003_tableaux_cdcl.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147844,12 +145276,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_tableaux_cdcl.output))) + (deps testfile-sum_poly_arrays003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_tableaux_cdcl.output))) (rule (target testfile-sum_poly_arrays003_tableaux.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147867,12 +145298,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_tableaux.output))) + (deps testfile-sum_poly_arrays003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_tableaux.output))) (rule (target testfile-sum_poly_arrays003_legacy.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147889,12 +145319,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_legacy.output))) + (deps testfile-sum_poly_arrays003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_legacy.output))) (rule (target testfile-sum_poly_arrays003_dolmen.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147911,12 +145340,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_dolmen.output))) + (deps testfile-sum_poly_arrays003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_dolmen.output))) (rule (target testfile-sum_poly_arrays003_fpa.output) (deps (:input testfile-sum_poly_arrays003.ae)) @@ -147933,12 +145361,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays003.expected - testfile-sum_poly_arrays003_fpa.output))) + (deps testfile-sum_poly_arrays003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays003.expected testfile-sum_poly_arrays003_fpa.output))) (rule (target testfile-sum_poly_arrays002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -147957,12 +145384,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -147983,12 +145409,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148008,12 +145433,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148032,12 +145456,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148056,12 +145479,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148080,12 +145502,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays002_cdcl.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148103,12 +145524,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_cdcl.output))) + (deps testfile-sum_poly_arrays002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_cdcl.output))) (rule (target testfile-sum_poly_arrays002_tableaux_cdcl.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148126,12 +145546,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_tableaux_cdcl.output))) + (deps testfile-sum_poly_arrays002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_tableaux_cdcl.output))) (rule (target testfile-sum_poly_arrays002_tableaux.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148149,12 +145568,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_tableaux.output))) + (deps testfile-sum_poly_arrays002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_tableaux.output))) (rule (target testfile-sum_poly_arrays002_legacy.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148171,12 +145589,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_legacy.output))) + (deps testfile-sum_poly_arrays002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_legacy.output))) (rule (target testfile-sum_poly_arrays002_dolmen.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148193,12 +145610,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_dolmen.output))) + (deps testfile-sum_poly_arrays002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_dolmen.output))) (rule (target testfile-sum_poly_arrays002_fpa.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -148215,12 +145631,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_fpa.output))) + (deps testfile-sum_poly_arrays002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_fpa.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148239,12 +145654,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148265,12 +145679,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148290,12 +145703,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148314,12 +145726,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148338,12 +145749,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148362,12 +145772,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays001_cdcl.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148385,12 +145794,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_cdcl.output))) + (deps testfile-sum_poly_arrays001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_cdcl.output))) (rule (target testfile-sum_poly_arrays001_tableaux_cdcl.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148408,12 +145816,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_tableaux_cdcl.output))) + (deps testfile-sum_poly_arrays001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_tableaux_cdcl.output))) (rule (target testfile-sum_poly_arrays001_tableaux.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148431,12 +145838,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_tableaux.output))) + (deps testfile-sum_poly_arrays001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_tableaux.output))) (rule (target testfile-sum_poly_arrays001_legacy.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148453,12 +145859,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_legacy.output))) + (deps testfile-sum_poly_arrays001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_legacy.output))) (rule (target testfile-sum_poly_arrays001_dolmen.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148475,12 +145880,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_dolmen.output))) + (deps testfile-sum_poly_arrays001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_dolmen.output))) (rule (target testfile-sum_poly_arrays001_fpa.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -148497,12 +145901,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_fpa.output))) + (deps testfile-sum_poly_arrays001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_fpa.output))) (rule (target testfile-set_arrays004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays004.ae)) @@ -148521,12 +145924,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays004.ae)) @@ -148547,12 +145949,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays004.ae)) @@ -148572,12 +145973,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-set_arrays004.ae)) @@ -148596,12 +145996,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-set_arrays004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-set_arrays004.ae)) @@ -148620,12 +146019,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-set_arrays004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays004.ae)) @@ -148644,12 +146042,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays004_cdcl.output) (deps (:input testfile-set_arrays004.ae)) @@ -148667,12 +146064,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_cdcl.output))) + (deps testfile-set_arrays004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_cdcl.output))) (rule (target testfile-set_arrays004_tableaux_cdcl.output) (deps (:input testfile-set_arrays004.ae)) @@ -148690,12 +146086,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_tableaux_cdcl.output))) + (deps testfile-set_arrays004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_tableaux_cdcl.output))) (rule (target testfile-set_arrays004_tableaux.output) (deps (:input testfile-set_arrays004.ae)) @@ -148713,12 +146108,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_tableaux.output))) + (deps testfile-set_arrays004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_tableaux.output))) (rule (target testfile-set_arrays004_legacy.output) (deps (:input testfile-set_arrays004.ae)) @@ -148735,12 +146129,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_legacy.output))) + (deps testfile-set_arrays004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_legacy.output))) (rule (target testfile-set_arrays004_dolmen.output) (deps (:input testfile-set_arrays004.ae)) @@ -148757,12 +146150,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_dolmen.output))) + (deps testfile-set_arrays004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_dolmen.output))) (rule (target testfile-set_arrays004_fpa.output) (deps (:input testfile-set_arrays004.ae)) @@ -148779,12 +146171,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays004.expected - testfile-set_arrays004_fpa.output))) + (deps testfile-set_arrays004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays004.expected testfile-set_arrays004_fpa.output))) (rule (target testfile-set_arrays003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays003.ae)) @@ -148803,12 +146194,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays003.ae)) @@ -148829,12 +146219,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays003.ae)) @@ -148854,12 +146243,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-set_arrays003.ae)) @@ -148878,12 +146266,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-set_arrays003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-set_arrays003.ae)) @@ -148902,12 +146289,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-set_arrays003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays003.ae)) @@ -148926,12 +146312,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays003_cdcl.output) (deps (:input testfile-set_arrays003.ae)) @@ -148949,12 +146334,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_cdcl.output))) + (deps testfile-set_arrays003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_cdcl.output))) (rule (target testfile-set_arrays003_tableaux_cdcl.output) (deps (:input testfile-set_arrays003.ae)) @@ -148972,12 +146356,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_tableaux_cdcl.output))) + (deps testfile-set_arrays003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_tableaux_cdcl.output))) (rule (target testfile-set_arrays003_tableaux.output) (deps (:input testfile-set_arrays003.ae)) @@ -148995,12 +146378,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_tableaux.output))) + (deps testfile-set_arrays003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_tableaux.output))) (rule (target testfile-set_arrays003_legacy.output) (deps (:input testfile-set_arrays003.ae)) @@ -149017,12 +146399,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_legacy.output))) + (deps testfile-set_arrays003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_legacy.output))) (rule (target testfile-set_arrays003_dolmen.output) (deps (:input testfile-set_arrays003.ae)) @@ -149039,12 +146420,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_dolmen.output))) + (deps testfile-set_arrays003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_dolmen.output))) (rule (target testfile-set_arrays003_fpa.output) (deps (:input testfile-set_arrays003.ae)) @@ -149061,12 +146441,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays003.expected - testfile-set_arrays003_fpa.output))) + (deps testfile-set_arrays003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays003.expected testfile-set_arrays003_fpa.output))) (rule (target testfile-set_arrays002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays002.ae)) @@ -149085,12 +146464,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays002.ae)) @@ -149111,12 +146489,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays002.ae)) @@ -149136,12 +146513,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-set_arrays002.ae)) @@ -149160,12 +146536,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-set_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-set_arrays002.ae)) @@ -149184,12 +146559,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-set_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays002.ae)) @@ -149208,12 +146582,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays002_cdcl.output) (deps (:input testfile-set_arrays002.ae)) @@ -149231,12 +146604,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_cdcl.output))) + (deps testfile-set_arrays002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_cdcl.output))) (rule (target testfile-set_arrays002_tableaux_cdcl.output) (deps (:input testfile-set_arrays002.ae)) @@ -149254,12 +146626,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_tableaux_cdcl.output))) + (deps testfile-set_arrays002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_tableaux_cdcl.output))) (rule (target testfile-set_arrays002_tableaux.output) (deps (:input testfile-set_arrays002.ae)) @@ -149277,12 +146648,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_tableaux.output))) + (deps testfile-set_arrays002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_tableaux.output))) (rule (target testfile-set_arrays002_legacy.output) (deps (:input testfile-set_arrays002.ae)) @@ -149299,12 +146669,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_legacy.output))) + (deps testfile-set_arrays002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_legacy.output))) (rule (target testfile-set_arrays002_dolmen.output) (deps (:input testfile-set_arrays002.ae)) @@ -149321,12 +146690,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_dolmen.output))) + (deps testfile-set_arrays002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_dolmen.output))) (rule (target testfile-set_arrays002_fpa.output) (deps (:input testfile-set_arrays002.ae)) @@ -149343,12 +146711,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays002.expected - testfile-set_arrays002_fpa.output))) + (deps testfile-set_arrays002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays002.expected testfile-set_arrays002_fpa.output))) (rule (target testfile-set_arrays001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays001.ae)) @@ -149367,12 +146734,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays001.ae)) @@ -149393,12 +146759,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-set_arrays001.ae)) @@ -149418,12 +146783,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-set_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-set_arrays001.ae)) @@ -149442,12 +146806,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-set_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-set_arrays001.ae)) @@ -149466,12 +146829,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-set_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-set_arrays001.ae)) @@ -149490,12 +146852,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-set_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-set_arrays001_cdcl.output) (deps (:input testfile-set_arrays001.ae)) @@ -149513,12 +146874,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_cdcl.output))) + (deps testfile-set_arrays001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_cdcl.output))) (rule (target testfile-set_arrays001_tableaux_cdcl.output) (deps (:input testfile-set_arrays001.ae)) @@ -149536,12 +146896,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_tableaux_cdcl.output))) + (deps testfile-set_arrays001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_tableaux_cdcl.output))) (rule (target testfile-set_arrays001_tableaux.output) (deps (:input testfile-set_arrays001.ae)) @@ -149559,12 +146918,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_tableaux.output))) + (deps testfile-set_arrays001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_tableaux.output))) (rule (target testfile-set_arrays001_legacy.output) (deps (:input testfile-set_arrays001.ae)) @@ -149581,12 +146939,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_legacy.output))) + (deps testfile-set_arrays001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_legacy.output))) (rule (target testfile-set_arrays001_dolmen.output) (deps (:input testfile-set_arrays001.ae)) @@ -149603,12 +146960,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_dolmen.output))) + (deps testfile-set_arrays001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_dolmen.output))) (rule (target testfile-set_arrays001_fpa.output) (deps (:input testfile-set_arrays001.ae)) @@ -149625,12 +146981,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-set_arrays001.expected - testfile-set_arrays001_fpa.output))) + (deps testfile-set_arrays001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-set_arrays001.expected testfile-set_arrays001_fpa.output))) (rule (target testfile-pairs_arith010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149649,12 +147004,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149675,12 +147029,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149700,12 +147053,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149724,12 +147076,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149748,12 +147099,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149772,12 +147122,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith010_cdcl.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149795,12 +147144,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_cdcl.output))) + (deps testfile-pairs_arith010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_cdcl.output))) (rule (target testfile-pairs_arith010_tableaux_cdcl.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149818,12 +147166,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_tableaux_cdcl.output))) + (deps testfile-pairs_arith010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_tableaux_cdcl.output))) (rule (target testfile-pairs_arith010_tableaux.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149841,12 +147188,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_tableaux.output))) + (deps testfile-pairs_arith010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_tableaux.output))) (rule (target testfile-pairs_arith010_legacy.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149863,12 +147209,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_legacy.output))) + (deps testfile-pairs_arith010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_legacy.output))) (rule (target testfile-pairs_arith010_dolmen.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149885,12 +147230,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_dolmen.output))) + (deps testfile-pairs_arith010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_dolmen.output))) (rule (target testfile-pairs_arith010_fpa.output) (deps (:input testfile-pairs_arith010.ae)) @@ -149907,12 +147251,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith010.expected - testfile-pairs_arith010_fpa.output))) + (deps testfile-pairs_arith010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith010.expected testfile-pairs_arith010_fpa.output))) (rule (target testfile-pairs_arith009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith009.ae)) @@ -149931,12 +147274,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith009.ae)) @@ -149957,12 +147299,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith009.ae)) @@ -149982,12 +147323,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150006,12 +147346,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150030,12 +147369,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150054,12 +147392,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith009_cdcl.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150077,12 +147414,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_cdcl.output))) + (deps testfile-pairs_arith009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_cdcl.output))) (rule (target testfile-pairs_arith009_tableaux_cdcl.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150100,12 +147436,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_tableaux_cdcl.output))) + (deps testfile-pairs_arith009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_tableaux_cdcl.output))) (rule (target testfile-pairs_arith009_tableaux.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150123,12 +147458,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_tableaux.output))) + (deps testfile-pairs_arith009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_tableaux.output))) (rule (target testfile-pairs_arith009_legacy.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150145,12 +147479,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_legacy.output))) + (deps testfile-pairs_arith009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_legacy.output))) (rule (target testfile-pairs_arith009_dolmen.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150167,12 +147500,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_dolmen.output))) + (deps testfile-pairs_arith009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_dolmen.output))) (rule (target testfile-pairs_arith009_fpa.output) (deps (:input testfile-pairs_arith009.ae)) @@ -150189,12 +147521,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith009.expected - testfile-pairs_arith009_fpa.output))) + (deps testfile-pairs_arith009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith009.expected testfile-pairs_arith009_fpa.output))) (rule (target testfile-pairs_arith008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150213,12 +147544,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150239,12 +147569,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150264,12 +147593,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150288,12 +147616,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150312,12 +147639,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150336,12 +147662,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith008_cdcl.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150359,12 +147684,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_cdcl.output))) + (deps testfile-pairs_arith008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_cdcl.output))) (rule (target testfile-pairs_arith008_tableaux_cdcl.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150382,12 +147706,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_tableaux_cdcl.output))) + (deps testfile-pairs_arith008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_tableaux_cdcl.output))) (rule (target testfile-pairs_arith008_tableaux.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150405,12 +147728,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_tableaux.output))) + (deps testfile-pairs_arith008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_tableaux.output))) (rule (target testfile-pairs_arith008_legacy.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150427,12 +147749,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_legacy.output))) + (deps testfile-pairs_arith008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_legacy.output))) (rule (target testfile-pairs_arith008_dolmen.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150449,12 +147770,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_dolmen.output))) + (deps testfile-pairs_arith008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_dolmen.output))) (rule (target testfile-pairs_arith008_fpa.output) (deps (:input testfile-pairs_arith008.ae)) @@ -150471,12 +147791,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith008.expected - testfile-pairs_arith008_fpa.output))) + (deps testfile-pairs_arith008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith008.expected testfile-pairs_arith008_fpa.output))) (rule (target testfile-pairs_arith007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150495,12 +147814,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150521,12 +147839,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150546,12 +147863,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150570,12 +147886,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150594,12 +147909,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150618,12 +147932,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith007_cdcl.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150641,12 +147954,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_cdcl.output))) + (deps testfile-pairs_arith007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_cdcl.output))) (rule (target testfile-pairs_arith007_tableaux_cdcl.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150664,12 +147976,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_tableaux_cdcl.output))) + (deps testfile-pairs_arith007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_tableaux_cdcl.output))) (rule (target testfile-pairs_arith007_tableaux.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150687,12 +147998,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_tableaux.output))) + (deps testfile-pairs_arith007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_tableaux.output))) (rule (target testfile-pairs_arith007_legacy.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150709,12 +148019,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_legacy.output))) + (deps testfile-pairs_arith007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_legacy.output))) (rule (target testfile-pairs_arith007_dolmen.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150731,12 +148040,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_dolmen.output))) + (deps testfile-pairs_arith007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_dolmen.output))) (rule (target testfile-pairs_arith007_fpa.output) (deps (:input testfile-pairs_arith007.ae)) @@ -150753,12 +148061,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith007.expected - testfile-pairs_arith007_fpa.output))) + (deps testfile-pairs_arith007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith007.expected testfile-pairs_arith007_fpa.output))) (rule (target testfile-pairs_arith006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150777,12 +148084,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150803,12 +148109,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150828,12 +148133,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150852,12 +148156,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150876,12 +148179,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150900,12 +148202,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith006_cdcl.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150923,12 +148224,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_cdcl.output))) + (deps testfile-pairs_arith006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_cdcl.output))) (rule (target testfile-pairs_arith006_tableaux_cdcl.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150946,12 +148246,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_tableaux_cdcl.output))) + (deps testfile-pairs_arith006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_tableaux_cdcl.output))) (rule (target testfile-pairs_arith006_tableaux.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150969,12 +148268,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_tableaux.output))) + (deps testfile-pairs_arith006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_tableaux.output))) (rule (target testfile-pairs_arith006_legacy.output) (deps (:input testfile-pairs_arith006.ae)) @@ -150991,12 +148289,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_legacy.output))) + (deps testfile-pairs_arith006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_legacy.output))) (rule (target testfile-pairs_arith006_dolmen.output) (deps (:input testfile-pairs_arith006.ae)) @@ -151013,12 +148310,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_dolmen.output))) + (deps testfile-pairs_arith006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_dolmen.output))) (rule (target testfile-pairs_arith006_fpa.output) (deps (:input testfile-pairs_arith006.ae)) @@ -151035,12 +148331,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith006.expected - testfile-pairs_arith006_fpa.output))) + (deps testfile-pairs_arith006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith006.expected testfile-pairs_arith006_fpa.output))) (rule (target testfile-pairs_arith005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151059,12 +148354,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151085,12 +148379,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151110,12 +148403,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151134,12 +148426,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151158,12 +148449,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151182,12 +148472,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith005_cdcl.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151205,12 +148494,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_cdcl.output))) + (deps testfile-pairs_arith005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_cdcl.output))) (rule (target testfile-pairs_arith005_tableaux_cdcl.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151228,12 +148516,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_tableaux_cdcl.output))) + (deps testfile-pairs_arith005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_tableaux_cdcl.output))) (rule (target testfile-pairs_arith005_tableaux.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151251,12 +148538,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_tableaux.output))) + (deps testfile-pairs_arith005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_tableaux.output))) (rule (target testfile-pairs_arith005_legacy.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151273,12 +148559,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_legacy.output))) + (deps testfile-pairs_arith005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_legacy.output))) (rule (target testfile-pairs_arith005_dolmen.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151295,12 +148580,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_dolmen.output))) + (deps testfile-pairs_arith005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_dolmen.output))) (rule (target testfile-pairs_arith005_fpa.output) (deps (:input testfile-pairs_arith005.ae)) @@ -151317,12 +148601,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith005.expected - testfile-pairs_arith005_fpa.output))) + (deps testfile-pairs_arith005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith005.expected testfile-pairs_arith005_fpa.output))) (rule (target testfile-pairs_arith004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151341,12 +148624,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151367,12 +148649,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151392,12 +148673,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151416,12 +148696,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151440,12 +148719,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151464,12 +148742,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith004_cdcl.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151487,12 +148764,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_cdcl.output))) + (deps testfile-pairs_arith004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_cdcl.output))) (rule (target testfile-pairs_arith004_tableaux_cdcl.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151510,12 +148786,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_tableaux_cdcl.output))) + (deps testfile-pairs_arith004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_tableaux_cdcl.output))) (rule (target testfile-pairs_arith004_tableaux.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151533,12 +148808,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_tableaux.output))) + (deps testfile-pairs_arith004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_tableaux.output))) (rule (target testfile-pairs_arith004_legacy.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151555,12 +148829,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_legacy.output))) + (deps testfile-pairs_arith004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_legacy.output))) (rule (target testfile-pairs_arith004_dolmen.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151577,12 +148850,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_dolmen.output))) + (deps testfile-pairs_arith004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_dolmen.output))) (rule (target testfile-pairs_arith004_fpa.output) (deps (:input testfile-pairs_arith004.ae)) @@ -151599,12 +148871,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith004.expected - testfile-pairs_arith004_fpa.output))) + (deps testfile-pairs_arith004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith004.expected testfile-pairs_arith004_fpa.output))) (rule (target testfile-pairs_arith003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151623,12 +148894,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151649,12 +148919,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151674,12 +148943,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151698,12 +148966,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151722,12 +148989,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151746,12 +149012,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith003_cdcl.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151769,12 +149034,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_cdcl.output))) + (deps testfile-pairs_arith003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_cdcl.output))) (rule (target testfile-pairs_arith003_tableaux_cdcl.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151792,12 +149056,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_tableaux_cdcl.output))) + (deps testfile-pairs_arith003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_tableaux_cdcl.output))) (rule (target testfile-pairs_arith003_tableaux.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151815,12 +149078,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_tableaux.output))) + (deps testfile-pairs_arith003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_tableaux.output))) (rule (target testfile-pairs_arith003_legacy.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151837,12 +149099,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_legacy.output))) + (deps testfile-pairs_arith003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_legacy.output))) (rule (target testfile-pairs_arith003_dolmen.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151859,12 +149120,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_dolmen.output))) + (deps testfile-pairs_arith003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_dolmen.output))) (rule (target testfile-pairs_arith003_fpa.output) (deps (:input testfile-pairs_arith003.ae)) @@ -151881,12 +149141,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith003.expected - testfile-pairs_arith003_fpa.output))) + (deps testfile-pairs_arith003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith003.expected testfile-pairs_arith003_fpa.output))) (rule (target testfile-pairs_arith002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith002.ae)) @@ -151905,12 +149164,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith002.ae)) @@ -151931,12 +149189,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith002.ae)) @@ -151956,12 +149213,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith002.ae)) @@ -151980,12 +149236,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152004,12 +149259,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152028,12 +149282,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith002_cdcl.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152051,12 +149304,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_cdcl.output))) + (deps testfile-pairs_arith002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_cdcl.output))) (rule (target testfile-pairs_arith002_tableaux_cdcl.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152074,12 +149326,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_tableaux_cdcl.output))) + (deps testfile-pairs_arith002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_tableaux_cdcl.output))) (rule (target testfile-pairs_arith002_tableaux.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152097,12 +149348,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_tableaux.output))) + (deps testfile-pairs_arith002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_tableaux.output))) (rule (target testfile-pairs_arith002_legacy.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152119,12 +149369,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_legacy.output))) + (deps testfile-pairs_arith002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_legacy.output))) (rule (target testfile-pairs_arith002_dolmen.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152141,12 +149390,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_dolmen.output))) + (deps testfile-pairs_arith002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_dolmen.output))) (rule (target testfile-pairs_arith002_fpa.output) (deps (:input testfile-pairs_arith002.ae)) @@ -152163,12 +149411,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith002.expected - testfile-pairs_arith002_fpa.output))) + (deps testfile-pairs_arith002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith002.expected testfile-pairs_arith002_fpa.output))) (rule (target testfile-pairs_arith001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152187,12 +149434,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152213,12 +149459,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152238,12 +149483,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-pairs_arith001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152262,12 +149506,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-pairs_arith001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152286,12 +149529,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-pairs_arith001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152310,12 +149552,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-pairs_arith001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-pairs_arith001_cdcl.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152333,12 +149574,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_cdcl.output))) + (deps testfile-pairs_arith001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_cdcl.output))) (rule (target testfile-pairs_arith001_tableaux_cdcl.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152356,12 +149596,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_tableaux_cdcl.output))) + (deps testfile-pairs_arith001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_tableaux_cdcl.output))) (rule (target testfile-pairs_arith001_tableaux.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152379,12 +149618,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_tableaux.output))) + (deps testfile-pairs_arith001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_tableaux.output))) (rule (target testfile-pairs_arith001_legacy.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152401,12 +149639,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_legacy.output))) + (deps testfile-pairs_arith001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_legacy.output))) (rule (target testfile-pairs_arith001_dolmen.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152423,12 +149660,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_dolmen.output))) + (deps testfile-pairs_arith001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_dolmen.output))) (rule (target testfile-pairs_arith001_fpa.output) (deps (:input testfile-pairs_arith001.ae)) @@ -152445,12 +149681,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-pairs_arith001.expected - testfile-pairs_arith001_fpa.output))) + (deps testfile-pairs_arith001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-pairs_arith001.expected testfile-pairs_arith001_fpa.output))) (rule (target testfile-ac_pairs003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152469,12 +149704,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_pairs003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_pairs003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152495,12 +149729,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_pairs003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152520,12 +149753,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_pairs003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152544,12 +149776,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_pairs003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152568,12 +149799,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_pairs003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152592,12 +149822,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_pairs003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_pairs003_cdcl.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152615,10 +149844,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs003.expected testfile-ac_pairs003_cdcl.output))) + (deps testfile-ac_pairs003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_cdcl.output))) (rule (target testfile-ac_pairs003_tableaux_cdcl.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152636,12 +149866,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_tableaux_cdcl.output))) + (deps testfile-ac_pairs003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_tableaux_cdcl.output))) (rule (target testfile-ac_pairs003_tableaux.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152659,12 +149888,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_pairs003.expected - testfile-ac_pairs003_tableaux.output))) + (deps testfile-ac_pairs003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_tableaux.output))) (rule (target testfile-ac_pairs003_legacy.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152681,10 +149909,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs003.expected testfile-ac_pairs003_legacy.output))) + (deps testfile-ac_pairs003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_legacy.output))) (rule (target testfile-ac_pairs003_dolmen.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152701,10 +149930,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs003.expected testfile-ac_pairs003_dolmen.output))) + (deps testfile-ac_pairs003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_dolmen.output))) (rule (target testfile-ac_pairs003_fpa.output) (deps (:input testfile-ac_pairs003.ae)) @@ -152721,10 +149951,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs003.expected testfile-ac_pairs003_fpa.output))) + (deps testfile-ac_pairs003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs003.expected testfile-ac_pairs003_fpa.output))) (rule (target testfile-ac_pairs002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152743,12 +149974,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_pairs002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_pairs002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152769,12 +149999,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_pairs002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152794,12 +150023,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_pairs002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152818,12 +150046,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_pairs002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152842,12 +150069,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_pairs002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152866,12 +150092,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_pairs002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_pairs002_cdcl.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152889,10 +150114,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs002.expected testfile-ac_pairs002_cdcl.output))) + (deps testfile-ac_pairs002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_cdcl.output))) (rule (target testfile-ac_pairs002_tableaux_cdcl.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152910,12 +150136,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_tableaux_cdcl.output))) + (deps testfile-ac_pairs002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_tableaux_cdcl.output))) (rule (target testfile-ac_pairs002_tableaux.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152933,12 +150158,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_pairs002.expected - testfile-ac_pairs002_tableaux.output))) + (deps testfile-ac_pairs002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_tableaux.output))) (rule (target testfile-ac_pairs002_legacy.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152955,10 +150179,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs002.expected testfile-ac_pairs002_legacy.output))) + (deps testfile-ac_pairs002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_legacy.output))) (rule (target testfile-ac_pairs002_dolmen.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152975,10 +150200,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs002.expected testfile-ac_pairs002_dolmen.output))) + (deps testfile-ac_pairs002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_dolmen.output))) (rule (target testfile-ac_pairs002_fpa.output) (deps (:input testfile-ac_pairs002.ae)) @@ -152995,10 +150221,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs002.expected testfile-ac_pairs002_fpa.output))) + (deps testfile-ac_pairs002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs002.expected testfile-ac_pairs002_fpa.output))) (rule (target testfile-ac_pairs001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153017,12 +150244,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_pairs001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_pairs001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153043,12 +150269,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_pairs001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153068,12 +150293,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_pairs001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153092,12 +150316,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_pairs001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153116,12 +150339,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_pairs001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153140,12 +150362,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_pairs001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_pairs001_cdcl.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153163,10 +150384,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs001.expected testfile-ac_pairs001_cdcl.output))) + (deps testfile-ac_pairs001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_cdcl.output))) (rule (target testfile-ac_pairs001_tableaux_cdcl.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153184,12 +150406,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_tableaux_cdcl.output))) + (deps testfile-ac_pairs001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_tableaux_cdcl.output))) (rule (target testfile-ac_pairs001_tableaux.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153207,12 +150428,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_pairs001.expected - testfile-ac_pairs001_tableaux.output))) + (deps testfile-ac_pairs001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_tableaux.output))) (rule (target testfile-ac_pairs001_legacy.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153229,10 +150449,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs001.expected testfile-ac_pairs001_legacy.output))) + (deps testfile-ac_pairs001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_legacy.output))) (rule (target testfile-ac_pairs001_dolmen.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153249,10 +150470,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs001.expected testfile-ac_pairs001_dolmen.output))) + (deps testfile-ac_pairs001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_dolmen.output))) (rule (target testfile-ac_pairs001_fpa.output) (deps (:input testfile-ac_pairs001.ae)) @@ -153269,10 +150491,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_pairs001.expected testfile-ac_pairs001_fpa.output))) + (deps testfile-ac_pairs001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_pairs001.expected testfile-ac_pairs001_fpa.output))) (rule (target testfile-ac_arith015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith015.ae)) @@ -153291,12 +150514,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith015.ae)) @@ -153317,12 +150539,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith015.ae)) @@ -153342,12 +150563,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith015.ae)) @@ -153366,12 +150586,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith015.ae)) @@ -153390,12 +150609,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith015.ae)) @@ -153414,12 +150632,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith015_cdcl.output) (deps (:input testfile-ac_arith015.ae)) @@ -153437,10 +150654,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_cdcl.output))) + (deps testfile-ac_arith015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_cdcl.output))) (rule (target testfile-ac_arith015_tableaux_cdcl.output) (deps (:input testfile-ac_arith015.ae)) @@ -153458,12 +150676,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_tableaux_cdcl.output))) + (deps testfile-ac_arith015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_tableaux_cdcl.output))) (rule (target testfile-ac_arith015_tableaux.output) (deps (:input testfile-ac_arith015.ae)) @@ -153481,12 +150698,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith015.expected - testfile-ac_arith015_tableaux.output))) + (deps testfile-ac_arith015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_tableaux.output))) (rule (target testfile-ac_arith015_legacy.output) (deps (:input testfile-ac_arith015.ae)) @@ -153503,10 +150719,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_legacy.output))) + (deps testfile-ac_arith015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_legacy.output))) (rule (target testfile-ac_arith015_dolmen.output) (deps (:input testfile-ac_arith015.ae)) @@ -153523,10 +150740,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_dolmen.output))) + (deps testfile-ac_arith015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_dolmen.output))) (rule (target testfile-ac_arith015_fpa.output) (deps (:input testfile-ac_arith015.ae)) @@ -153543,10 +150761,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith015.expected testfile-ac_arith015_fpa.output))) + (deps testfile-ac_arith015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith015.expected testfile-ac_arith015_fpa.output))) (rule (target testfile-ac_arith014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith014.ae)) @@ -153565,12 +150784,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith014.ae)) @@ -153591,12 +150809,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith014.ae)) @@ -153616,12 +150833,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith014.ae)) @@ -153640,12 +150856,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith014.ae)) @@ -153664,12 +150879,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith014.ae)) @@ -153688,12 +150902,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith014_cdcl.output) (deps (:input testfile-ac_arith014.ae)) @@ -153711,10 +150924,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_cdcl.output))) + (deps testfile-ac_arith014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_cdcl.output))) (rule (target testfile-ac_arith014_tableaux_cdcl.output) (deps (:input testfile-ac_arith014.ae)) @@ -153732,12 +150946,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_tableaux_cdcl.output))) + (deps testfile-ac_arith014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_tableaux_cdcl.output))) (rule (target testfile-ac_arith014_tableaux.output) (deps (:input testfile-ac_arith014.ae)) @@ -153755,12 +150968,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith014.expected - testfile-ac_arith014_tableaux.output))) + (deps testfile-ac_arith014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_tableaux.output))) (rule (target testfile-ac_arith014_legacy.output) (deps (:input testfile-ac_arith014.ae)) @@ -153777,10 +150989,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_legacy.output))) + (deps testfile-ac_arith014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_legacy.output))) (rule (target testfile-ac_arith014_dolmen.output) (deps (:input testfile-ac_arith014.ae)) @@ -153797,10 +151010,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_dolmen.output))) + (deps testfile-ac_arith014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_dolmen.output))) (rule (target testfile-ac_arith014_fpa.output) (deps (:input testfile-ac_arith014.ae)) @@ -153817,10 +151031,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith014.expected testfile-ac_arith014_fpa.output))) + (deps testfile-ac_arith014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith014.expected testfile-ac_arith014_fpa.output))) (rule (target testfile-ac_arith013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith013.ae)) @@ -153839,12 +151054,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith013.ae)) @@ -153865,12 +151079,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith013.ae)) @@ -153890,12 +151103,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith013.ae)) @@ -153914,12 +151126,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith013.ae)) @@ -153938,12 +151149,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith013.ae)) @@ -153962,12 +151172,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith013_cdcl.output) (deps (:input testfile-ac_arith013.ae)) @@ -153985,10 +151194,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_cdcl.output))) + (deps testfile-ac_arith013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_cdcl.output))) (rule (target testfile-ac_arith013_tableaux_cdcl.output) (deps (:input testfile-ac_arith013.ae)) @@ -154006,12 +151216,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_tableaux_cdcl.output))) + (deps testfile-ac_arith013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_tableaux_cdcl.output))) (rule (target testfile-ac_arith013_tableaux.output) (deps (:input testfile-ac_arith013.ae)) @@ -154029,12 +151238,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith013.expected - testfile-ac_arith013_tableaux.output))) + (deps testfile-ac_arith013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_tableaux.output))) (rule (target testfile-ac_arith013_legacy.output) (deps (:input testfile-ac_arith013.ae)) @@ -154051,10 +151259,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_legacy.output))) + (deps testfile-ac_arith013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_legacy.output))) (rule (target testfile-ac_arith013_dolmen.output) (deps (:input testfile-ac_arith013.ae)) @@ -154071,10 +151280,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_dolmen.output))) + (deps testfile-ac_arith013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_dolmen.output))) (rule (target testfile-ac_arith013_fpa.output) (deps (:input testfile-ac_arith013.ae)) @@ -154091,10 +151301,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith013.expected testfile-ac_arith013_fpa.output))) + (deps testfile-ac_arith013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith013.expected testfile-ac_arith013_fpa.output))) (rule (target testfile-ac_arith012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith012.ae)) @@ -154113,12 +151324,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith012.ae)) @@ -154139,12 +151349,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith012.ae)) @@ -154164,12 +151373,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith012.ae)) @@ -154188,12 +151396,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith012.ae)) @@ -154212,12 +151419,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith012.ae)) @@ -154236,12 +151442,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith012_cdcl.output) (deps (:input testfile-ac_arith012.ae)) @@ -154259,10 +151464,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_cdcl.output))) + (deps testfile-ac_arith012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_cdcl.output))) (rule (target testfile-ac_arith012_tableaux_cdcl.output) (deps (:input testfile-ac_arith012.ae)) @@ -154280,12 +151486,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_tableaux_cdcl.output))) + (deps testfile-ac_arith012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_tableaux_cdcl.output))) (rule (target testfile-ac_arith012_tableaux.output) (deps (:input testfile-ac_arith012.ae)) @@ -154303,12 +151508,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith012.expected - testfile-ac_arith012_tableaux.output))) + (deps testfile-ac_arith012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_tableaux.output))) (rule (target testfile-ac_arith012_legacy.output) (deps (:input testfile-ac_arith012.ae)) @@ -154325,10 +151529,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_legacy.output))) + (deps testfile-ac_arith012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_legacy.output))) (rule (target testfile-ac_arith012_dolmen.output) (deps (:input testfile-ac_arith012.ae)) @@ -154345,10 +151550,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_dolmen.output))) + (deps testfile-ac_arith012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_dolmen.output))) (rule (target testfile-ac_arith012_fpa.output) (deps (:input testfile-ac_arith012.ae)) @@ -154365,10 +151571,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith012.expected testfile-ac_arith012_fpa.output))) + (deps testfile-ac_arith012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith012.expected testfile-ac_arith012_fpa.output))) (rule (target testfile-ac_arith011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith011.ae)) @@ -154387,12 +151594,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith011.ae)) @@ -154413,12 +151619,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith011.ae)) @@ -154438,12 +151643,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith011.ae)) @@ -154462,12 +151666,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith011.ae)) @@ -154486,12 +151689,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith011.ae)) @@ -154510,12 +151712,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith011_cdcl.output) (deps (:input testfile-ac_arith011.ae)) @@ -154533,10 +151734,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_cdcl.output))) + (deps testfile-ac_arith011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_cdcl.output))) (rule (target testfile-ac_arith011_tableaux_cdcl.output) (deps (:input testfile-ac_arith011.ae)) @@ -154554,12 +151756,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_tableaux_cdcl.output))) + (deps testfile-ac_arith011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_tableaux_cdcl.output))) (rule (target testfile-ac_arith011_tableaux.output) (deps (:input testfile-ac_arith011.ae)) @@ -154577,12 +151778,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith011.expected - testfile-ac_arith011_tableaux.output))) + (deps testfile-ac_arith011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_tableaux.output))) (rule (target testfile-ac_arith011_legacy.output) (deps (:input testfile-ac_arith011.ae)) @@ -154599,10 +151799,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_legacy.output))) + (deps testfile-ac_arith011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_legacy.output))) (rule (target testfile-ac_arith011_dolmen.output) (deps (:input testfile-ac_arith011.ae)) @@ -154619,10 +151820,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_dolmen.output))) + (deps testfile-ac_arith011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_dolmen.output))) (rule (target testfile-ac_arith011_fpa.output) (deps (:input testfile-ac_arith011.ae)) @@ -154639,10 +151841,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith011.expected testfile-ac_arith011_fpa.output))) + (deps testfile-ac_arith011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith011.expected testfile-ac_arith011_fpa.output))) (rule (target testfile-ac_arith010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith010.ae)) @@ -154661,12 +151864,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith010.ae)) @@ -154687,12 +151889,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith010.ae)) @@ -154712,12 +151913,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith010.ae)) @@ -154736,12 +151936,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith010.ae)) @@ -154760,12 +151959,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith010.ae)) @@ -154784,12 +151982,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith010_cdcl.output) (deps (:input testfile-ac_arith010.ae)) @@ -154807,10 +152004,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_cdcl.output))) + (deps testfile-ac_arith010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_cdcl.output))) (rule (target testfile-ac_arith010_tableaux_cdcl.output) (deps (:input testfile-ac_arith010.ae)) @@ -154828,12 +152026,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_tableaux_cdcl.output))) + (deps testfile-ac_arith010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_tableaux_cdcl.output))) (rule (target testfile-ac_arith010_tableaux.output) (deps (:input testfile-ac_arith010.ae)) @@ -154851,12 +152048,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith010.expected - testfile-ac_arith010_tableaux.output))) + (deps testfile-ac_arith010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_tableaux.output))) (rule (target testfile-ac_arith010_legacy.output) (deps (:input testfile-ac_arith010.ae)) @@ -154873,10 +152069,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_legacy.output))) + (deps testfile-ac_arith010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_legacy.output))) (rule (target testfile-ac_arith010_dolmen.output) (deps (:input testfile-ac_arith010.ae)) @@ -154893,10 +152090,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_dolmen.output))) + (deps testfile-ac_arith010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_dolmen.output))) (rule (target testfile-ac_arith010_fpa.output) (deps (:input testfile-ac_arith010.ae)) @@ -154913,10 +152111,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith010.expected testfile-ac_arith010_fpa.output))) + (deps testfile-ac_arith010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith010.expected testfile-ac_arith010_fpa.output))) (rule (target testfile-ac_arith009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith009.ae)) @@ -154935,12 +152134,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith009.ae)) @@ -154961,12 +152159,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith009.ae)) @@ -154986,12 +152183,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith009.ae)) @@ -155010,12 +152206,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith009.ae)) @@ -155034,12 +152229,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith009.ae)) @@ -155058,12 +152252,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith009_cdcl.output) (deps (:input testfile-ac_arith009.ae)) @@ -155081,10 +152274,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_cdcl.output))) + (deps testfile-ac_arith009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_cdcl.output))) (rule (target testfile-ac_arith009_tableaux_cdcl.output) (deps (:input testfile-ac_arith009.ae)) @@ -155102,12 +152296,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_tableaux_cdcl.output))) + (deps testfile-ac_arith009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_tableaux_cdcl.output))) (rule (target testfile-ac_arith009_tableaux.output) (deps (:input testfile-ac_arith009.ae)) @@ -155125,12 +152318,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith009.expected - testfile-ac_arith009_tableaux.output))) + (deps testfile-ac_arith009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_tableaux.output))) (rule (target testfile-ac_arith009_legacy.output) (deps (:input testfile-ac_arith009.ae)) @@ -155147,10 +152339,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_legacy.output))) + (deps testfile-ac_arith009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_legacy.output))) (rule (target testfile-ac_arith009_dolmen.output) (deps (:input testfile-ac_arith009.ae)) @@ -155167,10 +152360,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_dolmen.output))) + (deps testfile-ac_arith009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_dolmen.output))) (rule (target testfile-ac_arith009_fpa.output) (deps (:input testfile-ac_arith009.ae)) @@ -155187,10 +152381,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith009.expected testfile-ac_arith009_fpa.output))) + (deps testfile-ac_arith009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith009.expected testfile-ac_arith009_fpa.output))) (rule (target testfile-ac_arith008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith008.ae)) @@ -155209,12 +152404,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith008.ae)) @@ -155235,12 +152429,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith008.ae)) @@ -155260,12 +152453,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith008.ae)) @@ -155284,12 +152476,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith008.ae)) @@ -155308,12 +152499,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith008.ae)) @@ -155332,12 +152522,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith008_cdcl.output) (deps (:input testfile-ac_arith008.ae)) @@ -155355,10 +152544,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_cdcl.output))) + (deps testfile-ac_arith008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_cdcl.output))) (rule (target testfile-ac_arith008_tableaux_cdcl.output) (deps (:input testfile-ac_arith008.ae)) @@ -155376,12 +152566,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_tableaux_cdcl.output))) + (deps testfile-ac_arith008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_tableaux_cdcl.output))) (rule (target testfile-ac_arith008_tableaux.output) (deps (:input testfile-ac_arith008.ae)) @@ -155399,12 +152588,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith008.expected - testfile-ac_arith008_tableaux.output))) + (deps testfile-ac_arith008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_tableaux.output))) (rule (target testfile-ac_arith008_legacy.output) (deps (:input testfile-ac_arith008.ae)) @@ -155421,10 +152609,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_legacy.output))) + (deps testfile-ac_arith008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_legacy.output))) (rule (target testfile-ac_arith008_dolmen.output) (deps (:input testfile-ac_arith008.ae)) @@ -155441,10 +152630,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_dolmen.output))) + (deps testfile-ac_arith008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_dolmen.output))) (rule (target testfile-ac_arith008_fpa.output) (deps (:input testfile-ac_arith008.ae)) @@ -155461,10 +152651,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith008.expected testfile-ac_arith008_fpa.output))) + (deps testfile-ac_arith008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith008.expected testfile-ac_arith008_fpa.output))) (rule (target testfile-ac_arith007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith007.ae)) @@ -155483,12 +152674,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith007.ae)) @@ -155509,12 +152699,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith007.ae)) @@ -155534,12 +152723,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith007.ae)) @@ -155558,12 +152746,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith007.ae)) @@ -155582,12 +152769,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith007.ae)) @@ -155606,12 +152792,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith007_cdcl.output) (deps (:input testfile-ac_arith007.ae)) @@ -155629,10 +152814,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_cdcl.output))) + (deps testfile-ac_arith007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_cdcl.output))) (rule (target testfile-ac_arith007_tableaux_cdcl.output) (deps (:input testfile-ac_arith007.ae)) @@ -155650,12 +152836,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_tableaux_cdcl.output))) + (deps testfile-ac_arith007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_tableaux_cdcl.output))) (rule (target testfile-ac_arith007_tableaux.output) (deps (:input testfile-ac_arith007.ae)) @@ -155673,12 +152858,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith007.expected - testfile-ac_arith007_tableaux.output))) + (deps testfile-ac_arith007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_tableaux.output))) (rule (target testfile-ac_arith007_legacy.output) (deps (:input testfile-ac_arith007.ae)) @@ -155695,10 +152879,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_legacy.output))) + (deps testfile-ac_arith007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_legacy.output))) (rule (target testfile-ac_arith007_dolmen.output) (deps (:input testfile-ac_arith007.ae)) @@ -155715,10 +152900,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_dolmen.output))) + (deps testfile-ac_arith007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_dolmen.output))) (rule (target testfile-ac_arith007_fpa.output) (deps (:input testfile-ac_arith007.ae)) @@ -155735,10 +152921,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith007.expected testfile-ac_arith007_fpa.output))) + (deps testfile-ac_arith007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith007.expected testfile-ac_arith007_fpa.output))) (rule (target testfile-ac_arith006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith006.ae)) @@ -155757,12 +152944,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith006.ae)) @@ -155783,12 +152969,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith006.ae)) @@ -155808,12 +152993,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith006.ae)) @@ -155832,12 +153016,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith006.ae)) @@ -155856,12 +153039,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith006.ae)) @@ -155880,12 +153062,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith006_cdcl.output) (deps (:input testfile-ac_arith006.ae)) @@ -155903,10 +153084,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_cdcl.output))) + (deps testfile-ac_arith006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_cdcl.output))) (rule (target testfile-ac_arith006_tableaux_cdcl.output) (deps (:input testfile-ac_arith006.ae)) @@ -155924,12 +153106,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_tableaux_cdcl.output))) + (deps testfile-ac_arith006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_tableaux_cdcl.output))) (rule (target testfile-ac_arith006_tableaux.output) (deps (:input testfile-ac_arith006.ae)) @@ -155947,12 +153128,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith006.expected - testfile-ac_arith006_tableaux.output))) + (deps testfile-ac_arith006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_tableaux.output))) (rule (target testfile-ac_arith006_legacy.output) (deps (:input testfile-ac_arith006.ae)) @@ -155969,10 +153149,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_legacy.output))) + (deps testfile-ac_arith006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_legacy.output))) (rule (target testfile-ac_arith006_dolmen.output) (deps (:input testfile-ac_arith006.ae)) @@ -155989,10 +153170,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_dolmen.output))) + (deps testfile-ac_arith006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_dolmen.output))) (rule (target testfile-ac_arith006_fpa.output) (deps (:input testfile-ac_arith006.ae)) @@ -156009,10 +153191,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith006.expected testfile-ac_arith006_fpa.output))) + (deps testfile-ac_arith006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith006.expected testfile-ac_arith006_fpa.output))) (rule (target testfile-ac_arith005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith005.ae)) @@ -156031,12 +153214,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith005.ae)) @@ -156057,12 +153239,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith005.ae)) @@ -156082,12 +153263,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith005.ae)) @@ -156106,12 +153286,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith005.ae)) @@ -156130,12 +153309,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith005.ae)) @@ -156154,12 +153332,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith005_cdcl.output) (deps (:input testfile-ac_arith005.ae)) @@ -156177,10 +153354,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_cdcl.output))) + (deps testfile-ac_arith005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_cdcl.output))) (rule (target testfile-ac_arith005_tableaux_cdcl.output) (deps (:input testfile-ac_arith005.ae)) @@ -156198,12 +153376,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_tableaux_cdcl.output))) + (deps testfile-ac_arith005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_tableaux_cdcl.output))) (rule (target testfile-ac_arith005_tableaux.output) (deps (:input testfile-ac_arith005.ae)) @@ -156221,12 +153398,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith005.expected - testfile-ac_arith005_tableaux.output))) + (deps testfile-ac_arith005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_tableaux.output))) (rule (target testfile-ac_arith005_legacy.output) (deps (:input testfile-ac_arith005.ae)) @@ -156243,10 +153419,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_legacy.output))) + (deps testfile-ac_arith005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_legacy.output))) (rule (target testfile-ac_arith005_dolmen.output) (deps (:input testfile-ac_arith005.ae)) @@ -156263,10 +153440,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_dolmen.output))) + (deps testfile-ac_arith005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_dolmen.output))) (rule (target testfile-ac_arith005_fpa.output) (deps (:input testfile-ac_arith005.ae)) @@ -156283,10 +153461,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith005.expected testfile-ac_arith005_fpa.output))) + (deps testfile-ac_arith005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith005.expected testfile-ac_arith005_fpa.output))) (rule (target testfile-ac_arith004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith004.ae)) @@ -156305,12 +153484,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith004.ae)) @@ -156331,12 +153509,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith004.ae)) @@ -156356,12 +153533,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith004.ae)) @@ -156380,12 +153556,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith004.ae)) @@ -156404,12 +153579,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith004.ae)) @@ -156428,12 +153602,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith004_cdcl.output) (deps (:input testfile-ac_arith004.ae)) @@ -156451,10 +153624,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_cdcl.output))) + (deps testfile-ac_arith004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_cdcl.output))) (rule (target testfile-ac_arith004_tableaux_cdcl.output) (deps (:input testfile-ac_arith004.ae)) @@ -156472,12 +153646,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_tableaux_cdcl.output))) + (deps testfile-ac_arith004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_tableaux_cdcl.output))) (rule (target testfile-ac_arith004_tableaux.output) (deps (:input testfile-ac_arith004.ae)) @@ -156495,12 +153668,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith004.expected - testfile-ac_arith004_tableaux.output))) + (deps testfile-ac_arith004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_tableaux.output))) (rule (target testfile-ac_arith004_legacy.output) (deps (:input testfile-ac_arith004.ae)) @@ -156517,10 +153689,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_legacy.output))) + (deps testfile-ac_arith004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_legacy.output))) (rule (target testfile-ac_arith004_dolmen.output) (deps (:input testfile-ac_arith004.ae)) @@ -156537,10 +153710,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_dolmen.output))) + (deps testfile-ac_arith004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_dolmen.output))) (rule (target testfile-ac_arith004_fpa.output) (deps (:input testfile-ac_arith004.ae)) @@ -156557,10 +153731,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith004.expected testfile-ac_arith004_fpa.output))) + (deps testfile-ac_arith004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith004.expected testfile-ac_arith004_fpa.output))) (rule (target testfile-ac_arith003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith003.ae)) @@ -156579,12 +153754,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith003.ae)) @@ -156605,12 +153779,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith003.ae)) @@ -156630,12 +153803,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith003.ae)) @@ -156654,12 +153826,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith003.ae)) @@ -156678,12 +153849,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith003.ae)) @@ -156702,12 +153872,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith003_cdcl.output) (deps (:input testfile-ac_arith003.ae)) @@ -156725,10 +153894,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_cdcl.output))) + (deps testfile-ac_arith003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_cdcl.output))) (rule (target testfile-ac_arith003_tableaux_cdcl.output) (deps (:input testfile-ac_arith003.ae)) @@ -156746,12 +153916,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_tableaux_cdcl.output))) + (deps testfile-ac_arith003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_tableaux_cdcl.output))) (rule (target testfile-ac_arith003_tableaux.output) (deps (:input testfile-ac_arith003.ae)) @@ -156769,12 +153938,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith003.expected - testfile-ac_arith003_tableaux.output))) + (deps testfile-ac_arith003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_tableaux.output))) (rule (target testfile-ac_arith003_legacy.output) (deps (:input testfile-ac_arith003.ae)) @@ -156791,10 +153959,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_legacy.output))) + (deps testfile-ac_arith003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_legacy.output))) (rule (target testfile-ac_arith003_dolmen.output) (deps (:input testfile-ac_arith003.ae)) @@ -156811,10 +153980,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_dolmen.output))) + (deps testfile-ac_arith003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_dolmen.output))) (rule (target testfile-ac_arith003_fpa.output) (deps (:input testfile-ac_arith003.ae)) @@ -156831,10 +154001,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith003.expected testfile-ac_arith003_fpa.output))) + (deps testfile-ac_arith003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith003.expected testfile-ac_arith003_fpa.output))) (rule (target testfile-ac_arith002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith002.ae)) @@ -156853,12 +154024,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith002.ae)) @@ -156879,12 +154049,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith002.ae)) @@ -156904,12 +154073,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith002.ae)) @@ -156928,12 +154096,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith002.ae)) @@ -156952,12 +154119,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith002.ae)) @@ -156976,12 +154142,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith002_cdcl.output) (deps (:input testfile-ac_arith002.ae)) @@ -156999,10 +154164,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_cdcl.output))) + (deps testfile-ac_arith002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_cdcl.output))) (rule (target testfile-ac_arith002_tableaux_cdcl.output) (deps (:input testfile-ac_arith002.ae)) @@ -157020,12 +154186,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_tableaux_cdcl.output))) + (deps testfile-ac_arith002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_tableaux_cdcl.output))) (rule (target testfile-ac_arith002_tableaux.output) (deps (:input testfile-ac_arith002.ae)) @@ -157043,12 +154208,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith002.expected - testfile-ac_arith002_tableaux.output))) + (deps testfile-ac_arith002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_tableaux.output))) (rule (target testfile-ac_arith002_legacy.output) (deps (:input testfile-ac_arith002.ae)) @@ -157065,10 +154229,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_legacy.output))) + (deps testfile-ac_arith002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_legacy.output))) (rule (target testfile-ac_arith002_dolmen.output) (deps (:input testfile-ac_arith002.ae)) @@ -157085,10 +154250,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_dolmen.output))) + (deps testfile-ac_arith002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_dolmen.output))) (rule (target testfile-ac_arith002_fpa.output) (deps (:input testfile-ac_arith002.ae)) @@ -157105,10 +154271,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith002.expected testfile-ac_arith002_fpa.output))) + (deps testfile-ac_arith002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith002.expected testfile-ac_arith002_fpa.output))) (rule (target testfile-ac_arith001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith001.ae)) @@ -157127,12 +154294,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith001.ae)) @@ -157153,12 +154319,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-ac_arith001.ae)) @@ -157178,12 +154343,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-ac_arith001.ae)) @@ -157202,12 +154366,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-ac_arith001.ae)) @@ -157226,12 +154389,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-ac_arith001.ae)) @@ -157250,12 +154412,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-ac_arith001_cdcl.output) (deps (:input testfile-ac_arith001.ae)) @@ -157273,10 +154434,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_cdcl.output))) + (deps testfile-ac_arith001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_cdcl.output))) (rule (target testfile-ac_arith001_tableaux_cdcl.output) (deps (:input testfile-ac_arith001.ae)) @@ -157294,12 +154456,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_tableaux_cdcl.output))) + (deps testfile-ac_arith001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_tableaux_cdcl.output))) (rule (target testfile-ac_arith001_tableaux.output) (deps (:input testfile-ac_arith001.ae)) @@ -157317,12 +154478,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-ac_arith001.expected - testfile-ac_arith001_tableaux.output))) + (deps testfile-ac_arith001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_tableaux.output))) (rule (target testfile-ac_arith001_legacy.output) (deps (:input testfile-ac_arith001.ae)) @@ -157339,10 +154499,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_legacy.output))) + (deps testfile-ac_arith001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_legacy.output))) (rule (target testfile-ac_arith001_dolmen.output) (deps (:input testfile-ac_arith001.ae)) @@ -157359,10 +154520,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_dolmen.output))) + (deps testfile-ac_arith001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_dolmen.output))) (rule (target testfile-ac_arith001_fpa.output) (deps (:input testfile-ac_arith001.ae)) @@ -157379,10 +154541,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-ac_arith001.expected testfile-ac_arith001_fpa.output)))) + (deps testfile-ac_arith001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-ac_arith001.expected testfile-ac_arith001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -157406,12 +154569,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage001.ae)) @@ -157432,12 +154594,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage001.ae)) @@ -157457,12 +154618,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage001.ae)) @@ -157481,12 +154641,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage001.ae)) @@ -157505,12 +154664,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage001.ae)) @@ -157529,12 +154687,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage001_cdcl.output) (deps (:input testfile-typage001.ae)) @@ -157552,10 +154709,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_cdcl.output))) + (deps testfile-typage001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_cdcl.output))) (rule (target testfile-typage001_tableaux_cdcl.output) (deps (:input testfile-typage001.ae)) @@ -157573,12 +154731,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_tableaux_cdcl.output))) + (deps testfile-typage001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_tableaux_cdcl.output))) (rule (target testfile-typage001_tableaux.output) (deps (:input testfile-typage001.ae)) @@ -157596,10 +154753,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_tableaux.output))) + (deps testfile-typage001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_tableaux.output))) (rule (target testfile-typage001_legacy.output) (deps (:input testfile-typage001.ae)) @@ -157616,10 +154774,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_legacy.output))) + (deps testfile-typage001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_legacy.output))) (rule (target testfile-typage001_dolmen.output) (deps (:input testfile-typage001.ae)) @@ -157636,10 +154795,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_dolmen.output))) + (deps testfile-typage001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_dolmen.output))) (rule (target testfile-typage001_fpa.output) (deps (:input testfile-typage001.ae)) @@ -157656,10 +154816,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_fpa.output))) + (deps testfile-typage001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_fpa.output))) (rule (target testfile-tab001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-tab001.ae)) @@ -157678,12 +154839,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-tab001.expected - testfile-tab001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-tab001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-tab001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-tab001.ae)) @@ -157704,12 +154864,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-tab001.expected - testfile-tab001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-tab001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-tab001.ae)) @@ -157729,12 +154888,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-tab001.expected - testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-tab001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-tab001.ae)) @@ -157753,12 +154911,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-tab001.expected - testfile-tab001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-tab001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-tab001.ae)) @@ -157777,12 +154934,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-tab001.expected - testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-tab001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-tab001.ae)) @@ -157801,12 +154957,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-tab001.expected - testfile-tab001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-tab001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-tab001_cdcl.output) (deps (:input testfile-tab001.ae)) @@ -157824,10 +154979,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-tab001.expected testfile-tab001_cdcl.output))) + (deps testfile-tab001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_cdcl.output))) (rule (target testfile-tab001_tableaux_cdcl.output) (deps (:input testfile-tab001.ae)) @@ -157845,10 +155001,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-tab001.expected testfile-tab001_tableaux_cdcl.output))) + (deps testfile-tab001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_tableaux_cdcl.output))) (rule (target testfile-tab001_tableaux.output) (deps (:input testfile-tab001.ae)) @@ -157866,10 +155023,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-tab001.expected testfile-tab001_tableaux.output))) + (deps testfile-tab001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_tableaux.output))) (rule (target testfile-tab001_legacy.output) (deps (:input testfile-tab001.ae)) @@ -157886,10 +155044,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-tab001.expected testfile-tab001_legacy.output))) + (deps testfile-tab001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_legacy.output))) (rule (target testfile-tab001_dolmen.output) (deps (:input testfile-tab001.ae)) @@ -157906,10 +155065,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-tab001.expected testfile-tab001_dolmen.output))) + (deps testfile-tab001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_dolmen.output))) (rule (target testfile-tab001_fpa.output) (deps (:input testfile-tab001.ae)) @@ -157926,10 +155086,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-tab001.expected testfile-tab001_fpa.output))) + (deps testfile-tab001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-tab001.expected testfile-tab001_fpa.output))) (rule (target testfile-predicate002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-predicate002.ae)) @@ -157948,12 +155109,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-predicate002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-predicate002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-predicate002.ae)) @@ -157974,12 +155134,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-predicate002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-predicate002.ae)) @@ -157999,12 +155158,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-predicate002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-predicate002.ae)) @@ -158023,12 +155181,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-predicate002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-predicate002.ae)) @@ -158047,12 +155204,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-predicate002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-predicate002.ae)) @@ -158071,12 +155227,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-predicate002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-predicate002_cdcl.output) (deps (:input testfile-predicate002.ae)) @@ -158094,10 +155249,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-predicate002.expected testfile-predicate002_cdcl.output))) + (deps testfile-predicate002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_cdcl.output))) (rule (target testfile-predicate002_tableaux_cdcl.output) (deps (:input testfile-predicate002.ae)) @@ -158115,12 +155271,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_tableaux_cdcl.output))) + (deps testfile-predicate002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_tableaux_cdcl.output))) (rule (target testfile-predicate002_tableaux.output) (deps (:input testfile-predicate002.ae)) @@ -158138,12 +155293,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_tableaux.output))) + (deps testfile-predicate002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_tableaux.output))) (rule (target testfile-predicate002_legacy.output) (deps (:input testfile-predicate002.ae)) @@ -158160,12 +155314,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_legacy.output))) + (deps testfile-predicate002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_legacy.output))) (rule (target testfile-predicate002_dolmen.output) (deps (:input testfile-predicate002.ae)) @@ -158182,12 +155335,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate002.expected - testfile-predicate002_dolmen.output))) + (deps testfile-predicate002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_dolmen.output))) (rule (target testfile-predicate002_fpa.output) (deps (:input testfile-predicate002.ae)) @@ -158204,10 +155356,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-predicate002.expected testfile-predicate002_fpa.output))) + (deps testfile-predicate002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate002.expected testfile-predicate002_fpa.output))) (rule (target testfile-predicate001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-predicate001.ae)) @@ -158226,12 +155379,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-predicate001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-predicate001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-predicate001.ae)) @@ -158252,12 +155404,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-predicate001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-predicate001.ae)) @@ -158277,12 +155428,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-predicate001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-predicate001.ae)) @@ -158301,12 +155451,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-predicate001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-predicate001.ae)) @@ -158325,12 +155474,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-predicate001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-predicate001.ae)) @@ -158349,12 +155497,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-predicate001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-predicate001_cdcl.output) (deps (:input testfile-predicate001.ae)) @@ -158372,10 +155519,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-predicate001.expected testfile-predicate001_cdcl.output))) + (deps testfile-predicate001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_cdcl.output))) (rule (target testfile-predicate001_tableaux_cdcl.output) (deps (:input testfile-predicate001.ae)) @@ -158393,12 +155541,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_tableaux_cdcl.output))) + (deps testfile-predicate001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_tableaux_cdcl.output))) (rule (target testfile-predicate001_tableaux.output) (deps (:input testfile-predicate001.ae)) @@ -158416,12 +155563,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_tableaux.output))) + (deps testfile-predicate001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_tableaux.output))) (rule (target testfile-predicate001_legacy.output) (deps (:input testfile-predicate001.ae)) @@ -158438,12 +155584,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_legacy.output))) + (deps testfile-predicate001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_legacy.output))) (rule (target testfile-predicate001_dolmen.output) (deps (:input testfile-predicate001.ae)) @@ -158460,12 +155605,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-predicate001.expected - testfile-predicate001_dolmen.output))) + (deps testfile-predicate001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_dolmen.output))) (rule (target testfile-predicate001_fpa.output) (deps (:input testfile-predicate001.ae)) @@ -158482,10 +155626,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-predicate001.expected testfile-predicate001_fpa.output))) + (deps testfile-predicate001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-predicate001.expected testfile-predicate001_fpa.output))) (rule (target testfile-polymorphism001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism001.ae)) @@ -158504,12 +155649,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism001.ae)) @@ -158530,12 +155674,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism001.ae)) @@ -158555,12 +155698,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism001.ae)) @@ -158579,12 +155721,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism001.ae)) @@ -158603,12 +155744,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism001.ae)) @@ -158627,12 +155767,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism001_cdcl.output) (deps (:input testfile-polymorphism001.ae)) @@ -158650,12 +155789,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_cdcl.output))) + (deps testfile-polymorphism001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_cdcl.output))) (rule (target testfile-polymorphism001_tableaux_cdcl.output) (deps (:input testfile-polymorphism001.ae)) @@ -158673,12 +155811,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_tableaux_cdcl.output))) + (deps testfile-polymorphism001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_tableaux_cdcl.output))) (rule (target testfile-polymorphism001_tableaux.output) (deps (:input testfile-polymorphism001.ae)) @@ -158696,12 +155833,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_tableaux.output))) + (deps testfile-polymorphism001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_tableaux.output))) (rule (target testfile-polymorphism001_legacy.output) (deps (:input testfile-polymorphism001.ae)) @@ -158718,12 +155854,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_legacy.output))) + (deps testfile-polymorphism001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_legacy.output))) (rule (target testfile-polymorphism001_dolmen.output) (deps (:input testfile-polymorphism001.ae)) @@ -158740,12 +155875,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_dolmen.output))) + (deps testfile-polymorphism001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_dolmen.output))) (rule (target testfile-polymorphism001_fpa.output) (deps (:input testfile-polymorphism001.ae)) @@ -158762,12 +155896,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_fpa.output))) + (deps testfile-polymorphism001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_fpa.output))) (rule (target testfile-injective002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-injective002.ae)) @@ -158786,12 +155919,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-injective002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-injective002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-injective002.ae)) @@ -158812,12 +155944,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-injective002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-injective002.ae)) @@ -158837,12 +155968,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-injective002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-injective002.ae)) @@ -158861,12 +155991,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-injective002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-injective002.ae)) @@ -158885,12 +156014,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-injective002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-injective002.ae)) @@ -158909,12 +156037,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-injective002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-injective002_cdcl.output) (deps (:input testfile-injective002.ae)) @@ -158932,10 +156059,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-injective002.expected testfile-injective002_cdcl.output))) + (deps testfile-injective002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_cdcl.output))) (rule (target testfile-injective002_tableaux_cdcl.output) (deps (:input testfile-injective002.ae)) @@ -158953,12 +156081,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_tableaux_cdcl.output))) + (deps testfile-injective002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_tableaux_cdcl.output))) (rule (target testfile-injective002_tableaux.output) (deps (:input testfile-injective002.ae)) @@ -158976,12 +156103,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_tableaux.output))) + (deps testfile-injective002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_tableaux.output))) (rule (target testfile-injective002_legacy.output) (deps (:input testfile-injective002.ae)) @@ -158998,12 +156124,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_legacy.output))) + (deps testfile-injective002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_legacy.output))) (rule (target testfile-injective002_dolmen.output) (deps (:input testfile-injective002.ae)) @@ -159020,12 +156145,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective002.expected - testfile-injective002_dolmen.output))) + (deps testfile-injective002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_dolmen.output))) (rule (target testfile-injective002_fpa.output) (deps (:input testfile-injective002.ae)) @@ -159042,10 +156166,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-injective002.expected testfile-injective002_fpa.output))) + (deps testfile-injective002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective002.expected testfile-injective002_fpa.output))) (rule (target testfile-injective001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-injective001.ae)) @@ -159064,12 +156189,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-injective001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-injective001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-injective001.ae)) @@ -159090,12 +156214,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-injective001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-injective001.ae)) @@ -159115,12 +156238,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-injective001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-injective001.ae)) @@ -159139,12 +156261,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-injective001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-injective001.ae)) @@ -159163,12 +156284,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-injective001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-injective001.ae)) @@ -159187,12 +156307,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-injective001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-injective001_cdcl.output) (deps (:input testfile-injective001.ae)) @@ -159210,10 +156329,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-injective001.expected testfile-injective001_cdcl.output))) + (deps testfile-injective001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_cdcl.output))) (rule (target testfile-injective001_tableaux_cdcl.output) (deps (:input testfile-injective001.ae)) @@ -159231,12 +156351,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_tableaux_cdcl.output))) + (deps testfile-injective001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_tableaux_cdcl.output))) (rule (target testfile-injective001_tableaux.output) (deps (:input testfile-injective001.ae)) @@ -159254,12 +156373,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_tableaux.output))) + (deps testfile-injective001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_tableaux.output))) (rule (target testfile-injective001_legacy.output) (deps (:input testfile-injective001.ae)) @@ -159276,12 +156394,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_legacy.output))) + (deps testfile-injective001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_legacy.output))) (rule (target testfile-injective001_dolmen.output) (deps (:input testfile-injective001.ae)) @@ -159298,12 +156415,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-injective001.expected - testfile-injective001_dolmen.output))) + (deps testfile-injective001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_dolmen.output))) (rule (target testfile-injective001_fpa.output) (deps (:input testfile-injective001.ae)) @@ -159320,10 +156436,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-injective001.expected testfile-injective001_fpa.output))) + (deps testfile-injective001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-injective001.expected testfile-injective001_fpa.output))) (rule (target testfile-fl001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-fl001.ae)) @@ -159342,12 +156459,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-fl001.expected - testfile-fl001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-fl001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-fl001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-fl001.ae)) @@ -159368,12 +156484,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-fl001.expected - testfile-fl001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-fl001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-fl001.ae)) @@ -159393,12 +156508,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-fl001.expected - testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-fl001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-fl001.ae)) @@ -159417,12 +156531,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-fl001.expected - testfile-fl001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-fl001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-fl001.ae)) @@ -159441,12 +156554,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-fl001.expected - testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-fl001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-fl001.ae)) @@ -159465,12 +156577,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-fl001.expected - testfile-fl001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-fl001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-fl001_cdcl.output) (deps (:input testfile-fl001.ae)) @@ -159488,10 +156599,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-fl001.expected testfile-fl001_cdcl.output))) + (deps testfile-fl001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_cdcl.output))) (rule (target testfile-fl001_tableaux_cdcl.output) (deps (:input testfile-fl001.ae)) @@ -159509,10 +156621,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-fl001.expected testfile-fl001_tableaux_cdcl.output))) + (deps testfile-fl001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_tableaux_cdcl.output))) (rule (target testfile-fl001_tableaux.output) (deps (:input testfile-fl001.ae)) @@ -159530,10 +156643,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-fl001.expected testfile-fl001_tableaux.output))) + (deps testfile-fl001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_tableaux.output))) (rule (target testfile-fl001_legacy.output) (deps (:input testfile-fl001.ae)) @@ -159550,10 +156664,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-fl001.expected testfile-fl001_legacy.output))) + (deps testfile-fl001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_legacy.output))) (rule (target testfile-fl001_dolmen.output) (deps (:input testfile-fl001.ae)) @@ -159570,10 +156685,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-fl001.expected testfile-fl001_dolmen.output))) + (deps testfile-fl001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_dolmen.output))) (rule (target testfile-fl001_fpa.output) (deps (:input testfile-fl001.ae)) @@ -159590,10 +156706,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-fl001.expected testfile-fl001_fpa.output))) + (deps testfile-fl001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-fl001.expected testfile-fl001_fpa.output))) (rule (target testfile-explanations001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations001.ae)) @@ -159612,12 +156729,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations001.ae)) @@ -159638,12 +156754,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations001.ae)) @@ -159663,12 +156778,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations001.ae)) @@ -159687,12 +156801,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations001.ae)) @@ -159711,12 +156824,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations001.ae)) @@ -159735,12 +156847,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations001_cdcl.output) (deps (:input testfile-explanations001.ae)) @@ -159758,12 +156869,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_cdcl.output))) + (deps testfile-explanations001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_cdcl.output))) (rule (target testfile-explanations001_tableaux_cdcl.output) (deps (:input testfile-explanations001.ae)) @@ -159781,12 +156891,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_tableaux_cdcl.output))) + (deps testfile-explanations001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_tableaux_cdcl.output))) (rule (target testfile-explanations001_tableaux.output) (deps (:input testfile-explanations001.ae)) @@ -159804,12 +156913,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_tableaux.output))) + (deps testfile-explanations001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_tableaux.output))) (rule (target testfile-explanations001_legacy.output) (deps (:input testfile-explanations001.ae)) @@ -159826,12 +156934,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_legacy.output))) + (deps testfile-explanations001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_legacy.output))) (rule (target testfile-explanations001_dolmen.output) (deps (:input testfile-explanations001.ae)) @@ -159848,12 +156955,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_dolmen.output))) + (deps testfile-explanations001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_dolmen.output))) (rule (target testfile-explanations001_fpa.output) (deps (:input testfile-explanations001.ae)) @@ -159870,12 +156976,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_fpa.output))) + (deps testfile-explanations001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_fpa.output))) (rule (target testfile-explanation004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation004.ae)) @@ -159894,12 +156999,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanation004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation004.ae)) @@ -159920,12 +157024,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation004.ae)) @@ -159945,12 +157048,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanation004.ae)) @@ -159969,12 +157071,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanation004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanation004.ae)) @@ -159993,12 +157094,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanation004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation004.ae)) @@ -160017,12 +157117,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanation004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation004_cdcl.output) (deps (:input testfile-explanation004.ae)) @@ -160040,12 +157139,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_cdcl.output))) + (deps testfile-explanation004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_cdcl.output))) (rule (target testfile-explanation004_tableaux_cdcl.output) (deps (:input testfile-explanation004.ae)) @@ -160063,12 +157161,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_tableaux_cdcl.output))) + (deps testfile-explanation004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_tableaux_cdcl.output))) (rule (target testfile-explanation004_tableaux.output) (deps (:input testfile-explanation004.ae)) @@ -160086,12 +157183,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_tableaux.output))) + (deps testfile-explanation004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_tableaux.output))) (rule (target testfile-explanation004_legacy.output) (deps (:input testfile-explanation004.ae)) @@ -160108,12 +157204,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_legacy.output))) + (deps testfile-explanation004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_legacy.output))) (rule (target testfile-explanation004_dolmen.output) (deps (:input testfile-explanation004.ae)) @@ -160130,12 +157225,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_dolmen.output))) + (deps testfile-explanation004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_dolmen.output))) (rule (target testfile-explanation004_fpa.output) (deps (:input testfile-explanation004.ae)) @@ -160152,12 +157246,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation004.expected - testfile-explanation004_fpa.output))) + (deps testfile-explanation004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation004.expected testfile-explanation004_fpa.output))) (rule (target testfile-explanation003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation003.ae)) @@ -160176,12 +157269,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanation003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation003.ae)) @@ -160202,12 +157294,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation003.ae)) @@ -160227,12 +157318,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanation003.ae)) @@ -160251,12 +157341,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanation003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanation003.ae)) @@ -160275,12 +157364,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanation003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation003.ae)) @@ -160299,12 +157387,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanation003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation003_cdcl.output) (deps (:input testfile-explanation003.ae)) @@ -160322,12 +157409,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_cdcl.output))) + (deps testfile-explanation003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_cdcl.output))) (rule (target testfile-explanation003_tableaux_cdcl.output) (deps (:input testfile-explanation003.ae)) @@ -160345,12 +157431,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_tableaux_cdcl.output))) + (deps testfile-explanation003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_tableaux_cdcl.output))) (rule (target testfile-explanation003_tableaux.output) (deps (:input testfile-explanation003.ae)) @@ -160368,12 +157453,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_tableaux.output))) + (deps testfile-explanation003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_tableaux.output))) (rule (target testfile-explanation003_legacy.output) (deps (:input testfile-explanation003.ae)) @@ -160390,12 +157474,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_legacy.output))) + (deps testfile-explanation003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_legacy.output))) (rule (target testfile-explanation003_dolmen.output) (deps (:input testfile-explanation003.ae)) @@ -160412,12 +157495,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_dolmen.output))) + (deps testfile-explanation003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_dolmen.output))) (rule (target testfile-explanation003_fpa.output) (deps (:input testfile-explanation003.ae)) @@ -160434,12 +157516,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation003.expected - testfile-explanation003_fpa.output))) + (deps testfile-explanation003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation003.expected testfile-explanation003_fpa.output))) (rule (target testfile-explanation002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation002.ae)) @@ -160458,12 +157539,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanation002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation002.ae)) @@ -160484,12 +157564,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation002.ae)) @@ -160509,12 +157588,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanation002.ae)) @@ -160533,12 +157611,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanation002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanation002.ae)) @@ -160557,12 +157634,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanation002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation002.ae)) @@ -160581,12 +157657,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanation002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation002_cdcl.output) (deps (:input testfile-explanation002.ae)) @@ -160604,12 +157679,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_cdcl.output))) + (deps testfile-explanation002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_cdcl.output))) (rule (target testfile-explanation002_tableaux_cdcl.output) (deps (:input testfile-explanation002.ae)) @@ -160627,12 +157701,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_tableaux_cdcl.output))) + (deps testfile-explanation002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_tableaux_cdcl.output))) (rule (target testfile-explanation002_tableaux.output) (deps (:input testfile-explanation002.ae)) @@ -160650,12 +157723,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_tableaux.output))) + (deps testfile-explanation002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_tableaux.output))) (rule (target testfile-explanation002_legacy.output) (deps (:input testfile-explanation002.ae)) @@ -160672,12 +157744,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_legacy.output))) + (deps testfile-explanation002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_legacy.output))) (rule (target testfile-explanation002_dolmen.output) (deps (:input testfile-explanation002.ae)) @@ -160694,12 +157765,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_dolmen.output))) + (deps testfile-explanation002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_dolmen.output))) (rule (target testfile-explanation002_fpa.output) (deps (:input testfile-explanation002.ae)) @@ -160716,12 +157786,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation002.expected - testfile-explanation002_fpa.output))) + (deps testfile-explanation002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation002.expected testfile-explanation002_fpa.output))) (rule (target testfile-explanation001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation001.ae)) @@ -160740,12 +157809,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanation001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation001.ae)) @@ -160766,12 +157834,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanation001.ae)) @@ -160791,12 +157858,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanation001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanation001.ae)) @@ -160815,12 +157881,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanation001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanation001.ae)) @@ -160839,12 +157904,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanation001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanation001.ae)) @@ -160863,12 +157927,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanation001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanation001_cdcl.output) (deps (:input testfile-explanation001.ae)) @@ -160886,12 +157949,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_cdcl.output))) + (deps testfile-explanation001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_cdcl.output))) (rule (target testfile-explanation001_tableaux_cdcl.output) (deps (:input testfile-explanation001.ae)) @@ -160909,12 +157971,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_tableaux_cdcl.output))) + (deps testfile-explanation001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_tableaux_cdcl.output))) (rule (target testfile-explanation001_tableaux.output) (deps (:input testfile-explanation001.ae)) @@ -160932,12 +157993,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_tableaux.output))) + (deps testfile-explanation001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_tableaux.output))) (rule (target testfile-explanation001_legacy.output) (deps (:input testfile-explanation001.ae)) @@ -160954,12 +158014,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_legacy.output))) + (deps testfile-explanation001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_legacy.output))) (rule (target testfile-explanation001_dolmen.output) (deps (:input testfile-explanation001.ae)) @@ -160976,12 +158035,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_dolmen.output))) + (deps testfile-explanation001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_dolmen.output))) (rule (target testfile-explanation001_fpa.output) (deps (:input testfile-explanation001.ae)) @@ -160998,12 +158056,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanation001.expected - testfile-explanation001_fpa.output))) + (deps testfile-explanation001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanation001.expected testfile-explanation001_fpa.output))) (rule (target testfile-everything011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything011.ae)) @@ -161022,12 +158079,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything011.ae)) @@ -161048,12 +158104,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything011.ae)) @@ -161073,12 +158128,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything011.ae)) @@ -161097,12 +158151,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything011.ae)) @@ -161121,12 +158174,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything011.ae)) @@ -161145,12 +158197,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything011_cdcl.output) (deps (:input testfile-everything011.ae)) @@ -161168,12 +158219,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_cdcl.output))) + (deps testfile-everything011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_cdcl.output))) (rule (target testfile-everything011_tableaux_cdcl.output) (deps (:input testfile-everything011.ae)) @@ -161191,12 +158241,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_tableaux_cdcl.output))) + (deps testfile-everything011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_tableaux_cdcl.output))) (rule (target testfile-everything011_tableaux.output) (deps (:input testfile-everything011.ae)) @@ -161214,12 +158263,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_tableaux.output))) + (deps testfile-everything011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_tableaux.output))) (rule (target testfile-everything011_legacy.output) (deps (:input testfile-everything011.ae)) @@ -161236,12 +158284,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_legacy.output))) + (deps testfile-everything011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_legacy.output))) (rule (target testfile-everything011_dolmen.output) (deps (:input testfile-everything011.ae)) @@ -161258,12 +158305,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_dolmen.output))) + (deps testfile-everything011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_dolmen.output))) (rule (target testfile-everything011_fpa.output) (deps (:input testfile-everything011.ae)) @@ -161280,12 +158326,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything011.expected - testfile-everything011_fpa.output))) + (deps testfile-everything011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything011.expected testfile-everything011_fpa.output))) (rule (target testfile-everything010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything010.ae)) @@ -161304,12 +158349,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything010.ae)) @@ -161330,12 +158374,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything010.ae)) @@ -161355,12 +158398,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything010.ae)) @@ -161379,12 +158421,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything010.ae)) @@ -161403,12 +158444,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything010.ae)) @@ -161427,12 +158467,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything010_cdcl.output) (deps (:input testfile-everything010.ae)) @@ -161450,12 +158489,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_cdcl.output))) + (deps testfile-everything010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_cdcl.output))) (rule (target testfile-everything010_tableaux_cdcl.output) (deps (:input testfile-everything010.ae)) @@ -161473,12 +158511,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_tableaux_cdcl.output))) + (deps testfile-everything010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_tableaux_cdcl.output))) (rule (target testfile-everything010_tableaux.output) (deps (:input testfile-everything010.ae)) @@ -161496,12 +158533,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_tableaux.output))) + (deps testfile-everything010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_tableaux.output))) (rule (target testfile-everything010_legacy.output) (deps (:input testfile-everything010.ae)) @@ -161518,12 +158554,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_legacy.output))) + (deps testfile-everything010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_legacy.output))) (rule (target testfile-everything010_dolmen.output) (deps (:input testfile-everything010.ae)) @@ -161540,12 +158575,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_dolmen.output))) + (deps testfile-everything010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_dolmen.output))) (rule (target testfile-everything010_fpa.output) (deps (:input testfile-everything010.ae)) @@ -161562,12 +158596,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything010.expected - testfile-everything010_fpa.output))) + (deps testfile-everything010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything010.expected testfile-everything010_fpa.output))) (rule (target testfile-everything009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything009.ae)) @@ -161586,12 +158619,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything009.ae)) @@ -161612,12 +158644,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything009.ae)) @@ -161637,12 +158668,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything009.ae)) @@ -161661,12 +158691,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything009.ae)) @@ -161685,12 +158714,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything009.ae)) @@ -161709,12 +158737,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything009_cdcl.output) (deps (:input testfile-everything009.ae)) @@ -161732,12 +158759,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_cdcl.output))) + (deps testfile-everything009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_cdcl.output))) (rule (target testfile-everything009_tableaux_cdcl.output) (deps (:input testfile-everything009.ae)) @@ -161755,12 +158781,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_tableaux_cdcl.output))) + (deps testfile-everything009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_tableaux_cdcl.output))) (rule (target testfile-everything009_tableaux.output) (deps (:input testfile-everything009.ae)) @@ -161778,12 +158803,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_tableaux.output))) + (deps testfile-everything009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_tableaux.output))) (rule (target testfile-everything009_legacy.output) (deps (:input testfile-everything009.ae)) @@ -161800,12 +158824,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_legacy.output))) + (deps testfile-everything009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_legacy.output))) (rule (target testfile-everything009_dolmen.output) (deps (:input testfile-everything009.ae)) @@ -161822,12 +158845,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_dolmen.output))) + (deps testfile-everything009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_dolmen.output))) (rule (target testfile-everything009_fpa.output) (deps (:input testfile-everything009.ae)) @@ -161844,12 +158866,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything009.expected - testfile-everything009_fpa.output))) + (deps testfile-everything009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything009.expected testfile-everything009_fpa.output))) (rule (target testfile-everything008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything008.ae)) @@ -161868,12 +158889,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything008.ae)) @@ -161894,12 +158914,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything008.ae)) @@ -161919,12 +158938,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything008.ae)) @@ -161943,12 +158961,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything008.ae)) @@ -161967,12 +158984,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything008.ae)) @@ -161991,12 +159007,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything008_cdcl.output) (deps (:input testfile-everything008.ae)) @@ -162014,12 +159029,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_cdcl.output))) + (deps testfile-everything008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_cdcl.output))) (rule (target testfile-everything008_tableaux_cdcl.output) (deps (:input testfile-everything008.ae)) @@ -162037,12 +159051,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_tableaux_cdcl.output))) + (deps testfile-everything008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_tableaux_cdcl.output))) (rule (target testfile-everything008_tableaux.output) (deps (:input testfile-everything008.ae)) @@ -162060,12 +159073,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_tableaux.output))) + (deps testfile-everything008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_tableaux.output))) (rule (target testfile-everything008_legacy.output) (deps (:input testfile-everything008.ae)) @@ -162082,12 +159094,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_legacy.output))) + (deps testfile-everything008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_legacy.output))) (rule (target testfile-everything008_dolmen.output) (deps (:input testfile-everything008.ae)) @@ -162104,12 +159115,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_dolmen.output))) + (deps testfile-everything008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_dolmen.output))) (rule (target testfile-everything008_fpa.output) (deps (:input testfile-everything008.ae)) @@ -162126,12 +159136,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything008.expected - testfile-everything008_fpa.output))) + (deps testfile-everything008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything008.expected testfile-everything008_fpa.output))) (rule (target testfile-everything007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything007.ae)) @@ -162150,12 +159159,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything007.ae)) @@ -162176,12 +159184,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything007.ae)) @@ -162201,12 +159208,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything007.ae)) @@ -162225,12 +159231,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything007.ae)) @@ -162249,12 +159254,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything007.ae)) @@ -162273,12 +159277,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything007_cdcl.output) (deps (:input testfile-everything007.ae)) @@ -162296,12 +159299,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_cdcl.output))) + (deps testfile-everything007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_cdcl.output))) (rule (target testfile-everything007_tableaux_cdcl.output) (deps (:input testfile-everything007.ae)) @@ -162319,12 +159321,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_tableaux_cdcl.output))) + (deps testfile-everything007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_tableaux_cdcl.output))) (rule (target testfile-everything007_tableaux.output) (deps (:input testfile-everything007.ae)) @@ -162342,12 +159343,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_tableaux.output))) + (deps testfile-everything007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_tableaux.output))) (rule (target testfile-everything007_legacy.output) (deps (:input testfile-everything007.ae)) @@ -162364,12 +159364,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_legacy.output))) + (deps testfile-everything007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_legacy.output))) (rule (target testfile-everything007_dolmen.output) (deps (:input testfile-everything007.ae)) @@ -162386,12 +159385,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_dolmen.output))) + (deps testfile-everything007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_dolmen.output))) (rule (target testfile-everything007_fpa.output) (deps (:input testfile-everything007.ae)) @@ -162408,12 +159406,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything007.expected - testfile-everything007_fpa.output))) + (deps testfile-everything007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything007.expected testfile-everything007_fpa.output))) (rule (target testfile-everything006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything006.ae)) @@ -162432,12 +159429,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything006.ae)) @@ -162458,12 +159454,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything006.ae)) @@ -162483,12 +159478,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything006.ae)) @@ -162507,12 +159501,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything006.ae)) @@ -162531,12 +159524,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything006.ae)) @@ -162555,12 +159547,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything006_cdcl.output) (deps (:input testfile-everything006.ae)) @@ -162578,12 +159569,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_cdcl.output))) + (deps testfile-everything006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_cdcl.output))) (rule (target testfile-everything006_tableaux_cdcl.output) (deps (:input testfile-everything006.ae)) @@ -162601,12 +159591,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_tableaux_cdcl.output))) + (deps testfile-everything006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_tableaux_cdcl.output))) (rule (target testfile-everything006_tableaux.output) (deps (:input testfile-everything006.ae)) @@ -162624,12 +159613,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_tableaux.output))) + (deps testfile-everything006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_tableaux.output))) (rule (target testfile-everything006_legacy.output) (deps (:input testfile-everything006.ae)) @@ -162646,12 +159634,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_legacy.output))) + (deps testfile-everything006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_legacy.output))) (rule (target testfile-everything006_dolmen.output) (deps (:input testfile-everything006.ae)) @@ -162668,12 +159655,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_dolmen.output))) + (deps testfile-everything006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_dolmen.output))) (rule (target testfile-everything006_fpa.output) (deps (:input testfile-everything006.ae)) @@ -162690,12 +159676,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything006.expected - testfile-everything006_fpa.output))) + (deps testfile-everything006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything006.expected testfile-everything006_fpa.output))) (rule (target testfile-everything005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything005.ae)) @@ -162714,12 +159699,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything005.ae)) @@ -162740,12 +159724,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything005.ae)) @@ -162765,12 +159748,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything005.ae)) @@ -162789,12 +159771,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything005.ae)) @@ -162813,12 +159794,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything005.ae)) @@ -162837,12 +159817,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything005_cdcl.output) (deps (:input testfile-everything005.ae)) @@ -162860,12 +159839,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_cdcl.output))) + (deps testfile-everything005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_cdcl.output))) (rule (target testfile-everything005_tableaux_cdcl.output) (deps (:input testfile-everything005.ae)) @@ -162883,12 +159861,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_tableaux_cdcl.output))) + (deps testfile-everything005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_tableaux_cdcl.output))) (rule (target testfile-everything005_tableaux.output) (deps (:input testfile-everything005.ae)) @@ -162906,12 +159883,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_tableaux.output))) + (deps testfile-everything005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_tableaux.output))) (rule (target testfile-everything005_legacy.output) (deps (:input testfile-everything005.ae)) @@ -162928,12 +159904,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_legacy.output))) + (deps testfile-everything005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_legacy.output))) (rule (target testfile-everything005_dolmen.output) (deps (:input testfile-everything005.ae)) @@ -162950,12 +159925,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_dolmen.output))) + (deps testfile-everything005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_dolmen.output))) (rule (target testfile-everything005_fpa.output) (deps (:input testfile-everything005.ae)) @@ -162972,12 +159946,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything005.expected - testfile-everything005_fpa.output))) + (deps testfile-everything005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything005.expected testfile-everything005_fpa.output))) (rule (target testfile-everything004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything004.ae)) @@ -162996,12 +159969,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything004.ae)) @@ -163022,12 +159994,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything004.ae)) @@ -163047,12 +160018,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything004.ae)) @@ -163071,12 +160041,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything004.ae)) @@ -163095,12 +160064,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything004.ae)) @@ -163119,12 +160087,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything004_cdcl.output) (deps (:input testfile-everything004.ae)) @@ -163142,12 +160109,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_cdcl.output))) + (deps testfile-everything004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_cdcl.output))) (rule (target testfile-everything004_tableaux_cdcl.output) (deps (:input testfile-everything004.ae)) @@ -163165,12 +160131,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_tableaux_cdcl.output))) + (deps testfile-everything004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_tableaux_cdcl.output))) (rule (target testfile-everything004_tableaux.output) (deps (:input testfile-everything004.ae)) @@ -163188,12 +160153,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_tableaux.output))) + (deps testfile-everything004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_tableaux.output))) (rule (target testfile-everything004_legacy.output) (deps (:input testfile-everything004.ae)) @@ -163210,12 +160174,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_legacy.output))) + (deps testfile-everything004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_legacy.output))) (rule (target testfile-everything004_dolmen.output) (deps (:input testfile-everything004.ae)) @@ -163232,12 +160195,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_dolmen.output))) + (deps testfile-everything004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_dolmen.output))) (rule (target testfile-everything004_fpa.output) (deps (:input testfile-everything004.ae)) @@ -163254,12 +160216,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything004.expected - testfile-everything004_fpa.output))) + (deps testfile-everything004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything004.expected testfile-everything004_fpa.output))) (rule (target testfile-everything003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything003.ae)) @@ -163278,12 +160239,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything003.ae)) @@ -163304,12 +160264,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything003.ae)) @@ -163329,12 +160288,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything003.ae)) @@ -163353,12 +160311,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything003.ae)) @@ -163377,12 +160334,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything003.ae)) @@ -163401,12 +160357,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything003_cdcl.output) (deps (:input testfile-everything003.ae)) @@ -163424,12 +160379,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_cdcl.output))) + (deps testfile-everything003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_cdcl.output))) (rule (target testfile-everything003_tableaux_cdcl.output) (deps (:input testfile-everything003.ae)) @@ -163447,12 +160401,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_tableaux_cdcl.output))) + (deps testfile-everything003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_tableaux_cdcl.output))) (rule (target testfile-everything003_tableaux.output) (deps (:input testfile-everything003.ae)) @@ -163470,12 +160423,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_tableaux.output))) + (deps testfile-everything003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_tableaux.output))) (rule (target testfile-everything003_legacy.output) (deps (:input testfile-everything003.ae)) @@ -163492,12 +160444,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_legacy.output))) + (deps testfile-everything003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_legacy.output))) (rule (target testfile-everything003_dolmen.output) (deps (:input testfile-everything003.ae)) @@ -163514,12 +160465,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_dolmen.output))) + (deps testfile-everything003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_dolmen.output))) (rule (target testfile-everything003_fpa.output) (deps (:input testfile-everything003.ae)) @@ -163536,12 +160486,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything003.expected - testfile-everything003_fpa.output))) + (deps testfile-everything003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything003.expected testfile-everything003_fpa.output))) (rule (target testfile-everything002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything002.ae)) @@ -163560,12 +160509,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything002.ae)) @@ -163586,12 +160534,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything002.ae)) @@ -163611,12 +160558,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything002.ae)) @@ -163635,12 +160581,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything002.ae)) @@ -163659,12 +160604,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything002.ae)) @@ -163683,12 +160627,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything002_cdcl.output) (deps (:input testfile-everything002.ae)) @@ -163706,12 +160649,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_cdcl.output))) + (deps testfile-everything002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_cdcl.output))) (rule (target testfile-everything002_tableaux_cdcl.output) (deps (:input testfile-everything002.ae)) @@ -163729,12 +160671,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_tableaux_cdcl.output))) + (deps testfile-everything002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_tableaux_cdcl.output))) (rule (target testfile-everything002_tableaux.output) (deps (:input testfile-everything002.ae)) @@ -163752,12 +160693,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_tableaux.output))) + (deps testfile-everything002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_tableaux.output))) (rule (target testfile-everything002_legacy.output) (deps (:input testfile-everything002.ae)) @@ -163774,12 +160714,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_legacy.output))) + (deps testfile-everything002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_legacy.output))) (rule (target testfile-everything002_dolmen.output) (deps (:input testfile-everything002.ae)) @@ -163796,12 +160735,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_dolmen.output))) + (deps testfile-everything002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_dolmen.output))) (rule (target testfile-everything002_fpa.output) (deps (:input testfile-everything002.ae)) @@ -163818,12 +160756,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything002.expected - testfile-everything002_fpa.output))) + (deps testfile-everything002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything002.expected testfile-everything002_fpa.output))) (rule (target testfile-everything001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-everything001.ae)) @@ -163842,12 +160779,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything001.ae)) @@ -163868,12 +160804,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything001.ae)) @@ -163893,12 +160828,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything001.ae)) @@ -163917,12 +160851,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything001.ae)) @@ -163941,12 +160874,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything001.ae)) @@ -163965,12 +160897,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything001_cdcl.output) (deps (:input testfile-everything001.ae)) @@ -163988,12 +160919,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_cdcl.output))) + (deps testfile-everything001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_cdcl.output))) (rule (target testfile-everything001_tableaux_cdcl.output) (deps (:input testfile-everything001.ae)) @@ -164011,12 +160941,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_tableaux_cdcl.output))) + (deps testfile-everything001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_tableaux_cdcl.output))) (rule (target testfile-everything001_tableaux.output) (deps (:input testfile-everything001.ae)) @@ -164034,12 +160963,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_tableaux.output))) + (deps testfile-everything001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_tableaux.output))) (rule (target testfile-everything001_legacy.output) (deps (:input testfile-everything001.ae)) @@ -164056,12 +160984,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_legacy.output))) + (deps testfile-everything001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_legacy.output))) (rule (target testfile-everything001_dolmen.output) (deps (:input testfile-everything001.ae)) @@ -164078,12 +161005,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_dolmen.output))) + (deps testfile-everything001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_dolmen.output))) (rule (target testfile-everything001_fpa.output) (deps (:input testfile-everything001.ae)) @@ -164100,12 +161026,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything001.expected - testfile-everything001_fpa.output))) + (deps testfile-everything001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything001.expected testfile-everything001_fpa.output))) (rule (target testfile-distinct001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-distinct001.ae)) @@ -164124,12 +161049,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-distinct001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-distinct001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-distinct001.ae)) @@ -164150,12 +161074,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-distinct001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-distinct001.ae)) @@ -164175,12 +161098,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-distinct001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-distinct001.ae)) @@ -164199,12 +161121,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-distinct001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-distinct001.ae)) @@ -164223,12 +161144,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-distinct001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-distinct001.ae)) @@ -164247,12 +161167,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-distinct001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-distinct001_cdcl.output) (deps (:input testfile-distinct001.ae)) @@ -164270,10 +161189,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-distinct001.expected testfile-distinct001_cdcl.output))) + (deps testfile-distinct001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_cdcl.output))) (rule (target testfile-distinct001_tableaux_cdcl.output) (deps (:input testfile-distinct001.ae)) @@ -164291,12 +161211,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_tableaux_cdcl.output))) + (deps testfile-distinct001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_tableaux_cdcl.output))) (rule (target testfile-distinct001_tableaux.output) (deps (:input testfile-distinct001.ae)) @@ -164314,12 +161233,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-distinct001.expected - testfile-distinct001_tableaux.output))) + (deps testfile-distinct001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_tableaux.output))) (rule (target testfile-distinct001_legacy.output) (deps (:input testfile-distinct001.ae)) @@ -164336,10 +161254,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-distinct001.expected testfile-distinct001_legacy.output))) + (deps testfile-distinct001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_legacy.output))) (rule (target testfile-distinct001_dolmen.output) (deps (:input testfile-distinct001.ae)) @@ -164356,10 +161275,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-distinct001.expected testfile-distinct001_dolmen.output))) + (deps testfile-distinct001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_dolmen.output))) (rule (target testfile-distinct001_fpa.output) (deps (:input testfile-distinct001.ae)) @@ -164376,10 +161296,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-distinct001.expected testfile-distinct001_fpa.output))) + (deps testfile-distinct001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-distinct001.expected testfile-distinct001_fpa.output))) (rule (target testfile-case_split002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-case_split002.ae)) @@ -164398,12 +161319,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-case_split002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-case_split002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-case_split002.ae)) @@ -164424,12 +161344,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-case_split002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-case_split002.ae)) @@ -164449,12 +161368,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-case_split002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-case_split002.ae)) @@ -164473,12 +161391,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-case_split002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-case_split002.ae)) @@ -164497,12 +161414,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-case_split002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-case_split002.ae)) @@ -164521,12 +161437,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-case_split002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-case_split002_cdcl.output) (deps (:input testfile-case_split002.ae)) @@ -164544,12 +161459,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_cdcl.output))) + (deps testfile-case_split002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_cdcl.output))) (rule (target testfile-case_split002_tableaux_cdcl.output) (deps (:input testfile-case_split002.ae)) @@ -164567,12 +161481,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_tableaux_cdcl.output))) + (deps testfile-case_split002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_tableaux_cdcl.output))) (rule (target testfile-case_split002_tableaux.output) (deps (:input testfile-case_split002.ae)) @@ -164590,12 +161503,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_tableaux.output))) + (deps testfile-case_split002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_tableaux.output))) (rule (target testfile-case_split002_legacy.output) (deps (:input testfile-case_split002.ae)) @@ -164612,12 +161524,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_legacy.output))) + (deps testfile-case_split002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_legacy.output))) (rule (target testfile-case_split002_dolmen.output) (deps (:input testfile-case_split002.ae)) @@ -164634,12 +161545,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_dolmen.output))) + (deps testfile-case_split002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_dolmen.output))) (rule (target testfile-case_split002_fpa.output) (deps (:input testfile-case_split002.ae)) @@ -164656,12 +161566,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split002.expected - testfile-case_split002_fpa.output))) + (deps testfile-case_split002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split002.expected testfile-case_split002_fpa.output))) (rule (target testfile-case_split001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-case_split001.ae)) @@ -164680,12 +161589,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-case_split001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-case_split001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-case_split001.ae)) @@ -164706,12 +161614,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-case_split001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-case_split001.ae)) @@ -164731,12 +161638,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-case_split001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-case_split001.ae)) @@ -164755,12 +161661,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-case_split001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-case_split001.ae)) @@ -164779,12 +161684,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-case_split001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-case_split001.ae)) @@ -164803,12 +161707,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-case_split001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-case_split001_cdcl.output) (deps (:input testfile-case_split001.ae)) @@ -164826,12 +161729,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_cdcl.output))) + (deps testfile-case_split001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_cdcl.output))) (rule (target testfile-case_split001_tableaux_cdcl.output) (deps (:input testfile-case_split001.ae)) @@ -164849,12 +161751,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_tableaux_cdcl.output))) + (deps testfile-case_split001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_tableaux_cdcl.output))) (rule (target testfile-case_split001_tableaux.output) (deps (:input testfile-case_split001.ae)) @@ -164872,12 +161773,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_tableaux.output))) + (deps testfile-case_split001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_tableaux.output))) (rule (target testfile-case_split001_legacy.output) (deps (:input testfile-case_split001.ae)) @@ -164894,12 +161794,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_legacy.output))) + (deps testfile-case_split001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_legacy.output))) (rule (target testfile-case_split001_dolmen.output) (deps (:input testfile-case_split001.ae)) @@ -164916,12 +161815,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_dolmen.output))) + (deps testfile-case_split001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_dolmen.output))) (rule (target testfile-case_split001_fpa.output) (deps (:input testfile-case_split001.ae)) @@ -164938,12 +161836,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-case_split001.expected - testfile-case_split001_fpa.output))) + (deps testfile-case_split001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-case_split001.expected testfile-case_split001_fpa.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -164962,12 +161859,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_no_minimal_bj.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -164988,12 +161884,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165013,12 +161908,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165037,12 +161931,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165061,12 +161954,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165085,12 +161977,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_cdcl.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165108,12 +161999,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_cdcl.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_cdcl.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_tableaux_cdcl.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165131,12 +162021,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_tableaux_cdcl.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_tableaux_cdcl.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_tableaux.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165154,12 +162043,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_tableaux.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_tableaux.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_legacy.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165176,12 +162064,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_legacy.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_legacy.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_dolmen.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165198,12 +162085,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_dolmen.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_dolmen.output))) (rule (target testfile-JC-sw_path_edge_1___MINIMAL_fpa.output) (deps (:input testfile-JC-sw_path_edge_1___MINIMAL.ae)) @@ -165220,12 +162106,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-JC-sw_path_edge_1___MINIMAL.expected - testfile-JC-sw_path_edge_1___MINIMAL_fpa.output))) + (deps testfile-JC-sw_path_edge_1___MINIMAL_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-JC-sw_path_edge_1___MINIMAL.expected testfile-JC-sw_path_edge_1___MINIMAL_fpa.output))) (rule (target improvement#1bis_ci_cdcl_no_minimal_bj.output) (deps (:input improvement#1bis.ae)) @@ -165244,12 +162129,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - improvement#1bis.expected - improvement#1bis_ci_cdcl_no_minimal_bj.output))) + (deps improvement#1bis_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_ci_cdcl_no_minimal_bj.output))) (rule (target improvement#1bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input improvement#1bis.ae)) @@ -165270,12 +162154,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - improvement#1bis.expected - improvement#1bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps improvement#1bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input improvement#1bis.ae)) @@ -165295,12 +162178,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - improvement#1bis.expected - improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target improvement#1bis_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input improvement#1bis.ae)) @@ -165319,12 +162201,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - improvement#1bis.expected - improvement#1bis_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps improvement#1bis_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input improvement#1bis.ae)) @@ -165343,12 +162224,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - improvement#1bis.expected - improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target improvement#1bis_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input improvement#1bis.ae)) @@ -165367,12 +162247,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - improvement#1bis.expected - improvement#1bis_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps improvement#1bis_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target improvement#1bis_cdcl.output) (deps (:input improvement#1bis.ae)) @@ -165390,10 +162269,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff improvement#1bis.expected improvement#1bis_cdcl.output))) + (deps improvement#1bis_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_cdcl.output))) (rule (target improvement#1bis_tableaux_cdcl.output) (deps (:input improvement#1bis.ae)) @@ -165411,10 +162291,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff improvement#1bis.expected improvement#1bis_tableaux_cdcl.output))) + (deps improvement#1bis_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_tableaux_cdcl.output))) (rule (target improvement#1bis_tableaux.output) (deps (:input improvement#1bis.ae)) @@ -165432,10 +162313,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff improvement#1bis.expected improvement#1bis_tableaux.output))) + (deps improvement#1bis_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_tableaux.output))) (rule (target improvement#1bis_legacy.output) (deps (:input improvement#1bis.ae)) @@ -165452,10 +162334,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff improvement#1bis.expected improvement#1bis_legacy.output))) + (deps improvement#1bis_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_legacy.output))) (rule (target improvement#1bis_dolmen.output) (deps (:input improvement#1bis.ae)) @@ -165472,10 +162355,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff improvement#1bis.expected improvement#1bis_dolmen.output))) + (deps improvement#1bis_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_dolmen.output))) (rule (target improvement#1bis_fpa.output) (deps (:input improvement#1bis.ae)) @@ -165492,10 +162376,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff improvement#1bis.expected improvement#1bis_fpa.output))) + (deps improvement#1bis_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff improvement#1bis.expected improvement#1bis_fpa.output))) (rule (target f5_ci_cdcl_no_minimal_bj.output) (deps (:input f5.ae)) @@ -165514,10 +162399,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f5.expected f5_ci_cdcl_no_minimal_bj.output))) + (deps f5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f5.expected f5_ci_cdcl_no_minimal_bj.output))) (rule (target f5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f5.ae)) @@ -165538,12 +162424,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f5.expected - f5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f5.expected f5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f5.ae)) @@ -165563,12 +162448,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f5.expected - f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f5.expected f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f5.ae)) @@ -165587,10 +162471,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f5.expected f5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f5.expected f5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f5.ae)) @@ -165609,12 +162494,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f5.expected - f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f5.expected f5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f5.ae)) @@ -165633,10 +162517,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f5.expected f5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f5.expected f5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f5_cdcl.output) (deps (:input f5.ae)) @@ -165654,10 +162539,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f5.expected f5_cdcl.output))) + (deps f5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f5.expected f5_cdcl.output))) (rule (target f5_tableaux_cdcl.output) (deps (:input f5.ae)) @@ -165675,10 +162561,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f5.expected f5_tableaux_cdcl.output))) + (deps f5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f5.expected f5_tableaux_cdcl.output))) (rule (target f5_tableaux.output) (deps (:input f5.ae)) @@ -165696,10 +162583,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f5.expected f5_tableaux.output))) + (deps f5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f5.expected f5_tableaux.output))) (rule (target f5_legacy.output) (deps (:input f5.ae)) @@ -165716,10 +162604,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f5.expected f5_legacy.output))) + (deps f5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f5.expected f5_legacy.output))) (rule (target f5_dolmen.output) (deps (:input f5.ae)) @@ -165736,10 +162625,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f5.expected f5_dolmen.output))) + (deps f5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f5.expected f5_dolmen.output))) (rule (target f5_fpa.output) (deps (:input f5.ae)) @@ -165756,10 +162646,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f5.expected f5_fpa.output))) + (deps f5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f5.expected f5_fpa.output))) (rule (target f4_ci_cdcl_no_minimal_bj.output) (deps (:input f4.ae)) @@ -165778,10 +162669,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f4.expected f4_ci_cdcl_no_minimal_bj.output))) + (deps f4_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f4.expected f4_ci_cdcl_no_minimal_bj.output))) (rule (target f4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f4.ae)) @@ -165802,12 +162694,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f4.expected - f4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f4.expected f4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f4.ae)) @@ -165827,12 +162718,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f4.expected - f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f4.expected f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f4_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f4.ae)) @@ -165851,10 +162741,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f4.expected f4_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f4_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f4.expected f4_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f4.ae)) @@ -165873,12 +162764,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f4.expected - f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f4.expected f4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f4_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f4.ae)) @@ -165897,10 +162787,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f4.expected f4_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f4_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f4.expected f4_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f4_cdcl.output) (deps (:input f4.ae)) @@ -165918,10 +162809,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f4.expected f4_cdcl.output))) + (deps f4_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f4.expected f4_cdcl.output))) (rule (target f4_tableaux_cdcl.output) (deps (:input f4.ae)) @@ -165939,10 +162831,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f4.expected f4_tableaux_cdcl.output))) + (deps f4_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f4.expected f4_tableaux_cdcl.output))) (rule (target f4_tableaux.output) (deps (:input f4.ae)) @@ -165960,10 +162853,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f4.expected f4_tableaux.output))) + (deps f4_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f4.expected f4_tableaux.output))) (rule (target f4_legacy.output) (deps (:input f4.ae)) @@ -165980,10 +162874,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f4.expected f4_legacy.output))) + (deps f4_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f4.expected f4_legacy.output))) (rule (target f4_dolmen.output) (deps (:input f4.ae)) @@ -166000,10 +162895,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f4.expected f4_dolmen.output))) + (deps f4_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f4.expected f4_dolmen.output))) (rule (target f4_fpa.output) (deps (:input f4.ae)) @@ -166020,10 +162916,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f4.expected f4_fpa.output))) + (deps f4_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f4.expected f4_fpa.output))) (rule (target f3_ci_cdcl_no_minimal_bj.output) (deps (:input f3.ae)) @@ -166042,10 +162939,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f3.expected f3_ci_cdcl_no_minimal_bj.output))) + (deps f3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f3.expected f3_ci_cdcl_no_minimal_bj.output))) (rule (target f3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f3.ae)) @@ -166066,12 +162964,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f3.expected - f3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f3.expected f3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f3.ae)) @@ -166091,12 +162988,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f3.expected - f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f3.expected f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f3.ae)) @@ -166115,10 +163011,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f3.expected f3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f3.expected f3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f3.ae)) @@ -166137,12 +163034,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f3.expected - f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f3.expected f3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f3.ae)) @@ -166161,10 +163057,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f3.expected f3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f3.expected f3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f3_cdcl.output) (deps (:input f3.ae)) @@ -166182,10 +163079,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f3.expected f3_cdcl.output))) + (deps f3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f3.expected f3_cdcl.output))) (rule (target f3_tableaux_cdcl.output) (deps (:input f3.ae)) @@ -166203,10 +163101,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f3.expected f3_tableaux_cdcl.output))) + (deps f3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f3.expected f3_tableaux_cdcl.output))) (rule (target f3_tableaux.output) (deps (:input f3.ae)) @@ -166224,10 +163123,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f3.expected f3_tableaux.output))) + (deps f3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f3.expected f3_tableaux.output))) (rule (target f3_legacy.output) (deps (:input f3.ae)) @@ -166244,10 +163144,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f3.expected f3_legacy.output))) + (deps f3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f3.expected f3_legacy.output))) (rule (target f3_dolmen.output) (deps (:input f3.ae)) @@ -166264,10 +163165,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f3.expected f3_dolmen.output))) + (deps f3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f3.expected f3_dolmen.output))) (rule (target f3_fpa.output) (deps (:input f3.ae)) @@ -166284,10 +163186,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f3.expected f3_fpa.output))) + (deps f3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f3.expected f3_fpa.output))) (rule (target f2_ci_cdcl_no_minimal_bj.output) (deps (:input f2.ae)) @@ -166306,10 +163209,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f2.expected f2_ci_cdcl_no_minimal_bj.output))) + (deps f2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2.expected f2_ci_cdcl_no_minimal_bj.output))) (rule (target f2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f2.ae)) @@ -166330,12 +163234,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f2.expected - f2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2.expected f2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f2.ae)) @@ -166355,12 +163258,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f2.expected - f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2.expected f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f2.ae)) @@ -166379,10 +163281,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f2.expected f2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2.expected f2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f2.ae)) @@ -166401,12 +163304,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f2.expected - f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2.expected f2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f2.ae)) @@ -166425,10 +163327,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f2.expected f2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2.expected f2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f2_cdcl.output) (deps (:input f2.ae)) @@ -166446,10 +163349,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2.expected f2_cdcl.output))) + (deps f2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2.expected f2_cdcl.output))) (rule (target f2_tableaux_cdcl.output) (deps (:input f2.ae)) @@ -166467,10 +163371,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2.expected f2_tableaux_cdcl.output))) + (deps f2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2.expected f2_tableaux_cdcl.output))) (rule (target f2_tableaux.output) (deps (:input f2.ae)) @@ -166488,10 +163393,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2.expected f2_tableaux.output))) + (deps f2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2.expected f2_tableaux.output))) (rule (target f2_legacy.output) (deps (:input f2.ae)) @@ -166508,10 +163414,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2.expected f2_legacy.output))) + (deps f2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2.expected f2_legacy.output))) (rule (target f2_dolmen.output) (deps (:input f2.ae)) @@ -166528,10 +163435,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2.expected f2_dolmen.output))) + (deps f2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2.expected f2_dolmen.output))) (rule (target f2_fpa.output) (deps (:input f2.ae)) @@ -166548,10 +163456,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2.expected f2_fpa.output))) + (deps f2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2.expected f2_fpa.output))) (rule (target f2-rev_ci_cdcl_no_minimal_bj.output) (deps (:input f2-rev.ae)) @@ -166570,10 +163479,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_ci_cdcl_no_minimal_bj.output))) + (deps f2-rev_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_ci_cdcl_no_minimal_bj.output))) (rule (target f2-rev_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f2-rev.ae)) @@ -166594,12 +163504,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f2-rev.expected - f2-rev_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f2-rev_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f2-rev.ae)) @@ -166619,12 +163528,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f2-rev.expected - f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f2-rev_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f2-rev.ae)) @@ -166643,12 +163551,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f2-rev.expected - f2-rev_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f2-rev_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f2-rev.ae)) @@ -166667,12 +163574,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f2-rev.expected - f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f2-rev_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f2-rev.ae)) @@ -166691,10 +163597,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f2-rev_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f2-rev_cdcl.output) (deps (:input f2-rev.ae)) @@ -166712,10 +163619,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_cdcl.output))) + (deps f2-rev_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_cdcl.output))) (rule (target f2-rev_tableaux_cdcl.output) (deps (:input f2-rev.ae)) @@ -166733,10 +163641,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_tableaux_cdcl.output))) + (deps f2-rev_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_tableaux_cdcl.output))) (rule (target f2-rev_tableaux.output) (deps (:input f2-rev.ae)) @@ -166754,10 +163663,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_tableaux.output))) + (deps f2-rev_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_tableaux.output))) (rule (target f2-rev_legacy.output) (deps (:input f2-rev.ae)) @@ -166774,10 +163684,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_legacy.output))) + (deps f2-rev_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_legacy.output))) (rule (target f2-rev_dolmen.output) (deps (:input f2-rev.ae)) @@ -166794,10 +163705,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_dolmen.output))) + (deps f2-rev_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_dolmen.output))) (rule (target f2-rev_fpa.output) (deps (:input f2-rev.ae)) @@ -166814,10 +163726,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f2-rev.expected f2-rev_fpa.output))) + (deps f2-rev_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f2-rev.expected f2-rev_fpa.output))) (rule (target f1_ci_cdcl_no_minimal_bj.output) (deps (:input f1.ae)) @@ -166836,10 +163749,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f1.expected f1_ci_cdcl_no_minimal_bj.output))) + (deps f1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f1.expected f1_ci_cdcl_no_minimal_bj.output))) (rule (target f1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f1.ae)) @@ -166860,12 +163774,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f1.expected - f1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f1.expected f1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f1.ae)) @@ -166885,12 +163798,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f1.expected - f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f1.expected f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f1.ae)) @@ -166909,10 +163821,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f1.expected f1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f1.expected f1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f1.ae)) @@ -166931,12 +163844,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f1.expected - f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f1.expected f1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f1.ae)) @@ -166955,10 +163867,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff f1.expected f1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f1.expected f1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f1_cdcl.output) (deps (:input f1.ae)) @@ -166976,10 +163889,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f1.expected f1_cdcl.output))) + (deps f1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f1.expected f1_cdcl.output))) (rule (target f1_tableaux_cdcl.output) (deps (:input f1.ae)) @@ -166997,10 +163911,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f1.expected f1_tableaux_cdcl.output))) + (deps f1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f1.expected f1_tableaux_cdcl.output))) (rule (target f1_tableaux.output) (deps (:input f1.ae)) @@ -167018,10 +163933,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f1.expected f1_tableaux.output))) + (deps f1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f1.expected f1_tableaux.output))) (rule (target f1_legacy.output) (deps (:input f1.ae)) @@ -167038,10 +163954,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f1.expected f1_legacy.output))) + (deps f1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f1.expected f1_legacy.output))) (rule (target f1_dolmen.output) (deps (:input f1.ae)) @@ -167058,10 +163975,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f1.expected f1_dolmen.output))) + (deps f1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f1.expected f1_dolmen.output))) (rule (target f1_fpa.output) (deps (:input f1.ae)) @@ -167078,10 +163996,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f1.expected f1_fpa.output))) + (deps f1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f1.expected f1_fpa.output))) (rule (target f-ite-valid-3_ci_cdcl_no_minimal_bj.output) (deps (:input f-ite-valid-3.ae)) @@ -167100,12 +164019,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-3.expected - f-ite-valid-3_ci_cdcl_no_minimal_bj.output))) + (deps f-ite-valid-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_ci_cdcl_no_minimal_bj.output))) (rule (target f-ite-valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-valid-3.ae)) @@ -167126,12 +164044,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-3.expected - f-ite-valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-valid-3.ae)) @@ -167151,12 +164068,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-3.expected - f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-valid-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f-ite-valid-3.ae)) @@ -167175,12 +164091,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-3.expected - f-ite-valid-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f-ite-valid-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f-ite-valid-3.ae)) @@ -167199,12 +164114,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-3.expected - f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f-ite-valid-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f-ite-valid-3.ae)) @@ -167223,12 +164137,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-3.expected - f-ite-valid-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f-ite-valid-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f-ite-valid-3_cdcl.output) (deps (:input f-ite-valid-3.ae)) @@ -167246,10 +164159,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-3.expected f-ite-valid-3_cdcl.output))) + (deps f-ite-valid-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_cdcl.output))) (rule (target f-ite-valid-3_tableaux_cdcl.output) (deps (:input f-ite-valid-3.ae)) @@ -167267,10 +164181,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-3.expected f-ite-valid-3_tableaux_cdcl.output))) + (deps f-ite-valid-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_tableaux_cdcl.output))) (rule (target f-ite-valid-3_tableaux.output) (deps (:input f-ite-valid-3.ae)) @@ -167288,10 +164203,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-3.expected f-ite-valid-3_tableaux.output))) + (deps f-ite-valid-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_tableaux.output))) (rule (target f-ite-valid-3_legacy.output) (deps (:input f-ite-valid-3.ae)) @@ -167308,10 +164224,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-3.expected f-ite-valid-3_legacy.output))) + (deps f-ite-valid-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_legacy.output))) (rule (target f-ite-valid-3_dolmen.output) (deps (:input f-ite-valid-3.ae)) @@ -167328,10 +164245,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-3.expected f-ite-valid-3_dolmen.output))) + (deps f-ite-valid-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_dolmen.output))) (rule (target f-ite-valid-3_fpa.output) (deps (:input f-ite-valid-3.ae)) @@ -167348,10 +164266,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-3.expected f-ite-valid-3_fpa.output))) + (deps f-ite-valid-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-3.expected f-ite-valid-3_fpa.output))) (rule (target f-ite-valid-2_ci_cdcl_no_minimal_bj.output) (deps (:input f-ite-valid-2.ae)) @@ -167370,12 +164289,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-2.expected - f-ite-valid-2_ci_cdcl_no_minimal_bj.output))) + (deps f-ite-valid-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_ci_cdcl_no_minimal_bj.output))) (rule (target f-ite-valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-valid-2.ae)) @@ -167396,12 +164314,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-2.expected - f-ite-valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-valid-2.ae)) @@ -167421,12 +164338,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-2.expected - f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-valid-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f-ite-valid-2.ae)) @@ -167445,12 +164361,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-2.expected - f-ite-valid-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f-ite-valid-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f-ite-valid-2.ae)) @@ -167469,12 +164384,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-2.expected - f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f-ite-valid-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f-ite-valid-2.ae)) @@ -167493,12 +164407,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-2.expected - f-ite-valid-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f-ite-valid-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f-ite-valid-2_cdcl.output) (deps (:input f-ite-valid-2.ae)) @@ -167516,10 +164429,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-2.expected f-ite-valid-2_cdcl.output))) + (deps f-ite-valid-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_cdcl.output))) (rule (target f-ite-valid-2_tableaux_cdcl.output) (deps (:input f-ite-valid-2.ae)) @@ -167537,10 +164451,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-2.expected f-ite-valid-2_tableaux_cdcl.output))) + (deps f-ite-valid-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_tableaux_cdcl.output))) (rule (target f-ite-valid-2_tableaux.output) (deps (:input f-ite-valid-2.ae)) @@ -167558,10 +164473,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-2.expected f-ite-valid-2_tableaux.output))) + (deps f-ite-valid-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_tableaux.output))) (rule (target f-ite-valid-2_legacy.output) (deps (:input f-ite-valid-2.ae)) @@ -167578,10 +164494,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-2.expected f-ite-valid-2_legacy.output))) + (deps f-ite-valid-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_legacy.output))) (rule (target f-ite-valid-2_dolmen.output) (deps (:input f-ite-valid-2.ae)) @@ -167598,10 +164515,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-2.expected f-ite-valid-2_dolmen.output))) + (deps f-ite-valid-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_dolmen.output))) (rule (target f-ite-valid-2_fpa.output) (deps (:input f-ite-valid-2.ae)) @@ -167618,10 +164536,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-2.expected f-ite-valid-2_fpa.output))) + (deps f-ite-valid-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-2.expected f-ite-valid-2_fpa.output))) (rule (target f-ite-valid-1_ci_cdcl_no_minimal_bj.output) (deps (:input f-ite-valid-1.ae)) @@ -167640,12 +164559,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-1.expected - f-ite-valid-1_ci_cdcl_no_minimal_bj.output))) + (deps f-ite-valid-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_ci_cdcl_no_minimal_bj.output))) (rule (target f-ite-valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-valid-1.ae)) @@ -167666,12 +164584,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-1.expected - f-ite-valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-valid-1.ae)) @@ -167691,12 +164608,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-1.expected - f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-valid-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f-ite-valid-1.ae)) @@ -167715,12 +164631,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-1.expected - f-ite-valid-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f-ite-valid-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f-ite-valid-1.ae)) @@ -167739,12 +164654,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-1.expected - f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f-ite-valid-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f-ite-valid-1.ae)) @@ -167763,12 +164677,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-valid-1.expected - f-ite-valid-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f-ite-valid-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f-ite-valid-1_cdcl.output) (deps (:input f-ite-valid-1.ae)) @@ -167786,10 +164699,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-1.expected f-ite-valid-1_cdcl.output))) + (deps f-ite-valid-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_cdcl.output))) (rule (target f-ite-valid-1_tableaux_cdcl.output) (deps (:input f-ite-valid-1.ae)) @@ -167807,10 +164721,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-1.expected f-ite-valid-1_tableaux_cdcl.output))) + (deps f-ite-valid-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_tableaux_cdcl.output))) (rule (target f-ite-valid-1_tableaux.output) (deps (:input f-ite-valid-1.ae)) @@ -167828,10 +164743,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-1.expected f-ite-valid-1_tableaux.output))) + (deps f-ite-valid-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_tableaux.output))) (rule (target f-ite-valid-1_legacy.output) (deps (:input f-ite-valid-1.ae)) @@ -167848,10 +164764,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-1.expected f-ite-valid-1_legacy.output))) + (deps f-ite-valid-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_legacy.output))) (rule (target f-ite-valid-1_dolmen.output) (deps (:input f-ite-valid-1.ae)) @@ -167868,10 +164785,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-1.expected f-ite-valid-1_dolmen.output))) + (deps f-ite-valid-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_dolmen.output))) (rule (target f-ite-valid-1_fpa.output) (deps (:input f-ite-valid-1.ae)) @@ -167888,10 +164806,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-valid-1.expected f-ite-valid-1_fpa.output))) + (deps f-ite-valid-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-valid-1.expected f-ite-valid-1_fpa.output))) (rule (target f-ite-invalid-2_ci_cdcl_no_minimal_bj.output) (deps (:input f-ite-invalid-2.ae)) @@ -167910,12 +164829,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-2.expected - f-ite-invalid-2_ci_cdcl_no_minimal_bj.output))) + (deps f-ite-invalid-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_ci_cdcl_no_minimal_bj.output))) (rule (target f-ite-invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-invalid-2.ae)) @@ -167936,12 +164854,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-2.expected - f-ite-invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-invalid-2.ae)) @@ -167961,12 +164878,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-2.expected - f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-invalid-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f-ite-invalid-2.ae)) @@ -167985,12 +164901,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-2.expected - f-ite-invalid-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f-ite-invalid-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f-ite-invalid-2.ae)) @@ -168009,12 +164924,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-2.expected - f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f-ite-invalid-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f-ite-invalid-2.ae)) @@ -168033,12 +164947,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-2.expected - f-ite-invalid-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f-ite-invalid-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f-ite-invalid-2_cdcl.output) (deps (:input f-ite-invalid-2.ae)) @@ -168056,10 +164969,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-2.expected f-ite-invalid-2_cdcl.output))) + (deps f-ite-invalid-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_cdcl.output))) (rule (target f-ite-invalid-2_tableaux_cdcl.output) (deps (:input f-ite-invalid-2.ae)) @@ -168077,10 +164991,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-2.expected f-ite-invalid-2_tableaux_cdcl.output))) + (deps f-ite-invalid-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_tableaux_cdcl.output))) (rule (target f-ite-invalid-2_tableaux.output) (deps (:input f-ite-invalid-2.ae)) @@ -168098,10 +165013,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-2.expected f-ite-invalid-2_tableaux.output))) + (deps f-ite-invalid-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_tableaux.output))) (rule (target f-ite-invalid-2_legacy.output) (deps (:input f-ite-invalid-2.ae)) @@ -168118,10 +165034,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-2.expected f-ite-invalid-2_legacy.output))) + (deps f-ite-invalid-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_legacy.output))) (rule (target f-ite-invalid-2_dolmen.output) (deps (:input f-ite-invalid-2.ae)) @@ -168138,10 +165055,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-2.expected f-ite-invalid-2_dolmen.output))) + (deps f-ite-invalid-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_dolmen.output))) (rule (target f-ite-invalid-2_fpa.output) (deps (:input f-ite-invalid-2.ae)) @@ -168158,10 +165076,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-2.expected f-ite-invalid-2_fpa.output))) + (deps f-ite-invalid-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-2.expected f-ite-invalid-2_fpa.output))) (rule (target f-ite-invalid-1_ci_cdcl_no_minimal_bj.output) (deps (:input f-ite-invalid-1.ae)) @@ -168180,12 +165099,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-1.expected - f-ite-invalid-1_ci_cdcl_no_minimal_bj.output))) + (deps f-ite-invalid-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_ci_cdcl_no_minimal_bj.output))) (rule (target f-ite-invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-invalid-1.ae)) @@ -168206,12 +165124,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-1.expected - f-ite-invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input f-ite-invalid-1.ae)) @@ -168231,12 +165148,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-1.expected - f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target f-ite-invalid-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input f-ite-invalid-1.ae)) @@ -168255,12 +165171,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-1.expected - f-ite-invalid-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps f-ite-invalid-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input f-ite-invalid-1.ae)) @@ -168279,12 +165194,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-1.expected - f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target f-ite-invalid-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input f-ite-invalid-1.ae)) @@ -168303,12 +165217,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - f-ite-invalid-1.expected - f-ite-invalid-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps f-ite-invalid-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target f-ite-invalid-1_cdcl.output) (deps (:input f-ite-invalid-1.ae)) @@ -168326,10 +165239,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-1.expected f-ite-invalid-1_cdcl.output))) + (deps f-ite-invalid-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_cdcl.output))) (rule (target f-ite-invalid-1_tableaux_cdcl.output) (deps (:input f-ite-invalid-1.ae)) @@ -168347,10 +165261,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-1.expected f-ite-invalid-1_tableaux_cdcl.output))) + (deps f-ite-invalid-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_tableaux_cdcl.output))) (rule (target f-ite-invalid-1_tableaux.output) (deps (:input f-ite-invalid-1.ae)) @@ -168368,10 +165283,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-1.expected f-ite-invalid-1_tableaux.output))) + (deps f-ite-invalid-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_tableaux.output))) (rule (target f-ite-invalid-1_legacy.output) (deps (:input f-ite-invalid-1.ae)) @@ -168388,10 +165304,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-1.expected f-ite-invalid-1_legacy.output))) + (deps f-ite-invalid-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_legacy.output))) (rule (target f-ite-invalid-1_dolmen.output) (deps (:input f-ite-invalid-1.ae)) @@ -168408,10 +165325,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-1.expected f-ite-invalid-1_dolmen.output))) + (deps f-ite-invalid-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_dolmen.output))) (rule (target f-ite-invalid-1_fpa.output) (deps (:input f-ite-invalid-1.ae)) @@ -168428,10 +165346,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff f-ite-invalid-1.expected f-ite-invalid-1_fpa.output))) + (deps f-ite-invalid-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff f-ite-invalid-1.expected f-ite-invalid-1_fpa.output))) (rule (target e6_ci_cdcl_no_minimal_bj.output) (deps (:input e6.ae)) @@ -168450,10 +165369,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e6.expected e6_ci_cdcl_no_minimal_bj.output))) + (deps e6_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e6.expected e6_ci_cdcl_no_minimal_bj.output))) (rule (target e6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e6.ae)) @@ -168474,12 +165394,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e6.expected - e6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e6.expected e6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e6.ae)) @@ -168499,12 +165418,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e6.expected - e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e6.expected e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e6_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input e6.ae)) @@ -168523,10 +165441,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e6.expected e6_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps e6_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e6.expected e6_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input e6.ae)) @@ -168545,12 +165464,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e6.expected - e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e6.expected e6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target e6_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input e6.ae)) @@ -168569,10 +165487,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e6.expected e6_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps e6_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e6.expected e6_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target e6_cdcl.output) (deps (:input e6.ae)) @@ -168590,10 +165509,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e6.expected e6_cdcl.output))) + (deps e6_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e6.expected e6_cdcl.output))) (rule (target e6_tableaux_cdcl.output) (deps (:input e6.ae)) @@ -168611,10 +165531,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e6.expected e6_tableaux_cdcl.output))) + (deps e6_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e6.expected e6_tableaux_cdcl.output))) (rule (target e6_tableaux.output) (deps (:input e6.ae)) @@ -168632,10 +165553,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e6.expected e6_tableaux.output))) + (deps e6_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e6.expected e6_tableaux.output))) (rule (target e6_legacy.output) (deps (:input e6.ae)) @@ -168652,10 +165574,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e6.expected e6_legacy.output))) + (deps e6_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e6.expected e6_legacy.output))) (rule (target e6_dolmen.output) (deps (:input e6.ae)) @@ -168672,10 +165595,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e6.expected e6_dolmen.output))) + (deps e6_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e6.expected e6_dolmen.output))) (rule (target e6_fpa.output) (deps (:input e6.ae)) @@ -168692,10 +165616,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e6.expected e6_fpa.output))) + (deps e6_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e6.expected e6_fpa.output))) (rule (target e5_ci_cdcl_no_minimal_bj.output) (deps (:input e5.ae)) @@ -168714,10 +165639,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e5.expected e5_ci_cdcl_no_minimal_bj.output))) + (deps e5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e5.expected e5_ci_cdcl_no_minimal_bj.output))) (rule (target e5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e5.ae)) @@ -168738,12 +165664,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e5.expected - e5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e5.expected e5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e5.ae)) @@ -168763,12 +165688,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e5.expected - e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e5.expected e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input e5.ae)) @@ -168787,10 +165711,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e5.expected e5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps e5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e5.expected e5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input e5.ae)) @@ -168809,12 +165734,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e5.expected - e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e5.expected e5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target e5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input e5.ae)) @@ -168833,10 +165757,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e5.expected e5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps e5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e5.expected e5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target e5_cdcl.output) (deps (:input e5.ae)) @@ -168854,10 +165779,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e5.expected e5_cdcl.output))) + (deps e5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e5.expected e5_cdcl.output))) (rule (target e5_tableaux_cdcl.output) (deps (:input e5.ae)) @@ -168875,10 +165801,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e5.expected e5_tableaux_cdcl.output))) + (deps e5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e5.expected e5_tableaux_cdcl.output))) (rule (target e5_tableaux.output) (deps (:input e5.ae)) @@ -168896,10 +165823,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e5.expected e5_tableaux.output))) + (deps e5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e5.expected e5_tableaux.output))) (rule (target e5_legacy.output) (deps (:input e5.ae)) @@ -168916,10 +165844,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e5.expected e5_legacy.output))) + (deps e5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e5.expected e5_legacy.output))) (rule (target e5_dolmen.output) (deps (:input e5.ae)) @@ -168936,10 +165865,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e5.expected e5_dolmen.output))) + (deps e5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e5.expected e5_dolmen.output))) (rule (target e5_fpa.output) (deps (:input e5.ae)) @@ -168956,10 +165886,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e5.expected e5_fpa.output))) + (deps e5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e5.expected e5_fpa.output))) (rule (target e4_ci_cdcl_no_minimal_bj.output) (deps (:input e4.ae)) @@ -168978,10 +165909,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e4.expected e4_ci_cdcl_no_minimal_bj.output))) + (deps e4_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e4.expected e4_ci_cdcl_no_minimal_bj.output))) (rule (target e4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e4.ae)) @@ -169002,12 +165934,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e4.expected - e4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e4.expected e4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e4.ae)) @@ -169027,12 +165958,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e4.expected - e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e4.expected e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e4_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input e4.ae)) @@ -169051,10 +165981,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e4.expected e4_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps e4_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e4.expected e4_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input e4.ae)) @@ -169073,12 +166004,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e4.expected - e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e4.expected e4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target e4_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input e4.ae)) @@ -169097,10 +166027,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e4.expected e4_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps e4_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e4.expected e4_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target e4_cdcl.output) (deps (:input e4.ae)) @@ -169118,10 +166049,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e4.expected e4_cdcl.output))) + (deps e4_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e4.expected e4_cdcl.output))) (rule (target e4_tableaux_cdcl.output) (deps (:input e4.ae)) @@ -169139,10 +166071,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e4.expected e4_tableaux_cdcl.output))) + (deps e4_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e4.expected e4_tableaux_cdcl.output))) (rule (target e4_tableaux.output) (deps (:input e4.ae)) @@ -169160,10 +166093,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e4.expected e4_tableaux.output))) + (deps e4_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e4.expected e4_tableaux.output))) (rule (target e4_legacy.output) (deps (:input e4.ae)) @@ -169180,10 +166114,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e4.expected e4_legacy.output))) + (deps e4_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e4.expected e4_legacy.output))) (rule (target e4_dolmen.output) (deps (:input e4.ae)) @@ -169200,10 +166135,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e4.expected e4_dolmen.output))) + (deps e4_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e4.expected e4_dolmen.output))) (rule (target e4_fpa.output) (deps (:input e4.ae)) @@ -169220,10 +166156,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e4.expected e4_fpa.output))) + (deps e4_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e4.expected e4_fpa.output))) (rule (target e3_ci_cdcl_no_minimal_bj.output) (deps (:input e3.ae)) @@ -169242,10 +166179,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e3.expected e3_ci_cdcl_no_minimal_bj.output))) + (deps e3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e3.expected e3_ci_cdcl_no_minimal_bj.output))) (rule (target e3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e3.ae)) @@ -169266,12 +166204,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e3.expected - e3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e3.expected e3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e3.ae)) @@ -169291,12 +166228,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e3.expected - e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e3.expected e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input e3.ae)) @@ -169315,10 +166251,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e3.expected e3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps e3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e3.expected e3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input e3.ae)) @@ -169337,12 +166274,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e3.expected - e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e3.expected e3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target e3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input e3.ae)) @@ -169361,10 +166297,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e3.expected e3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps e3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e3.expected e3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target e3_cdcl.output) (deps (:input e3.ae)) @@ -169382,10 +166319,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e3.expected e3_cdcl.output))) + (deps e3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e3.expected e3_cdcl.output))) (rule (target e3_tableaux_cdcl.output) (deps (:input e3.ae)) @@ -169403,10 +166341,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e3.expected e3_tableaux_cdcl.output))) + (deps e3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e3.expected e3_tableaux_cdcl.output))) (rule (target e3_tableaux.output) (deps (:input e3.ae)) @@ -169424,10 +166363,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e3.expected e3_tableaux.output))) + (deps e3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e3.expected e3_tableaux.output))) (rule (target e3_legacy.output) (deps (:input e3.ae)) @@ -169444,10 +166384,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e3.expected e3_legacy.output))) + (deps e3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e3.expected e3_legacy.output))) (rule (target e3_dolmen.output) (deps (:input e3.ae)) @@ -169464,10 +166405,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e3.expected e3_dolmen.output))) + (deps e3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e3.expected e3_dolmen.output))) (rule (target e3_fpa.output) (deps (:input e3.ae)) @@ -169484,10 +166426,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e3.expected e3_fpa.output))) + (deps e3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e3.expected e3_fpa.output))) (rule (target e2_ci_cdcl_no_minimal_bj.output) (deps (:input e2.ae)) @@ -169506,10 +166449,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e2.expected e2_ci_cdcl_no_minimal_bj.output))) + (deps e2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e2.expected e2_ci_cdcl_no_minimal_bj.output))) (rule (target e2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e2.ae)) @@ -169530,12 +166474,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e2.expected - e2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e2.expected e2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e2.ae)) @@ -169555,12 +166498,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e2.expected - e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e2.expected e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input e2.ae)) @@ -169579,10 +166521,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e2.expected e2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps e2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e2.expected e2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input e2.ae)) @@ -169601,12 +166544,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e2.expected - e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e2.expected e2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target e2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input e2.ae)) @@ -169625,10 +166567,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e2.expected e2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps e2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e2.expected e2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target e2_cdcl.output) (deps (:input e2.ae)) @@ -169646,10 +166589,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e2.expected e2_cdcl.output))) + (deps e2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e2.expected e2_cdcl.output))) (rule (target e2_tableaux_cdcl.output) (deps (:input e2.ae)) @@ -169667,10 +166611,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e2.expected e2_tableaux_cdcl.output))) + (deps e2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e2.expected e2_tableaux_cdcl.output))) (rule (target e2_tableaux.output) (deps (:input e2.ae)) @@ -169688,10 +166633,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e2.expected e2_tableaux.output))) + (deps e2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e2.expected e2_tableaux.output))) (rule (target e2_legacy.output) (deps (:input e2.ae)) @@ -169708,10 +166654,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e2.expected e2_legacy.output))) + (deps e2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e2.expected e2_legacy.output))) (rule (target e2_dolmen.output) (deps (:input e2.ae)) @@ -169728,10 +166675,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e2.expected e2_dolmen.output))) + (deps e2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e2.expected e2_dolmen.output))) (rule (target e2_fpa.output) (deps (:input e2.ae)) @@ -169748,10 +166696,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e2.expected e2_fpa.output))) + (deps e2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e2.expected e2_fpa.output))) (rule (target e1_ci_cdcl_no_minimal_bj.output) (deps (:input e1.ae)) @@ -169770,10 +166719,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e1.expected e1_ci_cdcl_no_minimal_bj.output))) + (deps e1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e1.expected e1_ci_cdcl_no_minimal_bj.output))) (rule (target e1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e1.ae)) @@ -169794,12 +166744,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e1.expected - e1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e1.expected e1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input e1.ae)) @@ -169819,12 +166768,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e1.expected - e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e1.expected e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target e1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input e1.ae)) @@ -169843,10 +166791,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e1.expected e1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps e1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e1.expected e1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input e1.ae)) @@ -169865,12 +166814,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - e1.expected - e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e1.expected e1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target e1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input e1.ae)) @@ -169889,10 +166837,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff e1.expected e1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps e1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff e1.expected e1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target e1_cdcl.output) (deps (:input e1.ae)) @@ -169910,10 +166859,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e1.expected e1_cdcl.output))) + (deps e1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e1.expected e1_cdcl.output))) (rule (target e1_tableaux_cdcl.output) (deps (:input e1.ae)) @@ -169931,10 +166881,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e1.expected e1_tableaux_cdcl.output))) + (deps e1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e1.expected e1_tableaux_cdcl.output))) (rule (target e1_tableaux.output) (deps (:input e1.ae)) @@ -169952,10 +166903,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e1.expected e1_tableaux.output))) + (deps e1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e1.expected e1_tableaux.output))) (rule (target e1_legacy.output) (deps (:input e1.ae)) @@ -169972,10 +166924,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e1.expected e1_legacy.output))) + (deps e1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e1.expected e1_legacy.output))) (rule (target e1_dolmen.output) (deps (:input e1.ae)) @@ -169992,10 +166945,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e1.expected e1_dolmen.output))) + (deps e1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e1.expected e1_dolmen.output))) (rule (target e1_fpa.output) (deps (:input e1.ae)) @@ -170012,10 +166966,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff e1.expected e1_fpa.output))) + (deps e1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff e1.expected e1_fpa.output))) (rule (target bugfix#9bis_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#9bis.ae)) @@ -170034,10 +166989,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#9bis.expected bugfix#9bis_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#9bis_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#9bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#9bis.ae)) @@ -170058,12 +167014,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9bis.expected - bugfix#9bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#9bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#9bis.ae)) @@ -170083,12 +167038,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9bis.expected - bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#9bis_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#9bis.ae)) @@ -170107,12 +167061,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9bis.expected - bugfix#9bis_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#9bis_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#9bis.ae)) @@ -170131,12 +167084,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9bis.expected - bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#9bis_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#9bis.ae)) @@ -170155,12 +167107,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9bis.expected - bugfix#9bis_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#9bis_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#9bis_cdcl.output) (deps (:input bugfix#9bis.ae)) @@ -170178,10 +167129,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9bis.expected bugfix#9bis_cdcl.output))) + (deps bugfix#9bis_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_cdcl.output))) (rule (target bugfix#9bis_tableaux_cdcl.output) (deps (:input bugfix#9bis.ae)) @@ -170199,10 +167151,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9bis.expected bugfix#9bis_tableaux_cdcl.output))) + (deps bugfix#9bis_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_tableaux_cdcl.output))) (rule (target bugfix#9bis_tableaux.output) (deps (:input bugfix#9bis.ae)) @@ -170220,10 +167173,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9bis.expected bugfix#9bis_tableaux.output))) + (deps bugfix#9bis_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_tableaux.output))) (rule (target bugfix#9bis_legacy.output) (deps (:input bugfix#9bis.ae)) @@ -170240,10 +167194,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9bis.expected bugfix#9bis_legacy.output))) + (deps bugfix#9bis_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_legacy.output))) (rule (target bugfix#9bis_dolmen.output) (deps (:input bugfix#9bis.ae)) @@ -170260,10 +167215,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9bis.expected bugfix#9bis_dolmen.output))) + (deps bugfix#9bis_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_dolmen.output))) (rule (target bugfix#9bis_fpa.output) (deps (:input bugfix#9bis.ae)) @@ -170280,10 +167236,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9bis.expected bugfix#9bis_fpa.output))) + (deps bugfix#9bis_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9bis.expected bugfix#9bis_fpa.output))) (rule (target bugfix#9_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#9.ae)) @@ -170302,10 +167259,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#9_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#9_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#9.ae)) @@ -170326,12 +167284,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9.expected - bugfix#9_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#9_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#9.ae)) @@ -170351,12 +167308,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9.expected - bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#9_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#9.ae)) @@ -170375,12 +167331,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9.expected - bugfix#9_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#9_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#9.ae)) @@ -170399,12 +167354,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#9.expected - bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#9_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#9.ae)) @@ -170423,10 +167377,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#9_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#9_cdcl.output) (deps (:input bugfix#9.ae)) @@ -170444,10 +167399,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_cdcl.output))) + (deps bugfix#9_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_cdcl.output))) (rule (target bugfix#9_tableaux_cdcl.output) (deps (:input bugfix#9.ae)) @@ -170465,10 +167421,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_tableaux_cdcl.output))) + (deps bugfix#9_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_tableaux_cdcl.output))) (rule (target bugfix#9_tableaux.output) (deps (:input bugfix#9.ae)) @@ -170486,10 +167443,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_tableaux.output))) + (deps bugfix#9_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_tableaux.output))) (rule (target bugfix#9_legacy.output) (deps (:input bugfix#9.ae)) @@ -170506,10 +167464,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_legacy.output))) + (deps bugfix#9_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_legacy.output))) (rule (target bugfix#9_dolmen.output) (deps (:input bugfix#9.ae)) @@ -170526,10 +167485,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_dolmen.output))) + (deps bugfix#9_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_dolmen.output))) (rule (target bugfix#9_fpa.output) (deps (:input bugfix#9.ae)) @@ -170546,10 +167506,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#9.expected bugfix#9_fpa.output))) + (deps bugfix#9_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#9.expected bugfix#9_fpa.output))) (rule (target bugfix#8_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#8.ae)) @@ -170568,10 +167529,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#8_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#8.ae)) @@ -170592,12 +167554,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#8.expected - bugfix#8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#8.ae)) @@ -170617,12 +167578,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#8.expected - bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#8_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#8.ae)) @@ -170641,12 +167601,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#8.expected - bugfix#8_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#8_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#8.ae)) @@ -170665,12 +167624,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#8.expected - bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#8_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#8.ae)) @@ -170689,10 +167647,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#8_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#8_cdcl.output) (deps (:input bugfix#8.ae)) @@ -170710,10 +167669,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_cdcl.output))) + (deps bugfix#8_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_cdcl.output))) (rule (target bugfix#8_tableaux_cdcl.output) (deps (:input bugfix#8.ae)) @@ -170731,10 +167691,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_tableaux_cdcl.output))) + (deps bugfix#8_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_tableaux_cdcl.output))) (rule (target bugfix#8_tableaux.output) (deps (:input bugfix#8.ae)) @@ -170752,10 +167713,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_tableaux.output))) + (deps bugfix#8_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_tableaux.output))) (rule (target bugfix#8_legacy.output) (deps (:input bugfix#8.ae)) @@ -170772,10 +167734,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_legacy.output))) + (deps bugfix#8_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_legacy.output))) (rule (target bugfix#8_dolmen.output) (deps (:input bugfix#8.ae)) @@ -170792,10 +167755,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_dolmen.output))) + (deps bugfix#8_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_dolmen.output))) (rule (target bugfix#8_fpa.output) (deps (:input bugfix#8.ae)) @@ -170812,10 +167776,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#8.expected bugfix#8_fpa.output))) + (deps bugfix#8_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#8.expected bugfix#8_fpa.output))) (rule (target bugfix#7_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#7.ae)) @@ -170834,10 +167799,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#7_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#7.ae)) @@ -170858,12 +167824,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#7.expected - bugfix#7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#7.ae)) @@ -170883,12 +167848,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#7.expected - bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#7_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#7.ae)) @@ -170907,12 +167871,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#7.expected - bugfix#7_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#7_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#7.ae)) @@ -170931,12 +167894,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#7.expected - bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#7_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#7.ae)) @@ -170955,10 +167917,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#7_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#7_cdcl.output) (deps (:input bugfix#7.ae)) @@ -170976,10 +167939,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_cdcl.output))) + (deps bugfix#7_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_cdcl.output))) (rule (target bugfix#7_tableaux_cdcl.output) (deps (:input bugfix#7.ae)) @@ -170997,10 +167961,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_tableaux_cdcl.output))) + (deps bugfix#7_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_tableaux_cdcl.output))) (rule (target bugfix#7_tableaux.output) (deps (:input bugfix#7.ae)) @@ -171018,10 +167983,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_tableaux.output))) + (deps bugfix#7_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_tableaux.output))) (rule (target bugfix#7_legacy.output) (deps (:input bugfix#7.ae)) @@ -171038,10 +168004,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_legacy.output))) + (deps bugfix#7_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_legacy.output))) (rule (target bugfix#7_dolmen.output) (deps (:input bugfix#7.ae)) @@ -171058,10 +168025,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_dolmen.output))) + (deps bugfix#7_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_dolmen.output))) (rule (target bugfix#7_fpa.output) (deps (:input bugfix#7.ae)) @@ -171078,10 +168046,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#7.expected bugfix#7_fpa.output))) + (deps bugfix#7_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#7.expected bugfix#7_fpa.output))) (rule (target bugfix#6_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#6.ae)) @@ -171100,10 +168069,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#6_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#6.ae)) @@ -171124,12 +168094,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#6.expected - bugfix#6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#6.ae)) @@ -171149,12 +168118,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#6.expected - bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#6_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#6.ae)) @@ -171173,12 +168141,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#6.expected - bugfix#6_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#6_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#6.ae)) @@ -171197,12 +168164,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#6.expected - bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#6_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#6.ae)) @@ -171221,10 +168187,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#6_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#6_cdcl.output) (deps (:input bugfix#6.ae)) @@ -171242,10 +168209,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_cdcl.output))) + (deps bugfix#6_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_cdcl.output))) (rule (target bugfix#6_tableaux_cdcl.output) (deps (:input bugfix#6.ae)) @@ -171263,10 +168231,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_tableaux_cdcl.output))) + (deps bugfix#6_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_tableaux_cdcl.output))) (rule (target bugfix#6_tableaux.output) (deps (:input bugfix#6.ae)) @@ -171284,10 +168253,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_tableaux.output))) + (deps bugfix#6_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_tableaux.output))) (rule (target bugfix#6_legacy.output) (deps (:input bugfix#6.ae)) @@ -171304,10 +168274,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_legacy.output))) + (deps bugfix#6_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_legacy.output))) (rule (target bugfix#6_dolmen.output) (deps (:input bugfix#6.ae)) @@ -171324,10 +168295,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_dolmen.output))) + (deps bugfix#6_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_dolmen.output))) (rule (target bugfix#6_fpa.output) (deps (:input bugfix#6.ae)) @@ -171344,10 +168316,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#6.expected bugfix#6_fpa.output))) + (deps bugfix#6_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#6.expected bugfix#6_fpa.output))) (rule (target bugfix#5_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#5.ae)) @@ -171366,10 +168339,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#5.ae)) @@ -171390,12 +168364,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#5.expected - bugfix#5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#5.ae)) @@ -171415,12 +168388,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#5.expected - bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#5.ae)) @@ -171439,12 +168411,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#5.expected - bugfix#5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#5.ae)) @@ -171463,12 +168434,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#5.expected - bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#5.ae)) @@ -171487,10 +168457,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#5_cdcl.output) (deps (:input bugfix#5.ae)) @@ -171508,10 +168479,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_cdcl.output))) + (deps bugfix#5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_cdcl.output))) (rule (target bugfix#5_tableaux_cdcl.output) (deps (:input bugfix#5.ae)) @@ -171529,10 +168501,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_tableaux_cdcl.output))) + (deps bugfix#5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_tableaux_cdcl.output))) (rule (target bugfix#5_tableaux.output) (deps (:input bugfix#5.ae)) @@ -171550,10 +168523,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_tableaux.output))) + (deps bugfix#5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_tableaux.output))) (rule (target bugfix#5_legacy.output) (deps (:input bugfix#5.ae)) @@ -171570,10 +168544,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_legacy.output))) + (deps bugfix#5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_legacy.output))) (rule (target bugfix#5_dolmen.output) (deps (:input bugfix#5.ae)) @@ -171590,10 +168565,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_dolmen.output))) + (deps bugfix#5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_dolmen.output))) (rule (target bugfix#5_fpa.output) (deps (:input bugfix#5.ae)) @@ -171610,10 +168586,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#5.expected bugfix#5_fpa.output))) + (deps bugfix#5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#5.expected bugfix#5_fpa.output))) (rule (target bugfix#11_should_be_proved_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171632,12 +168609,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#11_should_be_proved_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#11_should_be_proved_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171658,12 +168634,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#11_should_be_proved_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171683,12 +168658,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#11_should_be_proved_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171707,12 +168681,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#11_should_be_proved_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171731,12 +168704,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#11_should_be_proved_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171755,12 +168727,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#11_should_be_proved_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#11_should_be_proved_cdcl.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171778,12 +168749,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_cdcl.output))) + (deps bugfix#11_should_be_proved_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_cdcl.output))) (rule (target bugfix#11_should_be_proved_tableaux_cdcl.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171801,12 +168771,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_tableaux_cdcl.output))) + (deps bugfix#11_should_be_proved_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_tableaux_cdcl.output))) (rule (target bugfix#11_should_be_proved_tableaux.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171824,12 +168793,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_tableaux.output))) + (deps bugfix#11_should_be_proved_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_tableaux.output))) (rule (target bugfix#11_should_be_proved_legacy.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171846,12 +168814,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_legacy.output))) + (deps bugfix#11_should_be_proved_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_legacy.output))) (rule (target bugfix#11_should_be_proved_dolmen.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171868,12 +168835,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_dolmen.output))) + (deps bugfix#11_should_be_proved_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_dolmen.output))) (rule (target bugfix#11_should_be_proved_fpa.output) (deps (:input bugfix#11_should_be_proved.ae)) @@ -171890,12 +168856,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - bugfix#11_should_be_proved.expected - bugfix#11_should_be_proved_fpa.output))) + (deps bugfix#11_should_be_proved_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#11_should_be_proved.expected bugfix#11_should_be_proved_fpa.output))) (rule (target bugfix#10_ci_cdcl_no_minimal_bj.output) (deps (:input bugfix#10.ae)) @@ -171914,10 +168879,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff bugfix#10.expected bugfix#10_ci_cdcl_no_minimal_bj.output))) + (deps bugfix#10_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_ci_cdcl_no_minimal_bj.output))) (rule (target bugfix#10_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#10.ae)) @@ -171938,12 +168904,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#10.expected - bugfix#10_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#10_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input bugfix#10.ae)) @@ -171963,12 +168928,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#10.expected - bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target bugfix#10_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input bugfix#10.ae)) @@ -171987,12 +168951,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#10.expected - bugfix#10_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps bugfix#10_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input bugfix#10.ae)) @@ -172011,12 +168974,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#10.expected - bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target bugfix#10_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input bugfix#10.ae)) @@ -172035,12 +168997,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - bugfix#10.expected - bugfix#10_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps bugfix#10_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target bugfix#10_cdcl.output) (deps (:input bugfix#10.ae)) @@ -172058,10 +169019,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#10.expected bugfix#10_cdcl.output))) + (deps bugfix#10_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_cdcl.output))) (rule (target bugfix#10_tableaux_cdcl.output) (deps (:input bugfix#10.ae)) @@ -172079,10 +169041,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#10.expected bugfix#10_tableaux_cdcl.output))) + (deps bugfix#10_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_tableaux_cdcl.output))) (rule (target bugfix#10_tableaux.output) (deps (:input bugfix#10.ae)) @@ -172100,10 +169063,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#10.expected bugfix#10_tableaux.output))) + (deps bugfix#10_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_tableaux.output))) (rule (target bugfix#10_legacy.output) (deps (:input bugfix#10.ae)) @@ -172120,10 +169084,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#10.expected bugfix#10_legacy.output))) + (deps bugfix#10_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_legacy.output))) (rule (target bugfix#10_dolmen.output) (deps (:input bugfix#10.ae)) @@ -172140,10 +169105,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#10.expected bugfix#10_dolmen.output))) + (deps bugfix#10_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_dolmen.output))) (rule (target bugfix#10_fpa.output) (deps (:input bugfix#10.ae)) @@ -172160,10 +169126,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bugfix#10.expected bugfix#10_fpa.output))) + (deps bugfix#10_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bugfix#10.expected bugfix#10_fpa.output))) (rule (target b5_ci_cdcl_no_minimal_bj.output) (deps (:input b5.ae)) @@ -172182,10 +169149,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b5.expected b5_ci_cdcl_no_minimal_bj.output))) + (deps b5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b5.expected b5_ci_cdcl_no_minimal_bj.output))) (rule (target b5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b5.ae)) @@ -172206,12 +169174,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b5.expected - b5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b5.expected b5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b5.ae)) @@ -172231,12 +169198,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b5.expected - b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b5.expected b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input b5.ae)) @@ -172255,10 +169221,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b5.expected b5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps b5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b5.expected b5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input b5.ae)) @@ -172277,12 +169244,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b5.expected - b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b5.expected b5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target b5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input b5.ae)) @@ -172301,10 +169267,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b5.expected b5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps b5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b5.expected b5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target b5_cdcl.output) (deps (:input b5.ae)) @@ -172322,10 +169289,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b5.expected b5_cdcl.output))) + (deps b5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b5.expected b5_cdcl.output))) (rule (target b5_tableaux_cdcl.output) (deps (:input b5.ae)) @@ -172343,10 +169311,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b5.expected b5_tableaux_cdcl.output))) + (deps b5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b5.expected b5_tableaux_cdcl.output))) (rule (target b5_tableaux.output) (deps (:input b5.ae)) @@ -172364,10 +169333,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b5.expected b5_tableaux.output))) + (deps b5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b5.expected b5_tableaux.output))) (rule (target b5_legacy.output) (deps (:input b5.ae)) @@ -172384,10 +169354,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b5.expected b5_legacy.output))) + (deps b5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b5.expected b5_legacy.output))) (rule (target b5_dolmen.output) (deps (:input b5.ae)) @@ -172404,10 +169375,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b5.expected b5_dolmen.output))) + (deps b5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b5.expected b5_dolmen.output))) (rule (target b5_fpa.output) (deps (:input b5.ae)) @@ -172424,10 +169396,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b5.expected b5_fpa.output))) + (deps b5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b5.expected b5_fpa.output))) (rule (target b4_ci_cdcl_no_minimal_bj.output) (deps (:input b4.ae)) @@ -172446,10 +169419,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b4.expected b4_ci_cdcl_no_minimal_bj.output))) + (deps b4_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b4.expected b4_ci_cdcl_no_minimal_bj.output))) (rule (target b4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b4.ae)) @@ -172470,12 +169444,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b4.expected - b4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b4.expected b4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b4.ae)) @@ -172495,12 +169468,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b4.expected - b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b4.expected b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b4_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input b4.ae)) @@ -172519,10 +169491,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b4.expected b4_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps b4_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b4.expected b4_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input b4.ae)) @@ -172541,12 +169514,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b4.expected - b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b4.expected b4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target b4_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input b4.ae)) @@ -172565,10 +169537,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b4.expected b4_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps b4_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b4.expected b4_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target b4_cdcl.output) (deps (:input b4.ae)) @@ -172586,10 +169559,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b4.expected b4_cdcl.output))) + (deps b4_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b4.expected b4_cdcl.output))) (rule (target b4_tableaux_cdcl.output) (deps (:input b4.ae)) @@ -172607,10 +169581,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b4.expected b4_tableaux_cdcl.output))) + (deps b4_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b4.expected b4_tableaux_cdcl.output))) (rule (target b4_tableaux.output) (deps (:input b4.ae)) @@ -172628,10 +169603,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b4.expected b4_tableaux.output))) + (deps b4_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b4.expected b4_tableaux.output))) (rule (target b4_legacy.output) (deps (:input b4.ae)) @@ -172648,10 +169624,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b4.expected b4_legacy.output))) + (deps b4_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b4.expected b4_legacy.output))) (rule (target b4_dolmen.output) (deps (:input b4.ae)) @@ -172668,10 +169645,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b4.expected b4_dolmen.output))) + (deps b4_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b4.expected b4_dolmen.output))) (rule (target b4_fpa.output) (deps (:input b4.ae)) @@ -172688,10 +169666,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b4.expected b4_fpa.output))) + (deps b4_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b4.expected b4_fpa.output))) (rule (target b3_ci_cdcl_no_minimal_bj.output) (deps (:input b3.ae)) @@ -172710,10 +169689,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b3.expected b3_ci_cdcl_no_minimal_bj.output))) + (deps b3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b3.expected b3_ci_cdcl_no_minimal_bj.output))) (rule (target b3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b3.ae)) @@ -172734,12 +169714,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b3.expected - b3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b3.expected b3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b3.ae)) @@ -172759,12 +169738,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b3.expected - b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b3.expected b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input b3.ae)) @@ -172783,10 +169761,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b3.expected b3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps b3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b3.expected b3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input b3.ae)) @@ -172805,12 +169784,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b3.expected - b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b3.expected b3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target b3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input b3.ae)) @@ -172829,10 +169807,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b3.expected b3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps b3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b3.expected b3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target b3_cdcl.output) (deps (:input b3.ae)) @@ -172850,10 +169829,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b3.expected b3_cdcl.output))) + (deps b3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b3.expected b3_cdcl.output))) (rule (target b3_tableaux_cdcl.output) (deps (:input b3.ae)) @@ -172871,10 +169851,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b3.expected b3_tableaux_cdcl.output))) + (deps b3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b3.expected b3_tableaux_cdcl.output))) (rule (target b3_tableaux.output) (deps (:input b3.ae)) @@ -172892,10 +169873,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b3.expected b3_tableaux.output))) + (deps b3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b3.expected b3_tableaux.output))) (rule (target b3_legacy.output) (deps (:input b3.ae)) @@ -172912,10 +169894,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b3.expected b3_legacy.output))) + (deps b3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b3.expected b3_legacy.output))) (rule (target b3_dolmen.output) (deps (:input b3.ae)) @@ -172932,10 +169915,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b3.expected b3_dolmen.output))) + (deps b3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b3.expected b3_dolmen.output))) (rule (target b3_fpa.output) (deps (:input b3.ae)) @@ -172952,10 +169936,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b3.expected b3_fpa.output))) + (deps b3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b3.expected b3_fpa.output))) (rule (target b1_ci_cdcl_no_minimal_bj.output) (deps (:input b1.ae)) @@ -172974,10 +169959,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b1.expected b1_ci_cdcl_no_minimal_bj.output))) + (deps b1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b1.expected b1_ci_cdcl_no_minimal_bj.output))) (rule (target b1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b1.ae)) @@ -172998,12 +169984,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b1.expected - b1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b1.expected b1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b1.ae)) @@ -173023,12 +170008,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b1.expected - b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b1.expected b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input b1.ae)) @@ -173047,10 +170031,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b1.expected b1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps b1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b1.expected b1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input b1.ae)) @@ -173069,12 +170054,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b1.expected - b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b1.expected b1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target b1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input b1.ae)) @@ -173093,10 +170077,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b1.expected b1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps b1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b1.expected b1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target b1_cdcl.output) (deps (:input b1.ae)) @@ -173114,10 +170099,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b1.expected b1_cdcl.output))) + (deps b1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b1.expected b1_cdcl.output))) (rule (target b1_tableaux_cdcl.output) (deps (:input b1.ae)) @@ -173135,10 +170121,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b1.expected b1_tableaux_cdcl.output))) + (deps b1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b1.expected b1_tableaux_cdcl.output))) (rule (target b1_tableaux.output) (deps (:input b1.ae)) @@ -173156,10 +170143,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b1.expected b1_tableaux.output))) + (deps b1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b1.expected b1_tableaux.output))) (rule (target b1_legacy.output) (deps (:input b1.ae)) @@ -173176,10 +170164,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b1.expected b1_legacy.output))) + (deps b1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b1.expected b1_legacy.output))) (rule (target b1_dolmen.output) (deps (:input b1.ae)) @@ -173196,10 +170185,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b1.expected b1_dolmen.output))) + (deps b1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b1.expected b1_dolmen.output))) (rule (target b1_fpa.output) (deps (:input b1.ae)) @@ -173216,10 +170206,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b1.expected b1_fpa.output))) + (deps b1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b1.expected b1_fpa.output))) (rule (target b0_ci_cdcl_no_minimal_bj.output) (deps (:input b0.ae)) @@ -173238,10 +170229,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b0.expected b0_ci_cdcl_no_minimal_bj.output))) + (deps b0_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b0.expected b0_ci_cdcl_no_minimal_bj.output))) (rule (target b0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b0.ae)) @@ -173262,12 +170254,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b0.expected - b0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b0.expected b0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input b0.ae)) @@ -173287,12 +170278,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b0.expected - b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b0.expected b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target b0_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input b0.ae)) @@ -173311,10 +170301,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b0.expected b0_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps b0_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b0.expected b0_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input b0.ae)) @@ -173333,12 +170324,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - b0.expected - b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b0.expected b0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target b0_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input b0.ae)) @@ -173357,10 +170347,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff b0.expected b0_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps b0_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff b0.expected b0_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target b0_cdcl.output) (deps (:input b0.ae)) @@ -173378,10 +170369,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b0.expected b0_cdcl.output))) + (deps b0_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b0.expected b0_cdcl.output))) (rule (target b0_tableaux_cdcl.output) (deps (:input b0.ae)) @@ -173399,10 +170391,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b0.expected b0_tableaux_cdcl.output))) + (deps b0_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b0.expected b0_tableaux_cdcl.output))) (rule (target b0_tableaux.output) (deps (:input b0.ae)) @@ -173420,10 +170413,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b0.expected b0_tableaux.output))) + (deps b0_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b0.expected b0_tableaux.output))) (rule (target b0_legacy.output) (deps (:input b0.ae)) @@ -173440,10 +170434,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b0.expected b0_legacy.output))) + (deps b0_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b0.expected b0_legacy.output))) (rule (target b0_dolmen.output) (deps (:input b0.ae)) @@ -173460,10 +170455,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b0.expected b0_dolmen.output))) + (deps b0_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b0.expected b0_dolmen.output))) (rule (target b0_fpa.output) (deps (:input b0.ae)) @@ -173480,10 +170476,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff b0.expected b0_fpa.output))) + (deps b0_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff b0.expected b0_fpa.output))) (rule (target a1_ci_cdcl_no_minimal_bj.output) (deps (:input a1.ae)) @@ -173502,10 +170499,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff a1.expected a1_ci_cdcl_no_minimal_bj.output))) + (deps a1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a1.expected a1_ci_cdcl_no_minimal_bj.output))) (rule (target a1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input a1.ae)) @@ -173526,12 +170524,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - a1.expected - a1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps a1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a1.expected a1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input a1.ae)) @@ -173551,12 +170548,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - a1.expected - a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a1.expected a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target a1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input a1.ae)) @@ -173575,10 +170571,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff a1.expected a1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps a1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a1.expected a1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input a1.ae)) @@ -173597,12 +170594,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - a1.expected - a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a1.expected a1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target a1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input a1.ae)) @@ -173621,10 +170617,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff a1.expected a1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps a1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a1.expected a1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target a1_cdcl.output) (deps (:input a1.ae)) @@ -173642,10 +170639,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a1.expected a1_cdcl.output))) + (deps a1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a1.expected a1_cdcl.output))) (rule (target a1_tableaux_cdcl.output) (deps (:input a1.ae)) @@ -173663,10 +170661,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a1.expected a1_tableaux_cdcl.output))) + (deps a1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a1.expected a1_tableaux_cdcl.output))) (rule (target a1_tableaux.output) (deps (:input a1.ae)) @@ -173684,10 +170683,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a1.expected a1_tableaux.output))) + (deps a1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a1.expected a1_tableaux.output))) (rule (target a1_legacy.output) (deps (:input a1.ae)) @@ -173704,10 +170704,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a1.expected a1_legacy.output))) + (deps a1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a1.expected a1_legacy.output))) (rule (target a1_dolmen.output) (deps (:input a1.ae)) @@ -173724,10 +170725,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a1.expected a1_dolmen.output))) + (deps a1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a1.expected a1_dolmen.output))) (rule (target a1_fpa.output) (deps (:input a1.ae)) @@ -173744,10 +170746,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a1.expected a1_fpa.output))) + (deps a1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a1.expected a1_fpa.output))) (rule (target a0_ci_cdcl_no_minimal_bj.output) (deps (:input a0.ae)) @@ -173766,10 +170769,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff a0.expected a0_ci_cdcl_no_minimal_bj.output))) + (deps a0_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a0.expected a0_ci_cdcl_no_minimal_bj.output))) (rule (target a0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input a0.ae)) @@ -173790,12 +170794,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - a0.expected - a0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps a0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a0.expected a0_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input a0.ae)) @@ -173815,12 +170818,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - a0.expected - a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a0.expected a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target a0_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input a0.ae)) @@ -173839,10 +170841,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff a0.expected a0_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps a0_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a0.expected a0_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input a0.ae)) @@ -173861,12 +170864,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - a0.expected - a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a0.expected a0_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target a0_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input a0.ae)) @@ -173885,10 +170887,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff a0.expected a0_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps a0_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff a0.expected a0_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target a0_cdcl.output) (deps (:input a0.ae)) @@ -173906,10 +170909,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a0.expected a0_cdcl.output))) + (deps a0_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a0.expected a0_cdcl.output))) (rule (target a0_tableaux_cdcl.output) (deps (:input a0.ae)) @@ -173927,10 +170931,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a0.expected a0_tableaux_cdcl.output))) + (deps a0_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a0.expected a0_tableaux_cdcl.output))) (rule (target a0_tableaux.output) (deps (:input a0.ae)) @@ -173948,10 +170953,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a0.expected a0_tableaux.output))) + (deps a0_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a0.expected a0_tableaux.output))) (rule (target a0_legacy.output) (deps (:input a0.ae)) @@ -173968,10 +170974,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a0.expected a0_legacy.output))) + (deps a0_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a0.expected a0_legacy.output))) (rule (target a0_dolmen.output) (deps (:input a0.ae)) @@ -173988,10 +170995,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a0.expected a0_dolmen.output))) + (deps a0_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a0.expected a0_dolmen.output))) (rule (target a0_fpa.output) (deps (:input a0.ae)) @@ -174008,10 +171016,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff a0.expected a0_fpa.output)))) + (deps a0_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff a0.expected a0_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -174035,12 +171044,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists007.expected - testfile-exists007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exists007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exists007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists007.ae)) @@ -174061,12 +171069,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists007.expected - testfile-exists007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists007.ae)) @@ -174086,12 +171093,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists007.expected - testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exists007.ae)) @@ -174110,12 +171116,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists007.expected - testfile-exists007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exists007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exists007.ae)) @@ -174134,12 +171139,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists007.expected - testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exists007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exists007.ae)) @@ -174158,12 +171162,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists007.expected - testfile-exists007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exists007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exists007_cdcl.output) (deps (:input testfile-exists007.ae)) @@ -174181,10 +171184,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists007.expected testfile-exists007_cdcl.output))) + (deps testfile-exists007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_cdcl.output))) (rule (target testfile-exists007_tableaux_cdcl.output) (deps (:input testfile-exists007.ae)) @@ -174202,12 +171206,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exists007.expected - testfile-exists007_tableaux_cdcl.output))) + (deps testfile-exists007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_tableaux_cdcl.output))) (rule (target testfile-exists007_tableaux.output) (deps (:input testfile-exists007.ae)) @@ -174225,10 +171228,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists007.expected testfile-exists007_tableaux.output))) + (deps testfile-exists007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_tableaux.output))) (rule (target testfile-exists007_legacy.output) (deps (:input testfile-exists007.ae)) @@ -174245,10 +171249,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists007.expected testfile-exists007_legacy.output))) + (deps testfile-exists007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_legacy.output))) (rule (target testfile-exists007_dolmen.output) (deps (:input testfile-exists007.ae)) @@ -174265,10 +171270,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists007.expected testfile-exists007_dolmen.output))) + (deps testfile-exists007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_dolmen.output))) (rule (target testfile-exists007_fpa.output) (deps (:input testfile-exists007.ae)) @@ -174285,10 +171291,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists007.expected testfile-exists007_fpa.output))) + (deps testfile-exists007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists007.expected testfile-exists007_fpa.output))) (rule (target testfile-exists006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exists006.ae)) @@ -174307,12 +171314,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists006.expected - testfile-exists006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exists006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exists006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists006.ae)) @@ -174333,12 +171339,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists006.expected - testfile-exists006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists006.ae)) @@ -174358,12 +171363,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists006.expected - testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exists006.ae)) @@ -174382,12 +171386,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists006.expected - testfile-exists006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exists006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exists006.ae)) @@ -174406,12 +171409,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists006.expected - testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exists006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exists006.ae)) @@ -174430,12 +171432,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists006.expected - testfile-exists006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exists006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exists006_cdcl.output) (deps (:input testfile-exists006.ae)) @@ -174453,10 +171454,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists006.expected testfile-exists006_cdcl.output))) + (deps testfile-exists006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_cdcl.output))) (rule (target testfile-exists006_tableaux_cdcl.output) (deps (:input testfile-exists006.ae)) @@ -174474,12 +171476,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exists006.expected - testfile-exists006_tableaux_cdcl.output))) + (deps testfile-exists006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_tableaux_cdcl.output))) (rule (target testfile-exists006_tableaux.output) (deps (:input testfile-exists006.ae)) @@ -174497,10 +171498,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists006.expected testfile-exists006_tableaux.output))) + (deps testfile-exists006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_tableaux.output))) (rule (target testfile-exists006_legacy.output) (deps (:input testfile-exists006.ae)) @@ -174517,10 +171519,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists006.expected testfile-exists006_legacy.output))) + (deps testfile-exists006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_legacy.output))) (rule (target testfile-exists006_dolmen.output) (deps (:input testfile-exists006.ae)) @@ -174537,10 +171540,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists006.expected testfile-exists006_dolmen.output))) + (deps testfile-exists006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_dolmen.output))) (rule (target testfile-exists006_fpa.output) (deps (:input testfile-exists006.ae)) @@ -174557,10 +171561,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists006.expected testfile-exists006_fpa.output))) + (deps testfile-exists006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists006.expected testfile-exists006_fpa.output))) (rule (target testfile-exists004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exists004.ae)) @@ -174579,12 +171584,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists004.expected - testfile-exists004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exists004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exists004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists004.ae)) @@ -174605,12 +171609,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists004.expected - testfile-exists004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists004.ae)) @@ -174630,12 +171633,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists004.expected - testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exists004.ae)) @@ -174654,12 +171656,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists004.expected - testfile-exists004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exists004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exists004.ae)) @@ -174678,12 +171679,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists004.expected - testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exists004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exists004.ae)) @@ -174702,12 +171702,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists004.expected - testfile-exists004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exists004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exists004_cdcl.output) (deps (:input testfile-exists004.ae)) @@ -174725,10 +171724,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists004.expected testfile-exists004_cdcl.output))) + (deps testfile-exists004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_cdcl.output))) (rule (target testfile-exists004_tableaux_cdcl.output) (deps (:input testfile-exists004.ae)) @@ -174746,12 +171746,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exists004.expected - testfile-exists004_tableaux_cdcl.output))) + (deps testfile-exists004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_tableaux_cdcl.output))) (rule (target testfile-exists004_tableaux.output) (deps (:input testfile-exists004.ae)) @@ -174769,10 +171768,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists004.expected testfile-exists004_tableaux.output))) + (deps testfile-exists004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_tableaux.output))) (rule (target testfile-exists004_legacy.output) (deps (:input testfile-exists004.ae)) @@ -174789,10 +171789,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists004.expected testfile-exists004_legacy.output))) + (deps testfile-exists004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_legacy.output))) (rule (target testfile-exists004_dolmen.output) (deps (:input testfile-exists004.ae)) @@ -174809,10 +171810,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists004.expected testfile-exists004_dolmen.output))) + (deps testfile-exists004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_dolmen.output))) (rule (target testfile-exists004_fpa.output) (deps (:input testfile-exists004.ae)) @@ -174829,10 +171831,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists004.expected testfile-exists004_fpa.output))) + (deps testfile-exists004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists004.expected testfile-exists004_fpa.output))) (rule (target testfile-exists003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exists003.ae)) @@ -174851,12 +171854,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists003.expected - testfile-exists003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exists003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exists003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists003.ae)) @@ -174877,12 +171879,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists003.expected - testfile-exists003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists003.ae)) @@ -174902,12 +171903,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists003.expected - testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exists003.ae)) @@ -174926,12 +171926,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists003.expected - testfile-exists003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exists003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exists003.ae)) @@ -174950,12 +171949,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists003.expected - testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exists003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exists003.ae)) @@ -174974,12 +171972,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists003.expected - testfile-exists003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exists003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exists003_cdcl.output) (deps (:input testfile-exists003.ae)) @@ -174997,10 +171994,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists003.expected testfile-exists003_cdcl.output))) + (deps testfile-exists003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_cdcl.output))) (rule (target testfile-exists003_tableaux_cdcl.output) (deps (:input testfile-exists003.ae)) @@ -175018,12 +172016,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exists003.expected - testfile-exists003_tableaux_cdcl.output))) + (deps testfile-exists003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_tableaux_cdcl.output))) (rule (target testfile-exists003_tableaux.output) (deps (:input testfile-exists003.ae)) @@ -175041,10 +172038,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists003.expected testfile-exists003_tableaux.output))) + (deps testfile-exists003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_tableaux.output))) (rule (target testfile-exists003_legacy.output) (deps (:input testfile-exists003.ae)) @@ -175061,10 +172059,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists003.expected testfile-exists003_legacy.output))) + (deps testfile-exists003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_legacy.output))) (rule (target testfile-exists003_dolmen.output) (deps (:input testfile-exists003.ae)) @@ -175081,10 +172080,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists003.expected testfile-exists003_dolmen.output))) + (deps testfile-exists003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_dolmen.output))) (rule (target testfile-exists003_fpa.output) (deps (:input testfile-exists003.ae)) @@ -175101,10 +172101,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists003.expected testfile-exists003_fpa.output))) + (deps testfile-exists003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists003.expected testfile-exists003_fpa.output))) (rule (target testfile-exists002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exists002.ae)) @@ -175123,12 +172124,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists002.expected - testfile-exists002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exists002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exists002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists002.ae)) @@ -175149,12 +172149,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists002.expected - testfile-exists002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists002.ae)) @@ -175174,12 +172173,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists002.expected - testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exists002.ae)) @@ -175198,12 +172196,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists002.expected - testfile-exists002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exists002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exists002.ae)) @@ -175222,12 +172219,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists002.expected - testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exists002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exists002.ae)) @@ -175246,12 +172242,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists002.expected - testfile-exists002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exists002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exists002_cdcl.output) (deps (:input testfile-exists002.ae)) @@ -175269,10 +172264,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists002.expected testfile-exists002_cdcl.output))) + (deps testfile-exists002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_cdcl.output))) (rule (target testfile-exists002_tableaux_cdcl.output) (deps (:input testfile-exists002.ae)) @@ -175290,12 +172286,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exists002.expected - testfile-exists002_tableaux_cdcl.output))) + (deps testfile-exists002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_tableaux_cdcl.output))) (rule (target testfile-exists002_tableaux.output) (deps (:input testfile-exists002.ae)) @@ -175313,10 +172308,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists002.expected testfile-exists002_tableaux.output))) + (deps testfile-exists002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_tableaux.output))) (rule (target testfile-exists002_legacy.output) (deps (:input testfile-exists002.ae)) @@ -175333,10 +172329,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists002.expected testfile-exists002_legacy.output))) + (deps testfile-exists002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_legacy.output))) (rule (target testfile-exists002_dolmen.output) (deps (:input testfile-exists002.ae)) @@ -175353,10 +172350,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists002.expected testfile-exists002_dolmen.output))) + (deps testfile-exists002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_dolmen.output))) (rule (target testfile-exists002_fpa.output) (deps (:input testfile-exists002.ae)) @@ -175373,10 +172371,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists002.expected testfile-exists002_fpa.output))) + (deps testfile-exists002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists002.expected testfile-exists002_fpa.output))) (rule (target testfile-exists001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exists001.ae)) @@ -175395,12 +172394,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists001.expected - testfile-exists001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exists001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exists001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists001.ae)) @@ -175421,12 +172419,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists001.expected - testfile-exists001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exists001.ae)) @@ -175446,12 +172443,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists001.expected - testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exists001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exists001.ae)) @@ -175470,12 +172466,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists001.expected - testfile-exists001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exists001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exists001.ae)) @@ -175494,12 +172489,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists001.expected - testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exists001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exists001.ae)) @@ -175518,12 +172512,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exists001.expected - testfile-exists001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exists001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exists001_cdcl.output) (deps (:input testfile-exists001.ae)) @@ -175541,10 +172534,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists001.expected testfile-exists001_cdcl.output))) + (deps testfile-exists001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_cdcl.output))) (rule (target testfile-exists001_tableaux_cdcl.output) (deps (:input testfile-exists001.ae)) @@ -175562,12 +172556,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exists001.expected - testfile-exists001_tableaux_cdcl.output))) + (deps testfile-exists001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_tableaux_cdcl.output))) (rule (target testfile-exists001_tableaux.output) (deps (:input testfile-exists001.ae)) @@ -175585,10 +172578,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists001.expected testfile-exists001_tableaux.output))) + (deps testfile-exists001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_tableaux.output))) (rule (target testfile-exists001_legacy.output) (deps (:input testfile-exists001.ae)) @@ -175605,10 +172599,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists001.expected testfile-exists001_legacy.output))) + (deps testfile-exists001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_legacy.output))) (rule (target testfile-exists001_dolmen.output) (deps (:input testfile-exists001.ae)) @@ -175625,10 +172620,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists001.expected testfile-exists001_dolmen.output))) + (deps testfile-exists001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_dolmen.output))) (rule (target testfile-exists001_fpa.output) (deps (:input testfile-exists001.ae)) @@ -175645,10 +172641,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exists001.expected testfile-exists001_fpa.output))) + (deps testfile-exists001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exists001.expected testfile-exists001_fpa.output))) (rule (target testfile-exist004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exist004.ae)) @@ -175667,12 +172664,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist004.expected - testfile-exist004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exist004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exist004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exist004.ae)) @@ -175693,12 +172689,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist004.expected - testfile-exist004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exist004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exist004.ae)) @@ -175718,12 +172713,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist004.expected - testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exist004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exist004.ae)) @@ -175742,12 +172736,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist004.expected - testfile-exist004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exist004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exist004.ae)) @@ -175766,12 +172759,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist004.expected - testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exist004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exist004.ae)) @@ -175790,12 +172782,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist004.expected - testfile-exist004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exist004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exist004_cdcl.output) (deps (:input testfile-exist004.ae)) @@ -175813,10 +172804,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist004.expected testfile-exist004_cdcl.output))) + (deps testfile-exist004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_cdcl.output))) (rule (target testfile-exist004_tableaux_cdcl.output) (deps (:input testfile-exist004.ae)) @@ -175834,12 +172826,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exist004.expected - testfile-exist004_tableaux_cdcl.output))) + (deps testfile-exist004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_tableaux_cdcl.output))) (rule (target testfile-exist004_tableaux.output) (deps (:input testfile-exist004.ae)) @@ -175857,10 +172848,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist004.expected testfile-exist004_tableaux.output))) + (deps testfile-exist004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_tableaux.output))) (rule (target testfile-exist004_legacy.output) (deps (:input testfile-exist004.ae)) @@ -175877,10 +172869,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist004.expected testfile-exist004_legacy.output))) + (deps testfile-exist004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_legacy.output))) (rule (target testfile-exist004_dolmen.output) (deps (:input testfile-exist004.ae)) @@ -175897,10 +172890,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist004.expected testfile-exist004_dolmen.output))) + (deps testfile-exist004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_dolmen.output))) (rule (target testfile-exist004_fpa.output) (deps (:input testfile-exist004.ae)) @@ -175917,10 +172911,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist004.expected testfile-exist004_fpa.output))) + (deps testfile-exist004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist004.expected testfile-exist004_fpa.output))) (rule (target testfile-exist003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exist003.ae)) @@ -175939,12 +172934,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist003.expected - testfile-exist003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exist003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exist003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exist003.ae)) @@ -175965,12 +172959,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist003.expected - testfile-exist003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exist003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exist003.ae)) @@ -175990,12 +172983,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist003.expected - testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exist003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exist003.ae)) @@ -176014,12 +173006,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist003.expected - testfile-exist003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exist003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exist003.ae)) @@ -176038,12 +173029,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist003.expected - testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exist003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exist003.ae)) @@ -176062,12 +173052,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist003.expected - testfile-exist003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exist003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exist003_cdcl.output) (deps (:input testfile-exist003.ae)) @@ -176085,10 +173074,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist003.expected testfile-exist003_cdcl.output))) + (deps testfile-exist003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_cdcl.output))) (rule (target testfile-exist003_tableaux_cdcl.output) (deps (:input testfile-exist003.ae)) @@ -176106,12 +173096,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exist003.expected - testfile-exist003_tableaux_cdcl.output))) + (deps testfile-exist003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_tableaux_cdcl.output))) (rule (target testfile-exist003_tableaux.output) (deps (:input testfile-exist003.ae)) @@ -176129,10 +173118,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist003.expected testfile-exist003_tableaux.output))) + (deps testfile-exist003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_tableaux.output))) (rule (target testfile-exist003_legacy.output) (deps (:input testfile-exist003.ae)) @@ -176149,10 +173139,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist003.expected testfile-exist003_legacy.output))) + (deps testfile-exist003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_legacy.output))) (rule (target testfile-exist003_dolmen.output) (deps (:input testfile-exist003.ae)) @@ -176169,10 +173160,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist003.expected testfile-exist003_dolmen.output))) + (deps testfile-exist003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_dolmen.output))) (rule (target testfile-exist003_fpa.output) (deps (:input testfile-exist003.ae)) @@ -176189,10 +173181,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist003.expected testfile-exist003_fpa.output))) + (deps testfile-exist003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist003.expected testfile-exist003_fpa.output))) (rule (target testfile-exist002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-exist002.ae)) @@ -176211,12 +173204,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist002.expected - testfile-exist002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-exist002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-exist002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exist002.ae)) @@ -176237,12 +173229,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist002.expected - testfile-exist002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exist002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-exist002.ae)) @@ -176262,12 +173253,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist002.expected - testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-exist002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-exist002.ae)) @@ -176286,12 +173276,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist002.expected - testfile-exist002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-exist002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-exist002.ae)) @@ -176310,12 +173299,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist002.expected - testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-exist002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-exist002.ae)) @@ -176334,12 +173322,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-exist002.expected - testfile-exist002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-exist002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-exist002_cdcl.output) (deps (:input testfile-exist002.ae)) @@ -176357,10 +173344,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist002.expected testfile-exist002_cdcl.output))) + (deps testfile-exist002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_cdcl.output))) (rule (target testfile-exist002_tableaux_cdcl.output) (deps (:input testfile-exist002.ae)) @@ -176378,12 +173366,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-exist002.expected - testfile-exist002_tableaux_cdcl.output))) + (deps testfile-exist002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_tableaux_cdcl.output))) (rule (target testfile-exist002_tableaux.output) (deps (:input testfile-exist002.ae)) @@ -176401,10 +173388,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist002.expected testfile-exist002_tableaux.output))) + (deps testfile-exist002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_tableaux.output))) (rule (target testfile-exist002_legacy.output) (deps (:input testfile-exist002.ae)) @@ -176421,10 +173409,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist002.expected testfile-exist002_legacy.output))) + (deps testfile-exist002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_legacy.output))) (rule (target testfile-exist002_dolmen.output) (deps (:input testfile-exist002.ae)) @@ -176441,10 +173430,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist002.expected testfile-exist002_dolmen.output))) + (deps testfile-exist002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_dolmen.output))) (rule (target testfile-exist002_fpa.output) (deps (:input testfile-exist002.ae)) @@ -176461,10 +173451,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-exist002.expected testfile-exist002_fpa.output)))) + (deps testfile-exist002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-exist002.expected testfile-exist002_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -176488,12 +173479,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations008.ae)) @@ -176514,12 +173504,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations008.ae)) @@ -176539,12 +173528,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations008.ae)) @@ -176563,12 +173551,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations008.ae)) @@ -176587,12 +173574,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations008.ae)) @@ -176611,12 +173597,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations008_cdcl.output) (deps (:input testfile-explanations008.ae)) @@ -176634,12 +173619,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_cdcl.output))) + (deps testfile-explanations008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_cdcl.output))) (rule (target testfile-explanations008_tableaux_cdcl.output) (deps (:input testfile-explanations008.ae)) @@ -176657,12 +173641,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_tableaux_cdcl.output))) + (deps testfile-explanations008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_tableaux_cdcl.output))) (rule (target testfile-explanations008_tableaux.output) (deps (:input testfile-explanations008.ae)) @@ -176680,12 +173663,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_tableaux.output))) + (deps testfile-explanations008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_tableaux.output))) (rule (target testfile-explanations008_legacy.output) (deps (:input testfile-explanations008.ae)) @@ -176702,12 +173684,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_legacy.output))) + (deps testfile-explanations008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_legacy.output))) (rule (target testfile-explanations008_dolmen.output) (deps (:input testfile-explanations008.ae)) @@ -176724,12 +173705,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_dolmen.output))) + (deps testfile-explanations008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_dolmen.output))) (rule (target testfile-explanations008_fpa.output) (deps (:input testfile-explanations008.ae)) @@ -176746,12 +173726,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations008.expected - testfile-explanations008_fpa.output))) + (deps testfile-explanations008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations008.expected testfile-explanations008_fpa.output))) (rule (target testfile-explanations007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations007.ae)) @@ -176770,12 +173749,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations007.ae)) @@ -176796,12 +173774,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations007.ae)) @@ -176821,12 +173798,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations007.ae)) @@ -176845,12 +173821,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations007.ae)) @@ -176869,12 +173844,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations007.ae)) @@ -176893,12 +173867,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations007_cdcl.output) (deps (:input testfile-explanations007.ae)) @@ -176916,12 +173889,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_cdcl.output))) + (deps testfile-explanations007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_cdcl.output))) (rule (target testfile-explanations007_tableaux_cdcl.output) (deps (:input testfile-explanations007.ae)) @@ -176939,12 +173911,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_tableaux_cdcl.output))) + (deps testfile-explanations007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_tableaux_cdcl.output))) (rule (target testfile-explanations007_tableaux.output) (deps (:input testfile-explanations007.ae)) @@ -176962,12 +173933,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_tableaux.output))) + (deps testfile-explanations007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_tableaux.output))) (rule (target testfile-explanations007_legacy.output) (deps (:input testfile-explanations007.ae)) @@ -176984,12 +173954,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_legacy.output))) + (deps testfile-explanations007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_legacy.output))) (rule (target testfile-explanations007_dolmen.output) (deps (:input testfile-explanations007.ae)) @@ -177006,12 +173975,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_dolmen.output))) + (deps testfile-explanations007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_dolmen.output))) (rule (target testfile-explanations007_fpa.output) (deps (:input testfile-explanations007.ae)) @@ -177028,12 +173996,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations007.expected - testfile-explanations007_fpa.output))) + (deps testfile-explanations007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations007.expected testfile-explanations007_fpa.output))) (rule (target testfile-explanations006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations006.ae)) @@ -177052,12 +174019,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations006.ae)) @@ -177078,12 +174044,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations006.ae)) @@ -177103,12 +174068,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations006.ae)) @@ -177127,12 +174091,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations006.ae)) @@ -177151,12 +174114,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations006.ae)) @@ -177175,12 +174137,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations006_cdcl.output) (deps (:input testfile-explanations006.ae)) @@ -177198,12 +174159,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_cdcl.output))) + (deps testfile-explanations006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_cdcl.output))) (rule (target testfile-explanations006_tableaux_cdcl.output) (deps (:input testfile-explanations006.ae)) @@ -177221,12 +174181,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_tableaux_cdcl.output))) + (deps testfile-explanations006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_tableaux_cdcl.output))) (rule (target testfile-explanations006_tableaux.output) (deps (:input testfile-explanations006.ae)) @@ -177244,12 +174203,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_tableaux.output))) + (deps testfile-explanations006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_tableaux.output))) (rule (target testfile-explanations006_legacy.output) (deps (:input testfile-explanations006.ae)) @@ -177266,12 +174224,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_legacy.output))) + (deps testfile-explanations006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_legacy.output))) (rule (target testfile-explanations006_dolmen.output) (deps (:input testfile-explanations006.ae)) @@ -177288,12 +174245,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_dolmen.output))) + (deps testfile-explanations006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_dolmen.output))) (rule (target testfile-explanations006_fpa.output) (deps (:input testfile-explanations006.ae)) @@ -177310,12 +174266,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations006.expected - testfile-explanations006_fpa.output))) + (deps testfile-explanations006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations006.expected testfile-explanations006_fpa.output))) (rule (target testfile-explanations005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations005.ae)) @@ -177334,12 +174289,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations005.ae)) @@ -177360,12 +174314,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations005.ae)) @@ -177385,12 +174338,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations005.ae)) @@ -177409,12 +174361,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations005.ae)) @@ -177433,12 +174384,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations005.ae)) @@ -177457,12 +174407,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations005_cdcl.output) (deps (:input testfile-explanations005.ae)) @@ -177480,12 +174429,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_cdcl.output))) + (deps testfile-explanations005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_cdcl.output))) (rule (target testfile-explanations005_tableaux_cdcl.output) (deps (:input testfile-explanations005.ae)) @@ -177503,12 +174451,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_tableaux_cdcl.output))) + (deps testfile-explanations005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_tableaux_cdcl.output))) (rule (target testfile-explanations005_tableaux.output) (deps (:input testfile-explanations005.ae)) @@ -177526,12 +174473,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_tableaux.output))) + (deps testfile-explanations005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_tableaux.output))) (rule (target testfile-explanations005_legacy.output) (deps (:input testfile-explanations005.ae)) @@ -177548,12 +174494,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_legacy.output))) + (deps testfile-explanations005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_legacy.output))) (rule (target testfile-explanations005_dolmen.output) (deps (:input testfile-explanations005.ae)) @@ -177570,12 +174515,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_dolmen.output))) + (deps testfile-explanations005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_dolmen.output))) (rule (target testfile-explanations005_fpa.output) (deps (:input testfile-explanations005.ae)) @@ -177592,12 +174536,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations005.expected - testfile-explanations005_fpa.output))) + (deps testfile-explanations005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations005.expected testfile-explanations005_fpa.output))) (rule (target testfile-explanations004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations004.ae)) @@ -177616,12 +174559,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations004.ae)) @@ -177642,12 +174584,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations004.ae)) @@ -177667,12 +174608,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations004.ae)) @@ -177691,12 +174631,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations004.ae)) @@ -177715,12 +174654,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations004.ae)) @@ -177739,12 +174677,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations004_cdcl.output) (deps (:input testfile-explanations004.ae)) @@ -177762,12 +174699,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_cdcl.output))) + (deps testfile-explanations004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_cdcl.output))) (rule (target testfile-explanations004_tableaux_cdcl.output) (deps (:input testfile-explanations004.ae)) @@ -177785,12 +174721,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_tableaux_cdcl.output))) + (deps testfile-explanations004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_tableaux_cdcl.output))) (rule (target testfile-explanations004_tableaux.output) (deps (:input testfile-explanations004.ae)) @@ -177808,12 +174743,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_tableaux.output))) + (deps testfile-explanations004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_tableaux.output))) (rule (target testfile-explanations004_legacy.output) (deps (:input testfile-explanations004.ae)) @@ -177830,12 +174764,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_legacy.output))) + (deps testfile-explanations004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_legacy.output))) (rule (target testfile-explanations004_dolmen.output) (deps (:input testfile-explanations004.ae)) @@ -177852,12 +174785,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_dolmen.output))) + (deps testfile-explanations004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_dolmen.output))) (rule (target testfile-explanations004_fpa.output) (deps (:input testfile-explanations004.ae)) @@ -177874,12 +174806,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations004.expected - testfile-explanations004_fpa.output))) + (deps testfile-explanations004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations004.expected testfile-explanations004_fpa.output))) (rule (target testfile-explanations003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations003.ae)) @@ -177898,12 +174829,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations003.ae)) @@ -177924,12 +174854,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations003.ae)) @@ -177949,12 +174878,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations003.ae)) @@ -177973,12 +174901,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations003.ae)) @@ -177997,12 +174924,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations003.ae)) @@ -178021,12 +174947,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations003_cdcl.output) (deps (:input testfile-explanations003.ae)) @@ -178044,12 +174969,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_cdcl.output))) + (deps testfile-explanations003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_cdcl.output))) (rule (target testfile-explanations003_tableaux_cdcl.output) (deps (:input testfile-explanations003.ae)) @@ -178067,12 +174991,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_tableaux_cdcl.output))) + (deps testfile-explanations003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_tableaux_cdcl.output))) (rule (target testfile-explanations003_tableaux.output) (deps (:input testfile-explanations003.ae)) @@ -178090,12 +175013,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_tableaux.output))) + (deps testfile-explanations003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_tableaux.output))) (rule (target testfile-explanations003_legacy.output) (deps (:input testfile-explanations003.ae)) @@ -178112,12 +175034,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_legacy.output))) + (deps testfile-explanations003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_legacy.output))) (rule (target testfile-explanations003_dolmen.output) (deps (:input testfile-explanations003.ae)) @@ -178134,12 +175055,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_dolmen.output))) + (deps testfile-explanations003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_dolmen.output))) (rule (target testfile-explanations003_fpa.output) (deps (:input testfile-explanations003.ae)) @@ -178156,12 +175076,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations003.expected - testfile-explanations003_fpa.output))) + (deps testfile-explanations003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations003.expected testfile-explanations003_fpa.output))) (rule (target testfile-explanations002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations002.ae)) @@ -178180,12 +175099,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations002.ae)) @@ -178206,12 +175124,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations002.ae)) @@ -178231,12 +175148,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations002.ae)) @@ -178255,12 +175171,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations002.ae)) @@ -178279,12 +175194,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations002.ae)) @@ -178303,12 +175217,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations002_cdcl.output) (deps (:input testfile-explanations002.ae)) @@ -178326,12 +175239,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_cdcl.output))) + (deps testfile-explanations002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_cdcl.output))) (rule (target testfile-explanations002_tableaux_cdcl.output) (deps (:input testfile-explanations002.ae)) @@ -178349,12 +175261,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_tableaux_cdcl.output))) + (deps testfile-explanations002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_tableaux_cdcl.output))) (rule (target testfile-explanations002_tableaux.output) (deps (:input testfile-explanations002.ae)) @@ -178372,12 +175283,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_tableaux.output))) + (deps testfile-explanations002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_tableaux.output))) (rule (target testfile-explanations002_legacy.output) (deps (:input testfile-explanations002.ae)) @@ -178394,12 +175304,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_legacy.output))) + (deps testfile-explanations002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_legacy.output))) (rule (target testfile-explanations002_dolmen.output) (deps (:input testfile-explanations002.ae)) @@ -178416,12 +175325,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_dolmen.output))) + (deps testfile-explanations002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_dolmen.output))) (rule (target testfile-explanations002_fpa.output) (deps (:input testfile-explanations002.ae)) @@ -178438,12 +175346,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations002.expected - testfile-explanations002_fpa.output))) + (deps testfile-explanations002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations002.expected testfile-explanations002_fpa.output))) (rule (target testfile-explanations001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations001.ae)) @@ -178462,12 +175369,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-explanations001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations001.ae)) @@ -178488,12 +175394,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-explanations001.ae)) @@ -178513,12 +175418,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-explanations001.ae)) @@ -178537,12 +175441,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-explanations001.ae)) @@ -178561,12 +175464,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-explanations001.ae)) @@ -178585,12 +175487,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-explanations001_cdcl.output) (deps (:input testfile-explanations001.ae)) @@ -178608,12 +175509,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_cdcl.output))) + (deps testfile-explanations001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_cdcl.output))) (rule (target testfile-explanations001_tableaux_cdcl.output) (deps (:input testfile-explanations001.ae)) @@ -178631,12 +175531,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_tableaux_cdcl.output))) + (deps testfile-explanations001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_tableaux_cdcl.output))) (rule (target testfile-explanations001_tableaux.output) (deps (:input testfile-explanations001.ae)) @@ -178654,12 +175553,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_tableaux.output))) + (deps testfile-explanations001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_tableaux.output))) (rule (target testfile-explanations001_legacy.output) (deps (:input testfile-explanations001.ae)) @@ -178676,12 +175574,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_legacy.output))) + (deps testfile-explanations001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_legacy.output))) (rule (target testfile-explanations001_dolmen.output) (deps (:input testfile-explanations001.ae)) @@ -178698,12 +175595,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_dolmen.output))) + (deps testfile-explanations001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_dolmen.output))) (rule (target testfile-explanations001_fpa.output) (deps (:input testfile-explanations001.ae)) @@ -178720,20 +175616,19 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-explanations001.expected - testfile-explanations001_fpa.output)))) + (deps testfile-explanations001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-explanations001.expected testfile-explanations001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests ; Auto-generated part begin (subdir issues (rule - (target 777.models_tableaux.output) - (deps (:input 777.models.smt2)) + (target 777.models.fail_tableaux.output) + (deps (:input 777.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -178748,10 +175643,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 777.models.expected 777.models_tableaux.output))) + (deps 777.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff 777.models.fail.expected 777.models.fail_tableaux.output))))) (rule (target 696_ci_cdcl_no_minimal_bj.output) (deps (:input 696.ae)) @@ -178770,10 +175666,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 696.expected 696_ci_cdcl_no_minimal_bj.output))) + (deps 696_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 696.expected 696_ci_cdcl_no_minimal_bj.output))) (rule (target 696_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 696.ae)) @@ -178794,12 +175691,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 696.expected - 696_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 696_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 696.expected 696_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 696.ae)) @@ -178819,12 +175715,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 696.expected - 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 696.expected 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 696_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 696.ae)) @@ -178843,10 +175738,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 696.expected 696_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 696_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 696.expected 696_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 696.ae)) @@ -178865,12 +175761,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 696.expected - 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 696.expected 696_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 696_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 696.ae)) @@ -178889,10 +175784,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 696.expected 696_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 696_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 696.expected 696_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 696_cdcl.output) (deps (:input 696.ae)) @@ -178910,10 +175806,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 696.expected 696_cdcl.output))) + (deps 696_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 696.expected 696_cdcl.output))) (rule (target 696_tableaux_cdcl.output) (deps (:input 696.ae)) @@ -178931,10 +175828,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 696.expected 696_tableaux_cdcl.output))) + (deps 696_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 696.expected 696_tableaux_cdcl.output))) (rule (target 696_tableaux.output) (deps (:input 696.ae)) @@ -178952,10 +175850,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 696.expected 696_tableaux.output))) + (deps 696_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 696.expected 696_tableaux.output))) (rule (target 696_legacy.output) (deps (:input 696.ae)) @@ -178972,10 +175871,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 696.expected 696_legacy.output))) + (deps 696_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 696.expected 696_legacy.output))) (rule (target 696_dolmen.output) (deps (:input 696.ae)) @@ -178992,10 +175892,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 696.expected 696_dolmen.output))) + (deps 696_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 696.expected 696_dolmen.output))) (rule (target 696_fpa.output) (deps (:input 696.ae)) @@ -179012,10 +175913,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 696.expected 696_fpa.output))) + (deps 696_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 696.expected 696_fpa.output))) (rule (target 695_ci_cdcl_no_minimal_bj.output) (deps (:input 695.smt2)) @@ -179034,10 +175936,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 695.expected 695_ci_cdcl_no_minimal_bj.output))) + (deps 695_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 695.expected 695_ci_cdcl_no_minimal_bj.output))) (rule (target 695_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 695.smt2)) @@ -179058,12 +175961,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 695.expected - 695_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 695_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 695.expected 695_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 695.smt2)) @@ -179083,12 +175985,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 695.expected - 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 695.expected 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 695_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 695.smt2)) @@ -179107,10 +176008,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 695.expected 695_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 695_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 695.expected 695_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 695.smt2)) @@ -179129,12 +176031,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 695.expected - 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 695.expected 695_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 695_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 695.smt2)) @@ -179153,10 +176054,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 695.expected 695_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 695_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 695.expected 695_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 695_cdcl.output) (deps (:input 695.smt2)) @@ -179174,10 +176076,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 695.expected 695_cdcl.output))) + (deps 695_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 695.expected 695_cdcl.output))) (rule (target 695_tableaux_cdcl.output) (deps (:input 695.smt2)) @@ -179195,10 +176098,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 695.expected 695_tableaux_cdcl.output))) + (deps 695_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 695.expected 695_tableaux_cdcl.output))) (rule (target 695_tableaux.output) (deps (:input 695.smt2)) @@ -179216,10 +176120,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 695.expected 695_tableaux.output))) + (deps 695_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 695.expected 695_tableaux.output))) (rule (target 695_legacy.output) (deps (:input 695.smt2)) @@ -179236,10 +176141,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 695.expected 695_legacy.output))) + (deps 695_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 695.expected 695_legacy.output))) (rule (target 695_dolmen.output) (deps (:input 695.smt2)) @@ -179256,10 +176162,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 695.expected 695_dolmen.output))) + (deps 695_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 695.expected 695_dolmen.output))) (rule (target 695_fpa.output) (deps (:input 695.smt2)) @@ -179276,10 +176183,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 695.expected 695_fpa.output))) + (deps 695_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 695.expected 695_fpa.output))) (rule (target 645_ci_cdcl_no_minimal_bj.output) (deps (:input 645.ae)) @@ -179298,10 +176206,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 645.expected 645_ci_cdcl_no_minimal_bj.output))) + (deps 645_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 645.expected 645_ci_cdcl_no_minimal_bj.output))) (rule (target 645_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 645.ae)) @@ -179322,12 +176231,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 645.expected - 645_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 645_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 645.expected 645_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 645.ae)) @@ -179347,12 +176255,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 645.expected - 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 645.expected 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 645_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 645.ae)) @@ -179371,10 +176278,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 645.expected 645_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 645_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 645.expected 645_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 645.ae)) @@ -179393,12 +176301,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 645.expected - 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 645.expected 645_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 645_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 645.ae)) @@ -179417,10 +176324,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 645.expected 645_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 645_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 645.expected 645_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 645_cdcl.output) (deps (:input 645.ae)) @@ -179438,10 +176346,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 645.expected 645_cdcl.output))) + (deps 645_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 645.expected 645_cdcl.output))) (rule (target 645_tableaux_cdcl.output) (deps (:input 645.ae)) @@ -179459,10 +176368,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 645.expected 645_tableaux_cdcl.output))) + (deps 645_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 645.expected 645_tableaux_cdcl.output))) (rule (target 645_tableaux.output) (deps (:input 645.ae)) @@ -179480,10 +176390,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 645.expected 645_tableaux.output))) + (deps 645_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 645.expected 645_tableaux.output))) (rule (target 645_legacy.output) (deps (:input 645.ae)) @@ -179500,10 +176411,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 645.expected 645_legacy.output))) + (deps 645_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 645.expected 645_legacy.output))) (rule (target 645_dolmen.output) (deps (:input 645.ae)) @@ -179520,10 +176432,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 645.expected 645_dolmen.output))) + (deps 645_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 645.expected 645_dolmen.output))) (rule (target 645_fpa.output) (deps (:input 645.ae)) @@ -179540,13 +176453,14 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 645.expected 645_fpa.output))) + (deps 645_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 645.expected 645_fpa.output))) (rule - (target 555.models_tableaux.output) - (deps (:input 555.models.smt2)) + (target 555.models.fail_tableaux.output) + (deps (:input 555.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -179561,10 +176475,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 555.models.expected 555.models_tableaux.output))) + (deps 555.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff 555.models.fail.expected 555.models.fail_tableaux.output))))) (rule (target 479_ci_cdcl_no_minimal_bj.output) (deps (:input 479.smt2)) @@ -179583,10 +176498,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 479.expected 479_ci_cdcl_no_minimal_bj.output))) + (deps 479_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 479.expected 479_ci_cdcl_no_minimal_bj.output))) (rule (target 479_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 479.smt2)) @@ -179607,12 +176523,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 479.expected - 479_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 479_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 479.expected 479_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 479.smt2)) @@ -179632,12 +176547,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 479.expected - 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 479.expected 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 479_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 479.smt2)) @@ -179656,10 +176570,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 479.expected 479_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 479_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 479.expected 479_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 479.smt2)) @@ -179678,12 +176593,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 479.expected - 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 479.expected 479_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 479_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 479.smt2)) @@ -179702,10 +176616,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 479.expected 479_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 479_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 479.expected 479_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 479_cdcl.output) (deps (:input 479.smt2)) @@ -179723,10 +176638,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 479.expected 479_cdcl.output))) + (deps 479_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 479.expected 479_cdcl.output))) (rule (target 479_tableaux_cdcl.output) (deps (:input 479.smt2)) @@ -179744,10 +176660,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 479.expected 479_tableaux_cdcl.output))) + (deps 479_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 479.expected 479_tableaux_cdcl.output))) (rule (target 479_tableaux.output) (deps (:input 479.smt2)) @@ -179765,10 +176682,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 479.expected 479_tableaux.output))) + (deps 479_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 479.expected 479_tableaux.output))) (rule (target 479_legacy.output) (deps (:input 479.smt2)) @@ -179785,10 +176703,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 479.expected 479_legacy.output))) + (deps 479_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 479.expected 479_legacy.output))) (rule (target 479_dolmen.output) (deps (:input 479.smt2)) @@ -179805,10 +176724,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 479.expected 479_dolmen.output))) + (deps 479_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 479.expected 479_dolmen.output))) (rule (target 479_fpa.output) (deps (:input 479.smt2)) @@ -179825,10 +176745,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 479.expected 479_fpa.output))) + (deps 479_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 479.expected 479_fpa.output))) (rule (target 460_ci_cdcl_no_minimal_bj.output) (deps (:input 460.ae)) @@ -179847,10 +176768,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 460.expected 460_ci_cdcl_no_minimal_bj.output))) + (deps 460_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 460.expected 460_ci_cdcl_no_minimal_bj.output))) (rule (target 460_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 460.ae)) @@ -179871,12 +176793,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 460.expected - 460_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 460_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 460.expected 460_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 460.ae)) @@ -179896,12 +176817,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 460.expected - 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 460.expected 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 460_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 460.ae)) @@ -179920,10 +176840,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 460.expected 460_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 460_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 460.expected 460_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 460.ae)) @@ -179942,12 +176863,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 460.expected - 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 460.expected 460_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 460_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 460.ae)) @@ -179966,10 +176886,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 460.expected 460_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 460_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 460.expected 460_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 460_cdcl.output) (deps (:input 460.ae)) @@ -179987,10 +176908,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 460.expected 460_cdcl.output))) + (deps 460_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 460.expected 460_cdcl.output))) (rule (target 460_tableaux_cdcl.output) (deps (:input 460.ae)) @@ -180008,10 +176930,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 460.expected 460_tableaux_cdcl.output))) + (deps 460_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 460.expected 460_tableaux_cdcl.output))) (rule (target 460_tableaux.output) (deps (:input 460.ae)) @@ -180029,10 +176952,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 460.expected 460_tableaux.output))) + (deps 460_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 460.expected 460_tableaux.output))) (rule (target 460_legacy.output) (deps (:input 460.ae)) @@ -180049,10 +176973,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 460.expected 460_legacy.output))) + (deps 460_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 460.expected 460_legacy.output))) (rule (target 460_dolmen.output) (deps (:input 460.ae)) @@ -180069,10 +176994,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 460.expected 460_dolmen.output))) + (deps 460_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 460.expected 460_dolmen.output))) (rule (target 460_fpa.output) (deps (:input 460.ae)) @@ -180089,10 +177015,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 460.expected 460_fpa.output))) + (deps 460_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 460.expected 460_fpa.output))) (rule (target 350_ci_cdcl_no_minimal_bj.output) (deps (:input 350.ae)) @@ -180111,10 +177038,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 350.expected 350_ci_cdcl_no_minimal_bj.output))) + (deps 350_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 350.expected 350_ci_cdcl_no_minimal_bj.output))) (rule (target 350_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 350.ae)) @@ -180135,12 +177063,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 350.expected - 350_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 350_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 350.expected 350_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 350.ae)) @@ -180160,12 +177087,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 350.expected - 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 350.expected 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 350_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 350.ae)) @@ -180184,10 +177110,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 350.expected 350_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 350_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 350.expected 350_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 350.ae)) @@ -180206,12 +177133,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 350.expected - 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 350.expected 350_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 350_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 350.ae)) @@ -180230,10 +177156,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 350.expected 350_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 350_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 350.expected 350_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 350_cdcl.output) (deps (:input 350.ae)) @@ -180251,10 +177178,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 350.expected 350_cdcl.output))) + (deps 350_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 350.expected 350_cdcl.output))) (rule (target 350_tableaux_cdcl.output) (deps (:input 350.ae)) @@ -180272,10 +177200,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 350.expected 350_tableaux_cdcl.output))) + (deps 350_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 350.expected 350_tableaux_cdcl.output))) (rule (target 350_tableaux.output) (deps (:input 350.ae)) @@ -180293,10 +177222,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 350.expected 350_tableaux.output))) + (deps 350_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 350.expected 350_tableaux.output))) (rule (target 350_legacy.output) (deps (:input 350.ae)) @@ -180313,10 +177243,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 350.expected 350_legacy.output))) + (deps 350_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 350.expected 350_legacy.output))) (rule (target 350_dolmen.output) (deps (:input 350.ae)) @@ -180333,10 +177264,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 350.expected 350_dolmen.output))) + (deps 350_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 350.expected 350_dolmen.output))) (rule (target 350_fpa.output) (deps (:input 350.ae)) @@ -180353,10 +177285,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 350.expected 350_fpa.output))) + (deps 350_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 350.expected 350_fpa.output))) (rule (target 340_ci_cdcl_no_minimal_bj.output) (deps (:input 340.smt2)) @@ -180375,10 +177308,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 340.expected 340_ci_cdcl_no_minimal_bj.output))) + (deps 340_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 340.expected 340_ci_cdcl_no_minimal_bj.output))) (rule (target 340_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 340.smt2)) @@ -180399,12 +177333,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 340.expected - 340_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 340_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 340.expected 340_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 340.smt2)) @@ -180424,12 +177357,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 340.expected - 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 340.expected 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 340_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 340.smt2)) @@ -180448,10 +177380,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 340.expected 340_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 340_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 340.expected 340_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 340.smt2)) @@ -180470,12 +177403,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 340.expected - 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 340.expected 340_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 340_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 340.smt2)) @@ -180494,10 +177426,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 340.expected 340_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 340_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 340.expected 340_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 340_cdcl.output) (deps (:input 340.smt2)) @@ -180515,10 +177448,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 340.expected 340_cdcl.output))) + (deps 340_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 340.expected 340_cdcl.output))) (rule (target 340_tableaux_cdcl.output) (deps (:input 340.smt2)) @@ -180536,10 +177470,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 340.expected 340_tableaux_cdcl.output))) + (deps 340_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 340.expected 340_tableaux_cdcl.output))) (rule (target 340_tableaux.output) (deps (:input 340.smt2)) @@ -180557,10 +177492,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 340.expected 340_tableaux.output))) + (deps 340_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 340.expected 340_tableaux.output))) (rule (target 340_legacy.output) (deps (:input 340.smt2)) @@ -180577,10 +177513,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 340.expected 340_legacy.output))) + (deps 340_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 340.expected 340_legacy.output))) (rule (target 340_dolmen.output) (deps (:input 340.smt2)) @@ -180597,10 +177534,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 340.expected 340_dolmen.output))) + (deps 340_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 340.expected 340_dolmen.output))) (rule (target 340_fpa.output) (deps (:input 340.smt2)) @@ -180617,10 +177555,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 340.expected 340_fpa.output)))) + (deps 340_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 340.expected 340_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -180642,10 +177581,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 649.dolmen.expected 649.dolmen_dolmen.output))) + (deps 649.dolmen_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 649.dolmen.expected 649.dolmen_dolmen.output))) (rule (target 649_ci_cdcl_no_minimal_bj.output) (deps (:input 649.ae)) @@ -180664,10 +177604,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 649.expected 649_ci_cdcl_no_minimal_bj.output))) + (deps 649_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 649.expected 649_ci_cdcl_no_minimal_bj.output))) (rule (target 649_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 649.ae)) @@ -180688,12 +177629,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 649.expected - 649_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 649_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 649.expected 649_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 649.ae)) @@ -180713,12 +177653,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 649.expected - 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 649.expected 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 649_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 649.ae)) @@ -180737,10 +177676,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 649.expected 649_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 649_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 649.expected 649_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 649.ae)) @@ -180759,12 +177699,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 649.expected - 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 649.expected 649_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 649_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 649.ae)) @@ -180783,10 +177722,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 649.expected 649_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 649_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 649.expected 649_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 649_cdcl.output) (deps (:input 649.ae)) @@ -180804,10 +177744,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 649.expected 649_cdcl.output))) + (deps 649_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 649.expected 649_cdcl.output))) (rule (target 649_tableaux_cdcl.output) (deps (:input 649.ae)) @@ -180825,10 +177766,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 649.expected 649_tableaux_cdcl.output))) + (deps 649_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 649.expected 649_tableaux_cdcl.output))) (rule (target 649_tableaux.output) (deps (:input 649.ae)) @@ -180846,10 +177788,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 649.expected 649_tableaux.output))) + (deps 649_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 649.expected 649_tableaux.output))) (rule (target 649_legacy.output) (deps (:input 649.ae)) @@ -180866,10 +177809,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 649.expected 649_legacy.output))) + (deps 649_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 649.expected 649_legacy.output))) (rule (target 649_dolmen.output) (deps (:input 649.ae)) @@ -180886,10 +177830,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 649.expected 649_dolmen.output))) + (deps 649_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 649.expected 649_dolmen.output))) (rule (target 649_fpa.output) (deps (:input 649.ae)) @@ -180906,10 +177851,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 649.expected 649_fpa.output)))) + (deps 649_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 649.expected 649_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -180931,10 +177877,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 664.dolmen.expected 664.dolmen_dolmen.output))) + (deps 664.dolmen_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 664.dolmen.expected 664.dolmen_dolmen.output))) (rule (target 664_ci_cdcl_no_minimal_bj.output) (deps (:input 664.ae)) @@ -180953,10 +177900,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 664.expected 664_ci_cdcl_no_minimal_bj.output))) + (deps 664_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 664.expected 664_ci_cdcl_no_minimal_bj.output))) (rule (target 664_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 664.ae)) @@ -180977,12 +177925,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 664.expected - 664_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 664_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 664.expected 664_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input 664.ae)) @@ -181002,12 +177949,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 664.expected - 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 664.expected 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target 664_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input 664.ae)) @@ -181026,10 +177972,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 664.expected 664_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps 664_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 664.expected 664_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input 664.ae)) @@ -181048,12 +177995,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - 664.expected - 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 664.expected 664_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target 664_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input 664.ae)) @@ -181072,10 +178018,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff 664.expected 664_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps 664_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff 664.expected 664_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target 664_cdcl.output) (deps (:input 664.ae)) @@ -181093,10 +178040,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 664.expected 664_cdcl.output))) + (deps 664_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 664.expected 664_cdcl.output))) (rule (target 664_tableaux_cdcl.output) (deps (:input 664.ae)) @@ -181114,10 +178062,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 664.expected 664_tableaux_cdcl.output))) + (deps 664_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 664.expected 664_tableaux_cdcl.output))) (rule (target 664_tableaux.output) (deps (:input 664.ae)) @@ -181135,10 +178084,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 664.expected 664_tableaux.output))) + (deps 664_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 664.expected 664_tableaux.output))) (rule (target 664_legacy.output) (deps (:input 664.ae)) @@ -181155,10 +178105,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 664.expected 664_legacy.output))) + (deps 664_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 664.expected 664_legacy.output))) (rule (target 664_dolmen.output) (deps (:input 664.ae)) @@ -181175,10 +178126,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 664.expected 664_dolmen.output))) + (deps 664_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 664.expected 664_dolmen.output))) (rule (target 664_fpa.output) (deps (:input 664.ae)) @@ -181195,10 +178147,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 664.expected 664_fpa.output)))) + (deps 664_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 664.expected 664_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -181222,12 +178175,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-everything012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-everything012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything012.ae)) @@ -181248,12 +178200,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-everything012.ae)) @@ -181273,12 +178224,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-everything012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-everything012.ae)) @@ -181297,12 +178247,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-everything012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-everything012.ae)) @@ -181321,12 +178270,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-everything012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-everything012.ae)) @@ -181345,12 +178293,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-everything012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-everything012_cdcl.output) (deps (:input testfile-everything012.ae)) @@ -181368,12 +178315,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_cdcl.output))) + (deps testfile-everything012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_cdcl.output))) (rule (target testfile-everything012_tableaux_cdcl.output) (deps (:input testfile-everything012.ae)) @@ -181391,12 +178337,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_tableaux_cdcl.output))) + (deps testfile-everything012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_tableaux_cdcl.output))) (rule (target testfile-everything012_tableaux.output) (deps (:input testfile-everything012.ae)) @@ -181414,12 +178359,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_tableaux.output))) + (deps testfile-everything012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_tableaux.output))) (rule (target testfile-everything012_legacy.output) (deps (:input testfile-everything012.ae)) @@ -181436,12 +178380,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_legacy.output))) + (deps testfile-everything012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_legacy.output))) (rule (target testfile-everything012_dolmen.output) (deps (:input testfile-everything012.ae)) @@ -181458,12 +178401,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_dolmen.output))) + (deps testfile-everything012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_dolmen.output))) (rule (target testfile-everything012_fpa.output) (deps (:input testfile-everything012.ae)) @@ -181480,12 +178422,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-everything012.expected - testfile-everything012_fpa.output))) + (deps testfile-everything012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-everything012.expected testfile-everything012_fpa.output))) (rule (target ite-7_ci_cdcl_no_minimal_bj.output) (deps (:input ite-7.ae)) @@ -181504,10 +178445,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_ci_cdcl_no_minimal_bj.output))) + (deps ite-7_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_ci_cdcl_no_minimal_bj.output))) (rule (target ite-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-7.ae)) @@ -181528,12 +178470,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-7.expected - ite-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-7.ae)) @@ -181553,12 +178494,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-7.expected - ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-7_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-7.ae)) @@ -181577,10 +178517,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-7_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-7.ae)) @@ -181599,12 +178540,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-7.expected - ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-7_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-7.ae)) @@ -181623,10 +178563,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-7_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-7_cdcl.output) (deps (:input ite-7.ae)) @@ -181644,10 +178585,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_cdcl.output))) + (deps ite-7_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_cdcl.output))) (rule (target ite-7_tableaux_cdcl.output) (deps (:input ite-7.ae)) @@ -181665,10 +178607,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_tableaux_cdcl.output))) + (deps ite-7_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_tableaux_cdcl.output))) (rule (target ite-7_tableaux.output) (deps (:input ite-7.ae)) @@ -181686,10 +178629,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_tableaux.output))) + (deps ite-7_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_tableaux.output))) (rule (target ite-7_legacy.output) (deps (:input ite-7.ae)) @@ -181706,10 +178650,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_legacy.output))) + (deps ite-7_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_legacy.output))) (rule (target ite-7_dolmen.output) (deps (:input ite-7.ae)) @@ -181726,10 +178671,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_dolmen.output))) + (deps ite-7_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_dolmen.output))) (rule (target ite-7_fpa.output) (deps (:input ite-7.ae)) @@ -181746,10 +178692,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-7.expected ite-7_fpa.output))) + (deps ite-7_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-7.expected ite-7_fpa.output))) (rule (target ite-6_ci_cdcl_no_minimal_bj.output) (deps (:input ite-6.ae)) @@ -181768,10 +178715,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_ci_cdcl_no_minimal_bj.output))) + (deps ite-6_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_ci_cdcl_no_minimal_bj.output))) (rule (target ite-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-6.ae)) @@ -181792,12 +178740,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-6.expected - ite-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-6.ae)) @@ -181817,12 +178764,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-6.expected - ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-6_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-6.ae)) @@ -181841,10 +178787,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-6_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-6.ae)) @@ -181863,12 +178810,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-6.expected - ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-6_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-6.ae)) @@ -181887,10 +178833,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-6_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-6_cdcl.output) (deps (:input ite-6.ae)) @@ -181908,10 +178855,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_cdcl.output))) + (deps ite-6_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_cdcl.output))) (rule (target ite-6_tableaux_cdcl.output) (deps (:input ite-6.ae)) @@ -181929,10 +178877,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_tableaux_cdcl.output))) + (deps ite-6_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_tableaux_cdcl.output))) (rule (target ite-6_tableaux.output) (deps (:input ite-6.ae)) @@ -181950,10 +178899,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_tableaux.output))) + (deps ite-6_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_tableaux.output))) (rule (target ite-6_legacy.output) (deps (:input ite-6.ae)) @@ -181970,10 +178920,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_legacy.output))) + (deps ite-6_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_legacy.output))) (rule (target ite-6_dolmen.output) (deps (:input ite-6.ae)) @@ -181990,10 +178941,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_dolmen.output))) + (deps ite-6_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_dolmen.output))) (rule (target ite-6_fpa.output) (deps (:input ite-6.ae)) @@ -182010,10 +178962,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-6.expected ite-6_fpa.output))) + (deps ite-6_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-6.expected ite-6_fpa.output))) (rule (target ite-5_ci_cdcl_no_minimal_bj.output) (deps (:input ite-5.ae)) @@ -182032,10 +178985,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_ci_cdcl_no_minimal_bj.output))) + (deps ite-5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_ci_cdcl_no_minimal_bj.output))) (rule (target ite-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-5.ae)) @@ -182056,12 +179010,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5.expected - ite-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-5.ae)) @@ -182081,12 +179034,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5.expected - ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-5.ae)) @@ -182105,10 +179057,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-5.ae)) @@ -182127,12 +179080,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5.expected - ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-5.ae)) @@ -182151,10 +179103,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-5_cdcl.output) (deps (:input ite-5.ae)) @@ -182172,10 +179125,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_cdcl.output))) + (deps ite-5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_cdcl.output))) (rule (target ite-5_tableaux_cdcl.output) (deps (:input ite-5.ae)) @@ -182193,10 +179147,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_tableaux_cdcl.output))) + (deps ite-5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_tableaux_cdcl.output))) (rule (target ite-5_tableaux.output) (deps (:input ite-5.ae)) @@ -182214,10 +179169,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_tableaux.output))) + (deps ite-5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_tableaux.output))) (rule (target ite-5_legacy.output) (deps (:input ite-5.ae)) @@ -182234,10 +179190,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_legacy.output))) + (deps ite-5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_legacy.output))) (rule (target ite-5_dolmen.output) (deps (:input ite-5.ae)) @@ -182254,10 +179211,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_dolmen.output))) + (deps ite-5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_dolmen.output))) (rule (target ite-5_fpa.output) (deps (:input ite-5.ae)) @@ -182274,10 +179232,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-5.expected ite-5_fpa.output))) + (deps ite-5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5.expected ite-5_fpa.output))) (rule (target ite-5-should-be-enhanced_ci_cdcl_no_minimal_bj.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182296,12 +179255,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_ci_cdcl_no_minimal_bj.output))) + (deps ite-5-should-be-enhanced_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_ci_cdcl_no_minimal_bj.output))) (rule (target ite-5-should-be-enhanced_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182322,12 +179280,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-5-should-be-enhanced_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182347,12 +179304,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-5-should-be-enhanced_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182371,12 +179327,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-5-should-be-enhanced_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182395,12 +179350,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-5-should-be-enhanced_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182419,12 +179373,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-5-should-be-enhanced_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-5-should-be-enhanced_cdcl.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182442,12 +179395,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_cdcl.output))) + (deps ite-5-should-be-enhanced_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_cdcl.output))) (rule (target ite-5-should-be-enhanced_tableaux_cdcl.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182465,12 +179417,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_tableaux_cdcl.output))) + (deps ite-5-should-be-enhanced_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_tableaux_cdcl.output))) (rule (target ite-5-should-be-enhanced_tableaux.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182488,12 +179439,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_tableaux.output))) + (deps ite-5-should-be-enhanced_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_tableaux.output))) (rule (target ite-5-should-be-enhanced_legacy.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182510,12 +179460,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_legacy.output))) + (deps ite-5-should-be-enhanced_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_legacy.output))) (rule (target ite-5-should-be-enhanced_dolmen.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182532,12 +179481,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_dolmen.output))) + (deps ite-5-should-be-enhanced_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_dolmen.output))) (rule (target ite-5-should-be-enhanced_fpa.output) (deps (:input ite-5-should-be-enhanced.ae)) @@ -182554,12 +179502,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - ite-5-should-be-enhanced.expected - ite-5-should-be-enhanced_fpa.output))) + (deps ite-5-should-be-enhanced_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-5-should-be-enhanced.expected ite-5-should-be-enhanced_fpa.output))) (rule (target ite-4-bugfix_ci_cdcl_no_minimal_bj.output) (deps (:input ite-4-bugfix.ae)) @@ -182578,10 +179525,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-4-bugfix.expected ite-4-bugfix_ci_cdcl_no_minimal_bj.output))) + (deps ite-4-bugfix_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_ci_cdcl_no_minimal_bj.output))) (rule (target ite-4-bugfix_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-4-bugfix.ae)) @@ -182602,12 +179550,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-4-bugfix.expected - ite-4-bugfix_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-4-bugfix_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-4-bugfix.ae)) @@ -182627,12 +179574,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-4-bugfix.expected - ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-4-bugfix_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-4-bugfix.ae)) @@ -182651,12 +179597,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-4-bugfix.expected - ite-4-bugfix_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-4-bugfix_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-4-bugfix.ae)) @@ -182675,12 +179620,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-4-bugfix.expected - ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-4-bugfix_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-4-bugfix.ae)) @@ -182699,12 +179643,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-4-bugfix.expected - ite-4-bugfix_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-4-bugfix_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-4-bugfix_cdcl.output) (deps (:input ite-4-bugfix.ae)) @@ -182722,10 +179665,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-4-bugfix.expected ite-4-bugfix_cdcl.output))) + (deps ite-4-bugfix_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_cdcl.output))) (rule (target ite-4-bugfix_tableaux_cdcl.output) (deps (:input ite-4-bugfix.ae)) @@ -182743,10 +179687,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-4-bugfix.expected ite-4-bugfix_tableaux_cdcl.output))) + (deps ite-4-bugfix_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_tableaux_cdcl.output))) (rule (target ite-4-bugfix_tableaux.output) (deps (:input ite-4-bugfix.ae)) @@ -182764,10 +179709,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-4-bugfix.expected ite-4-bugfix_tableaux.output))) + (deps ite-4-bugfix_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_tableaux.output))) (rule (target ite-4-bugfix_legacy.output) (deps (:input ite-4-bugfix.ae)) @@ -182784,10 +179730,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-4-bugfix.expected ite-4-bugfix_legacy.output))) + (deps ite-4-bugfix_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_legacy.output))) (rule (target ite-4-bugfix_dolmen.output) (deps (:input ite-4-bugfix.ae)) @@ -182804,10 +179751,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-4-bugfix.expected ite-4-bugfix_dolmen.output))) + (deps ite-4-bugfix_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_dolmen.output))) (rule (target ite-4-bugfix_fpa.output) (deps (:input ite-4-bugfix.ae)) @@ -182824,10 +179772,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-4-bugfix.expected ite-4-bugfix_fpa.output))) + (deps ite-4-bugfix_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-4-bugfix.expected ite-4-bugfix_fpa.output))) (rule (target ite-3_ci_cdcl_no_minimal_bj.output) (deps (:input ite-3.ae)) @@ -182846,10 +179795,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_ci_cdcl_no_minimal_bj.output))) + (deps ite-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_ci_cdcl_no_minimal_bj.output))) (rule (target ite-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-3.ae)) @@ -182870,12 +179820,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-3.expected - ite-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-3.ae)) @@ -182895,12 +179844,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-3.expected - ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-3.ae)) @@ -182919,10 +179867,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-3.ae)) @@ -182941,12 +179890,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-3.expected - ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-3.ae)) @@ -182965,10 +179913,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-3_cdcl.output) (deps (:input ite-3.ae)) @@ -182986,10 +179935,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_cdcl.output))) + (deps ite-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_cdcl.output))) (rule (target ite-3_tableaux_cdcl.output) (deps (:input ite-3.ae)) @@ -183007,10 +179957,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_tableaux_cdcl.output))) + (deps ite-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_tableaux_cdcl.output))) (rule (target ite-3_tableaux.output) (deps (:input ite-3.ae)) @@ -183028,10 +179979,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_tableaux.output))) + (deps ite-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_tableaux.output))) (rule (target ite-3_legacy.output) (deps (:input ite-3.ae)) @@ -183048,10 +180000,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_legacy.output))) + (deps ite-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_legacy.output))) (rule (target ite-3_dolmen.output) (deps (:input ite-3.ae)) @@ -183068,10 +180021,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_dolmen.output))) + (deps ite-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_dolmen.output))) (rule (target ite-3_fpa.output) (deps (:input ite-3.ae)) @@ -183088,10 +180042,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-3.expected ite-3_fpa.output))) + (deps ite-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-3.expected ite-3_fpa.output))) (rule (target ite-2_ci_cdcl_no_minimal_bj.output) (deps (:input ite-2.ae)) @@ -183110,10 +180065,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_ci_cdcl_no_minimal_bj.output))) + (deps ite-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_ci_cdcl_no_minimal_bj.output))) (rule (target ite-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-2.ae)) @@ -183134,12 +180090,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-2.expected - ite-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-2.ae)) @@ -183159,12 +180114,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-2.expected - ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-2.ae)) @@ -183183,10 +180137,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-2.ae)) @@ -183205,12 +180160,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-2.expected - ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-2.ae)) @@ -183229,10 +180183,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-2_cdcl.output) (deps (:input ite-2.ae)) @@ -183250,10 +180205,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_cdcl.output))) + (deps ite-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_cdcl.output))) (rule (target ite-2_tableaux_cdcl.output) (deps (:input ite-2.ae)) @@ -183271,10 +180227,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_tableaux_cdcl.output))) + (deps ite-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_tableaux_cdcl.output))) (rule (target ite-2_tableaux.output) (deps (:input ite-2.ae)) @@ -183292,10 +180249,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_tableaux.output))) + (deps ite-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_tableaux.output))) (rule (target ite-2_legacy.output) (deps (:input ite-2.ae)) @@ -183312,10 +180270,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_legacy.output))) + (deps ite-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_legacy.output))) (rule (target ite-2_dolmen.output) (deps (:input ite-2.ae)) @@ -183332,10 +180291,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_dolmen.output))) + (deps ite-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_dolmen.output))) (rule (target ite-2_fpa.output) (deps (:input ite-2.ae)) @@ -183352,10 +180312,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-2.expected ite-2_fpa.output))) + (deps ite-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-2.expected ite-2_fpa.output))) (rule (target ite-1_ci_cdcl_no_minimal_bj.output) (deps (:input ite-1.ae)) @@ -183374,10 +180335,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_ci_cdcl_no_minimal_bj.output))) + (deps ite-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_ci_cdcl_no_minimal_bj.output))) (rule (target ite-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-1.ae)) @@ -183398,12 +180360,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-1.expected - ite-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input ite-1.ae)) @@ -183423,12 +180384,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-1.expected - ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target ite-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input ite-1.ae)) @@ -183447,10 +180407,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps ite-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input ite-1.ae)) @@ -183469,12 +180430,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - ite-1.expected - ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target ite-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input ite-1.ae)) @@ -183493,10 +180453,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps ite-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target ite-1_cdcl.output) (deps (:input ite-1.ae)) @@ -183514,10 +180475,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_cdcl.output))) + (deps ite-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_cdcl.output))) (rule (target ite-1_tableaux_cdcl.output) (deps (:input ite-1.ae)) @@ -183535,10 +180497,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_tableaux_cdcl.output))) + (deps ite-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_tableaux_cdcl.output))) (rule (target ite-1_tableaux.output) (deps (:input ite-1.ae)) @@ -183556,10 +180519,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_tableaux.output))) + (deps ite-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_tableaux.output))) (rule (target ite-1_legacy.output) (deps (:input ite-1.ae)) @@ -183576,10 +180540,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_legacy.output))) + (deps ite-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_legacy.output))) (rule (target ite-1_dolmen.output) (deps (:input ite-1.ae)) @@ -183596,10 +180561,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_dolmen.output))) + (deps ite-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_dolmen.output))) (rule (target ite-1_fpa.output) (deps (:input ite-1.ae)) @@ -183616,10 +180582,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff ite-1.expected ite-1_fpa.output)))) + (deps ite-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff ite-1.expected ite-1_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -183643,12 +180610,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let016.expected - testfile-let016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let016.ae)) @@ -183669,12 +180635,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let016.expected - testfile-let016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let016.ae)) @@ -183694,12 +180659,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let016.expected - testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let016.ae)) @@ -183718,12 +180682,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let016.expected - testfile-let016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let016.ae)) @@ -183742,12 +180705,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let016.expected - testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let016.ae)) @@ -183766,12 +180728,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let016.expected - testfile-let016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let016_cdcl.output) (deps (:input testfile-let016.ae)) @@ -183789,10 +180750,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let016.expected testfile-let016_cdcl.output))) + (deps testfile-let016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_cdcl.output))) (rule (target testfile-let016_tableaux_cdcl.output) (deps (:input testfile-let016.ae)) @@ -183810,10 +180772,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let016.expected testfile-let016_tableaux_cdcl.output))) + (deps testfile-let016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_tableaux_cdcl.output))) (rule (target testfile-let016_tableaux.output) (deps (:input testfile-let016.ae)) @@ -183831,10 +180794,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let016.expected testfile-let016_tableaux.output))) + (deps testfile-let016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_tableaux.output))) (rule (target testfile-let016_legacy.output) (deps (:input testfile-let016.ae)) @@ -183851,10 +180815,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let016.expected testfile-let016_legacy.output))) + (deps testfile-let016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_legacy.output))) (rule (target testfile-let016_dolmen.output) (deps (:input testfile-let016.ae)) @@ -183871,10 +180836,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let016.expected testfile-let016_dolmen.output))) + (deps testfile-let016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_dolmen.output))) (rule (target testfile-let016_fpa.output) (deps (:input testfile-let016.ae)) @@ -183891,10 +180857,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let016.expected testfile-let016_fpa.output))) + (deps testfile-let016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let016.expected testfile-let016_fpa.output))) (rule (target testfile-let015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let015.ae)) @@ -183913,12 +180880,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let015.expected - testfile-let015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let015.ae)) @@ -183939,12 +180905,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let015.expected - testfile-let015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let015.ae)) @@ -183964,12 +180929,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let015.expected - testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let015.ae)) @@ -183988,12 +180952,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let015.expected - testfile-let015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let015.ae)) @@ -184012,12 +180975,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let015.expected - testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let015.ae)) @@ -184036,12 +180998,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let015.expected - testfile-let015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let015_cdcl.output) (deps (:input testfile-let015.ae)) @@ -184059,10 +181020,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let015.expected testfile-let015_cdcl.output))) + (deps testfile-let015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_cdcl.output))) (rule (target testfile-let015_tableaux_cdcl.output) (deps (:input testfile-let015.ae)) @@ -184080,10 +181042,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let015.expected testfile-let015_tableaux_cdcl.output))) + (deps testfile-let015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_tableaux_cdcl.output))) (rule (target testfile-let015_tableaux.output) (deps (:input testfile-let015.ae)) @@ -184101,10 +181064,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let015.expected testfile-let015_tableaux.output))) + (deps testfile-let015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_tableaux.output))) (rule (target testfile-let015_legacy.output) (deps (:input testfile-let015.ae)) @@ -184121,10 +181085,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let015.expected testfile-let015_legacy.output))) + (deps testfile-let015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_legacy.output))) (rule (target testfile-let015_dolmen.output) (deps (:input testfile-let015.ae)) @@ -184141,10 +181106,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let015.expected testfile-let015_dolmen.output))) + (deps testfile-let015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_dolmen.output))) (rule (target testfile-let015_fpa.output) (deps (:input testfile-let015.ae)) @@ -184161,10 +181127,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let015.expected testfile-let015_fpa.output))) + (deps testfile-let015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let015.expected testfile-let015_fpa.output))) (rule (target testfile-let014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let014.ae)) @@ -184183,12 +181150,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let014.expected - testfile-let014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let014.ae)) @@ -184209,12 +181175,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let014.expected - testfile-let014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let014.ae)) @@ -184234,12 +181199,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let014.expected - testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let014.ae)) @@ -184258,12 +181222,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let014.expected - testfile-let014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let014.ae)) @@ -184282,12 +181245,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let014.expected - testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let014.ae)) @@ -184306,12 +181268,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let014.expected - testfile-let014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let014_cdcl.output) (deps (:input testfile-let014.ae)) @@ -184329,10 +181290,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let014.expected testfile-let014_cdcl.output))) + (deps testfile-let014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_cdcl.output))) (rule (target testfile-let014_tableaux_cdcl.output) (deps (:input testfile-let014.ae)) @@ -184350,10 +181312,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let014.expected testfile-let014_tableaux_cdcl.output))) + (deps testfile-let014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_tableaux_cdcl.output))) (rule (target testfile-let014_tableaux.output) (deps (:input testfile-let014.ae)) @@ -184371,10 +181334,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let014.expected testfile-let014_tableaux.output))) + (deps testfile-let014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_tableaux.output))) (rule (target testfile-let014_legacy.output) (deps (:input testfile-let014.ae)) @@ -184391,10 +181355,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let014.expected testfile-let014_legacy.output))) + (deps testfile-let014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_legacy.output))) (rule (target testfile-let014_dolmen.output) (deps (:input testfile-let014.ae)) @@ -184411,10 +181376,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let014.expected testfile-let014_dolmen.output))) + (deps testfile-let014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_dolmen.output))) (rule (target testfile-let014_fpa.output) (deps (:input testfile-let014.ae)) @@ -184431,10 +181397,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let014.expected testfile-let014_fpa.output))) + (deps testfile-let014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let014.expected testfile-let014_fpa.output))) (rule (target testfile-let013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let013.ae)) @@ -184453,12 +181420,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let013.expected - testfile-let013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let013.ae)) @@ -184479,12 +181445,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let013.expected - testfile-let013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let013.ae)) @@ -184504,12 +181469,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let013.expected - testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let013.ae)) @@ -184528,12 +181492,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let013.expected - testfile-let013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let013.ae)) @@ -184552,12 +181515,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let013.expected - testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let013.ae)) @@ -184576,12 +181538,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let013.expected - testfile-let013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let013_cdcl.output) (deps (:input testfile-let013.ae)) @@ -184599,10 +181560,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let013.expected testfile-let013_cdcl.output))) + (deps testfile-let013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_cdcl.output))) (rule (target testfile-let013_tableaux_cdcl.output) (deps (:input testfile-let013.ae)) @@ -184620,10 +181582,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let013.expected testfile-let013_tableaux_cdcl.output))) + (deps testfile-let013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_tableaux_cdcl.output))) (rule (target testfile-let013_tableaux.output) (deps (:input testfile-let013.ae)) @@ -184641,10 +181604,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let013.expected testfile-let013_tableaux.output))) + (deps testfile-let013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_tableaux.output))) (rule (target testfile-let013_legacy.output) (deps (:input testfile-let013.ae)) @@ -184661,10 +181625,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let013.expected testfile-let013_legacy.output))) + (deps testfile-let013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_legacy.output))) (rule (target testfile-let013_dolmen.output) (deps (:input testfile-let013.ae)) @@ -184681,10 +181646,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let013.expected testfile-let013_dolmen.output))) + (deps testfile-let013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_dolmen.output))) (rule (target testfile-let013_fpa.output) (deps (:input testfile-let013.ae)) @@ -184701,10 +181667,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let013.expected testfile-let013_fpa.output))) + (deps testfile-let013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let013.expected testfile-let013_fpa.output))) (rule (target testfile-let012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let012.ae)) @@ -184723,12 +181690,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let012.expected - testfile-let012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let012.ae)) @@ -184749,12 +181715,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let012.expected - testfile-let012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let012.ae)) @@ -184774,12 +181739,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let012.expected - testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let012.ae)) @@ -184798,12 +181762,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let012.expected - testfile-let012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let012.ae)) @@ -184822,12 +181785,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let012.expected - testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let012.ae)) @@ -184846,12 +181808,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let012.expected - testfile-let012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let012_cdcl.output) (deps (:input testfile-let012.ae)) @@ -184869,10 +181830,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let012.expected testfile-let012_cdcl.output))) + (deps testfile-let012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_cdcl.output))) (rule (target testfile-let012_tableaux_cdcl.output) (deps (:input testfile-let012.ae)) @@ -184890,10 +181852,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let012.expected testfile-let012_tableaux_cdcl.output))) + (deps testfile-let012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_tableaux_cdcl.output))) (rule (target testfile-let012_tableaux.output) (deps (:input testfile-let012.ae)) @@ -184911,10 +181874,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let012.expected testfile-let012_tableaux.output))) + (deps testfile-let012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_tableaux.output))) (rule (target testfile-let012_legacy.output) (deps (:input testfile-let012.ae)) @@ -184931,10 +181895,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let012.expected testfile-let012_legacy.output))) + (deps testfile-let012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_legacy.output))) (rule (target testfile-let012_dolmen.output) (deps (:input testfile-let012.ae)) @@ -184951,10 +181916,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let012.expected testfile-let012_dolmen.output))) + (deps testfile-let012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_dolmen.output))) (rule (target testfile-let012_fpa.output) (deps (:input testfile-let012.ae)) @@ -184971,10 +181937,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let012.expected testfile-let012_fpa.output))) + (deps testfile-let012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let012.expected testfile-let012_fpa.output))) (rule (target testfile-let011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let011.ae)) @@ -184993,12 +181960,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let011.expected - testfile-let011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let011.ae)) @@ -185019,12 +181985,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let011.expected - testfile-let011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let011.ae)) @@ -185044,12 +182009,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let011.expected - testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let011.ae)) @@ -185068,12 +182032,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let011.expected - testfile-let011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let011.ae)) @@ -185092,12 +182055,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let011.expected - testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let011.ae)) @@ -185116,12 +182078,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let011.expected - testfile-let011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let011_cdcl.output) (deps (:input testfile-let011.ae)) @@ -185139,10 +182100,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let011.expected testfile-let011_cdcl.output))) + (deps testfile-let011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_cdcl.output))) (rule (target testfile-let011_tableaux_cdcl.output) (deps (:input testfile-let011.ae)) @@ -185160,10 +182122,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let011.expected testfile-let011_tableaux_cdcl.output))) + (deps testfile-let011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_tableaux_cdcl.output))) (rule (target testfile-let011_tableaux.output) (deps (:input testfile-let011.ae)) @@ -185181,10 +182144,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let011.expected testfile-let011_tableaux.output))) + (deps testfile-let011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_tableaux.output))) (rule (target testfile-let011_legacy.output) (deps (:input testfile-let011.ae)) @@ -185201,10 +182165,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let011.expected testfile-let011_legacy.output))) + (deps testfile-let011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_legacy.output))) (rule (target testfile-let011_dolmen.output) (deps (:input testfile-let011.ae)) @@ -185221,10 +182186,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let011.expected testfile-let011_dolmen.output))) + (deps testfile-let011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_dolmen.output))) (rule (target testfile-let011_fpa.output) (deps (:input testfile-let011.ae)) @@ -185241,10 +182207,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let011.expected testfile-let011_fpa.output))) + (deps testfile-let011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let011.expected testfile-let011_fpa.output))) (rule (target testfile-let010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let010.ae)) @@ -185263,12 +182230,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let010.expected - testfile-let010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let010.ae)) @@ -185289,12 +182255,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let010.expected - testfile-let010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let010.ae)) @@ -185314,12 +182279,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let010.expected - testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let010.ae)) @@ -185338,12 +182302,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let010.expected - testfile-let010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let010.ae)) @@ -185362,12 +182325,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let010.expected - testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let010.ae)) @@ -185386,12 +182348,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let010.expected - testfile-let010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let010_cdcl.output) (deps (:input testfile-let010.ae)) @@ -185409,10 +182370,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let010.expected testfile-let010_cdcl.output))) + (deps testfile-let010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_cdcl.output))) (rule (target testfile-let010_tableaux_cdcl.output) (deps (:input testfile-let010.ae)) @@ -185430,10 +182392,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let010.expected testfile-let010_tableaux_cdcl.output))) + (deps testfile-let010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_tableaux_cdcl.output))) (rule (target testfile-let010_tableaux.output) (deps (:input testfile-let010.ae)) @@ -185451,10 +182414,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let010.expected testfile-let010_tableaux.output))) + (deps testfile-let010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_tableaux.output))) (rule (target testfile-let010_legacy.output) (deps (:input testfile-let010.ae)) @@ -185471,10 +182435,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let010.expected testfile-let010_legacy.output))) + (deps testfile-let010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_legacy.output))) (rule (target testfile-let010_dolmen.output) (deps (:input testfile-let010.ae)) @@ -185491,10 +182456,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let010.expected testfile-let010_dolmen.output))) + (deps testfile-let010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_dolmen.output))) (rule (target testfile-let010_fpa.output) (deps (:input testfile-let010.ae)) @@ -185511,10 +182477,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let010.expected testfile-let010_fpa.output))) + (deps testfile-let010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let010.expected testfile-let010_fpa.output))) (rule (target testfile-let009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let009.ae)) @@ -185533,12 +182500,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let009.expected - testfile-let009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let009.ae)) @@ -185559,12 +182525,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let009.expected - testfile-let009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let009.ae)) @@ -185584,12 +182549,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let009.expected - testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let009.ae)) @@ -185608,12 +182572,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let009.expected - testfile-let009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let009.ae)) @@ -185632,12 +182595,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let009.expected - testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let009.ae)) @@ -185656,12 +182618,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let009.expected - testfile-let009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let009_cdcl.output) (deps (:input testfile-let009.ae)) @@ -185679,10 +182640,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let009.expected testfile-let009_cdcl.output))) + (deps testfile-let009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_cdcl.output))) (rule (target testfile-let009_tableaux_cdcl.output) (deps (:input testfile-let009.ae)) @@ -185700,10 +182662,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let009.expected testfile-let009_tableaux_cdcl.output))) + (deps testfile-let009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_tableaux_cdcl.output))) (rule (target testfile-let009_tableaux.output) (deps (:input testfile-let009.ae)) @@ -185721,10 +182684,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let009.expected testfile-let009_tableaux.output))) + (deps testfile-let009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_tableaux.output))) (rule (target testfile-let009_legacy.output) (deps (:input testfile-let009.ae)) @@ -185741,10 +182705,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let009.expected testfile-let009_legacy.output))) + (deps testfile-let009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_legacy.output))) (rule (target testfile-let009_dolmen.output) (deps (:input testfile-let009.ae)) @@ -185761,10 +182726,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let009.expected testfile-let009_dolmen.output))) + (deps testfile-let009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_dolmen.output))) (rule (target testfile-let009_fpa.output) (deps (:input testfile-let009.ae)) @@ -185781,10 +182747,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let009.expected testfile-let009_fpa.output))) + (deps testfile-let009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let009.expected testfile-let009_fpa.output))) (rule (target testfile-let008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let008.ae)) @@ -185803,12 +182770,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let008.expected - testfile-let008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let008.ae)) @@ -185829,12 +182795,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let008.expected - testfile-let008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let008.ae)) @@ -185854,12 +182819,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let008.expected - testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let008.ae)) @@ -185878,12 +182842,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let008.expected - testfile-let008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let008.ae)) @@ -185902,12 +182865,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let008.expected - testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let008.ae)) @@ -185926,12 +182888,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let008.expected - testfile-let008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let008_cdcl.output) (deps (:input testfile-let008.ae)) @@ -185949,10 +182910,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let008.expected testfile-let008_cdcl.output))) + (deps testfile-let008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_cdcl.output))) (rule (target testfile-let008_tableaux_cdcl.output) (deps (:input testfile-let008.ae)) @@ -185970,10 +182932,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let008.expected testfile-let008_tableaux_cdcl.output))) + (deps testfile-let008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_tableaux_cdcl.output))) (rule (target testfile-let008_tableaux.output) (deps (:input testfile-let008.ae)) @@ -185991,10 +182954,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let008.expected testfile-let008_tableaux.output))) + (deps testfile-let008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_tableaux.output))) (rule (target testfile-let008_legacy.output) (deps (:input testfile-let008.ae)) @@ -186011,10 +182975,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let008.expected testfile-let008_legacy.output))) + (deps testfile-let008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_legacy.output))) (rule (target testfile-let008_dolmen.output) (deps (:input testfile-let008.ae)) @@ -186031,10 +182996,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let008.expected testfile-let008_dolmen.output))) + (deps testfile-let008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_dolmen.output))) (rule (target testfile-let008_fpa.output) (deps (:input testfile-let008.ae)) @@ -186051,10 +183017,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let008.expected testfile-let008_fpa.output))) + (deps testfile-let008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let008.expected testfile-let008_fpa.output))) (rule (target testfile-let007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let007.ae)) @@ -186073,12 +183040,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let007.expected - testfile-let007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let007.ae)) @@ -186099,12 +183065,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let007.expected - testfile-let007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let007.ae)) @@ -186124,12 +183089,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let007.expected - testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let007.ae)) @@ -186148,12 +183112,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let007.expected - testfile-let007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let007.ae)) @@ -186172,12 +183135,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let007.expected - testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let007.ae)) @@ -186196,12 +183158,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let007.expected - testfile-let007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let007_cdcl.output) (deps (:input testfile-let007.ae)) @@ -186219,10 +183180,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let007.expected testfile-let007_cdcl.output))) + (deps testfile-let007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_cdcl.output))) (rule (target testfile-let007_tableaux_cdcl.output) (deps (:input testfile-let007.ae)) @@ -186240,10 +183202,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let007.expected testfile-let007_tableaux_cdcl.output))) + (deps testfile-let007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_tableaux_cdcl.output))) (rule (target testfile-let007_tableaux.output) (deps (:input testfile-let007.ae)) @@ -186261,10 +183224,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let007.expected testfile-let007_tableaux.output))) + (deps testfile-let007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_tableaux.output))) (rule (target testfile-let007_legacy.output) (deps (:input testfile-let007.ae)) @@ -186281,10 +183245,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let007.expected testfile-let007_legacy.output))) + (deps testfile-let007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_legacy.output))) (rule (target testfile-let007_dolmen.output) (deps (:input testfile-let007.ae)) @@ -186301,10 +183266,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let007.expected testfile-let007_dolmen.output))) + (deps testfile-let007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_dolmen.output))) (rule (target testfile-let007_fpa.output) (deps (:input testfile-let007.ae)) @@ -186321,10 +183287,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let007.expected testfile-let007_fpa.output))) + (deps testfile-let007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let007.expected testfile-let007_fpa.output))) (rule (target testfile-let006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let006.ae)) @@ -186343,12 +183310,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let006.expected - testfile-let006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let006.ae)) @@ -186369,12 +183335,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let006.expected - testfile-let006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let006.ae)) @@ -186394,12 +183359,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let006.expected - testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let006.ae)) @@ -186418,12 +183382,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let006.expected - testfile-let006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let006.ae)) @@ -186442,12 +183405,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let006.expected - testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let006.ae)) @@ -186466,12 +183428,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let006.expected - testfile-let006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let006_cdcl.output) (deps (:input testfile-let006.ae)) @@ -186489,10 +183450,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let006.expected testfile-let006_cdcl.output))) + (deps testfile-let006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_cdcl.output))) (rule (target testfile-let006_tableaux_cdcl.output) (deps (:input testfile-let006.ae)) @@ -186510,10 +183472,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let006.expected testfile-let006_tableaux_cdcl.output))) + (deps testfile-let006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_tableaux_cdcl.output))) (rule (target testfile-let006_tableaux.output) (deps (:input testfile-let006.ae)) @@ -186531,10 +183494,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let006.expected testfile-let006_tableaux.output))) + (deps testfile-let006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_tableaux.output))) (rule (target testfile-let006_legacy.output) (deps (:input testfile-let006.ae)) @@ -186551,10 +183515,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let006.expected testfile-let006_legacy.output))) + (deps testfile-let006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_legacy.output))) (rule (target testfile-let006_dolmen.output) (deps (:input testfile-let006.ae)) @@ -186571,10 +183536,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let006.expected testfile-let006_dolmen.output))) + (deps testfile-let006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_dolmen.output))) (rule (target testfile-let006_fpa.output) (deps (:input testfile-let006.ae)) @@ -186591,10 +183557,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let006.expected testfile-let006_fpa.output))) + (deps testfile-let006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let006.expected testfile-let006_fpa.output))) (rule (target testfile-let005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let005.ae)) @@ -186613,12 +183580,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let005.expected - testfile-let005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let005.ae)) @@ -186639,12 +183605,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let005.expected - testfile-let005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let005.ae)) @@ -186664,12 +183629,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let005.expected - testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let005.ae)) @@ -186688,12 +183652,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let005.expected - testfile-let005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let005.ae)) @@ -186712,12 +183675,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let005.expected - testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let005.ae)) @@ -186736,12 +183698,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let005.expected - testfile-let005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let005_cdcl.output) (deps (:input testfile-let005.ae)) @@ -186759,10 +183720,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let005.expected testfile-let005_cdcl.output))) + (deps testfile-let005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_cdcl.output))) (rule (target testfile-let005_tableaux_cdcl.output) (deps (:input testfile-let005.ae)) @@ -186780,10 +183742,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let005.expected testfile-let005_tableaux_cdcl.output))) + (deps testfile-let005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_tableaux_cdcl.output))) (rule (target testfile-let005_tableaux.output) (deps (:input testfile-let005.ae)) @@ -186801,10 +183764,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let005.expected testfile-let005_tableaux.output))) + (deps testfile-let005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_tableaux.output))) (rule (target testfile-let005_legacy.output) (deps (:input testfile-let005.ae)) @@ -186821,10 +183785,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let005.expected testfile-let005_legacy.output))) + (deps testfile-let005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_legacy.output))) (rule (target testfile-let005_dolmen.output) (deps (:input testfile-let005.ae)) @@ -186841,10 +183806,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let005.expected testfile-let005_dolmen.output))) + (deps testfile-let005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_dolmen.output))) (rule (target testfile-let005_fpa.output) (deps (:input testfile-let005.ae)) @@ -186861,10 +183827,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let005.expected testfile-let005_fpa.output))) + (deps testfile-let005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let005.expected testfile-let005_fpa.output))) (rule (target testfile-let004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let004.ae)) @@ -186883,12 +183850,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let004.expected - testfile-let004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let004.ae)) @@ -186909,12 +183875,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let004.expected - testfile-let004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let004.ae)) @@ -186934,12 +183899,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let004.expected - testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let004.ae)) @@ -186958,12 +183922,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let004.expected - testfile-let004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let004.ae)) @@ -186982,12 +183945,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let004.expected - testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let004.ae)) @@ -187006,12 +183968,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let004.expected - testfile-let004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let004_cdcl.output) (deps (:input testfile-let004.ae)) @@ -187029,10 +183990,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let004.expected testfile-let004_cdcl.output))) + (deps testfile-let004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_cdcl.output))) (rule (target testfile-let004_tableaux_cdcl.output) (deps (:input testfile-let004.ae)) @@ -187050,10 +184012,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let004.expected testfile-let004_tableaux_cdcl.output))) + (deps testfile-let004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_tableaux_cdcl.output))) (rule (target testfile-let004_tableaux.output) (deps (:input testfile-let004.ae)) @@ -187071,10 +184034,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let004.expected testfile-let004_tableaux.output))) + (deps testfile-let004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_tableaux.output))) (rule (target testfile-let004_legacy.output) (deps (:input testfile-let004.ae)) @@ -187091,10 +184055,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let004.expected testfile-let004_legacy.output))) + (deps testfile-let004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_legacy.output))) (rule (target testfile-let004_dolmen.output) (deps (:input testfile-let004.ae)) @@ -187111,10 +184076,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let004.expected testfile-let004_dolmen.output))) + (deps testfile-let004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_dolmen.output))) (rule (target testfile-let004_fpa.output) (deps (:input testfile-let004.ae)) @@ -187131,10 +184097,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let004.expected testfile-let004_fpa.output))) + (deps testfile-let004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let004.expected testfile-let004_fpa.output))) (rule (target testfile-let003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let003.ae)) @@ -187153,12 +184120,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let003.expected - testfile-let003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let003.ae)) @@ -187179,12 +184145,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let003.expected - testfile-let003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let003.ae)) @@ -187204,12 +184169,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let003.expected - testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let003.ae)) @@ -187228,12 +184192,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let003.expected - testfile-let003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let003.ae)) @@ -187252,12 +184215,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let003.expected - testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let003.ae)) @@ -187276,12 +184238,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let003.expected - testfile-let003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let003_cdcl.output) (deps (:input testfile-let003.ae)) @@ -187299,10 +184260,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let003.expected testfile-let003_cdcl.output))) + (deps testfile-let003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_cdcl.output))) (rule (target testfile-let003_tableaux_cdcl.output) (deps (:input testfile-let003.ae)) @@ -187320,10 +184282,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let003.expected testfile-let003_tableaux_cdcl.output))) + (deps testfile-let003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_tableaux_cdcl.output))) (rule (target testfile-let003_tableaux.output) (deps (:input testfile-let003.ae)) @@ -187341,10 +184304,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let003.expected testfile-let003_tableaux.output))) + (deps testfile-let003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_tableaux.output))) (rule (target testfile-let003_legacy.output) (deps (:input testfile-let003.ae)) @@ -187361,10 +184325,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let003.expected testfile-let003_legacy.output))) + (deps testfile-let003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_legacy.output))) (rule (target testfile-let003_dolmen.output) (deps (:input testfile-let003.ae)) @@ -187381,10 +184346,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let003.expected testfile-let003_dolmen.output))) + (deps testfile-let003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_dolmen.output))) (rule (target testfile-let003_fpa.output) (deps (:input testfile-let003.ae)) @@ -187401,10 +184367,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let003.expected testfile-let003_fpa.output))) + (deps testfile-let003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let003.expected testfile-let003_fpa.output))) (rule (target testfile-let002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let002.ae)) @@ -187423,12 +184390,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let002.expected - testfile-let002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let002.ae)) @@ -187449,12 +184415,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let002.expected - testfile-let002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let002.ae)) @@ -187474,12 +184439,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let002.expected - testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let002.ae)) @@ -187498,12 +184462,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let002.expected - testfile-let002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let002.ae)) @@ -187522,12 +184485,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let002.expected - testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let002.ae)) @@ -187546,12 +184508,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let002.expected - testfile-let002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let002_cdcl.output) (deps (:input testfile-let002.ae)) @@ -187569,10 +184530,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let002.expected testfile-let002_cdcl.output))) + (deps testfile-let002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_cdcl.output))) (rule (target testfile-let002_tableaux_cdcl.output) (deps (:input testfile-let002.ae)) @@ -187590,10 +184552,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let002.expected testfile-let002_tableaux_cdcl.output))) + (deps testfile-let002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_tableaux_cdcl.output))) (rule (target testfile-let002_tableaux.output) (deps (:input testfile-let002.ae)) @@ -187611,10 +184574,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let002.expected testfile-let002_tableaux.output))) + (deps testfile-let002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_tableaux.output))) (rule (target testfile-let002_legacy.output) (deps (:input testfile-let002.ae)) @@ -187631,10 +184595,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let002.expected testfile-let002_legacy.output))) + (deps testfile-let002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_legacy.output))) (rule (target testfile-let002_dolmen.output) (deps (:input testfile-let002.ae)) @@ -187651,10 +184616,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let002.expected testfile-let002_dolmen.output))) + (deps testfile-let002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_dolmen.output))) (rule (target testfile-let002_fpa.output) (deps (:input testfile-let002.ae)) @@ -187671,10 +184637,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let002.expected testfile-let002_fpa.output))) + (deps testfile-let002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let002.expected testfile-let002_fpa.output))) (rule (target testfile-let001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-let001.ae)) @@ -187693,12 +184660,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let001.expected - testfile-let001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-let001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-let001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let001.ae)) @@ -187719,12 +184685,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let001.expected - testfile-let001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-let001.ae)) @@ -187744,12 +184709,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let001.expected - testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-let001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-let001.ae)) @@ -187768,12 +184732,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let001.expected - testfile-let001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-let001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-let001.ae)) @@ -187792,12 +184755,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let001.expected - testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-let001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-let001.ae)) @@ -187816,12 +184778,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-let001.expected - testfile-let001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-let001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-let001_cdcl.output) (deps (:input testfile-let001.ae)) @@ -187839,10 +184800,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let001.expected testfile-let001_cdcl.output))) + (deps testfile-let001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_cdcl.output))) (rule (target testfile-let001_tableaux_cdcl.output) (deps (:input testfile-let001.ae)) @@ -187860,10 +184822,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let001.expected testfile-let001_tableaux_cdcl.output))) + (deps testfile-let001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_tableaux_cdcl.output))) (rule (target testfile-let001_tableaux.output) (deps (:input testfile-let001.ae)) @@ -187881,10 +184844,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let001.expected testfile-let001_tableaux.output))) + (deps testfile-let001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_tableaux.output))) (rule (target testfile-let001_legacy.output) (deps (:input testfile-let001.ae)) @@ -187901,10 +184865,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let001.expected testfile-let001_legacy.output))) + (deps testfile-let001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_legacy.output))) (rule (target testfile-let001_dolmen.output) (deps (:input testfile-let001.ae)) @@ -187921,10 +184886,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let001.expected testfile-let001_dolmen.output))) + (deps testfile-let001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_dolmen.output))) (rule (target testfile-let001_fpa.output) (deps (:input testfile-let001.ae)) @@ -187941,10 +184907,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-let001.expected testfile-let001_fpa.output))) + (deps testfile-let001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-let001.expected testfile-let001_fpa.output))) (rule (target multi-8_ci_cdcl_no_minimal_bj.output) (deps (:input multi-8.ae)) @@ -187963,10 +184930,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_ci_cdcl_no_minimal_bj.output))) + (deps multi-8_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_ci_cdcl_no_minimal_bj.output))) (rule (target multi-8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-8.ae)) @@ -187987,12 +184955,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-8.expected - multi-8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-8.ae)) @@ -188012,12 +184979,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-8.expected - multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-8_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-8.ae)) @@ -188036,12 +185002,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-8.expected - multi-8_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-8_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-8.ae)) @@ -188060,12 +185025,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-8.expected - multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-8_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-8.ae)) @@ -188084,10 +185048,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-8_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-8_cdcl.output) (deps (:input multi-8.ae)) @@ -188105,10 +185070,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_cdcl.output))) + (deps multi-8_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_cdcl.output))) (rule (target multi-8_tableaux_cdcl.output) (deps (:input multi-8.ae)) @@ -188126,10 +185092,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_tableaux_cdcl.output))) + (deps multi-8_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_tableaux_cdcl.output))) (rule (target multi-8_tableaux.output) (deps (:input multi-8.ae)) @@ -188147,10 +185114,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_tableaux.output))) + (deps multi-8_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_tableaux.output))) (rule (target multi-8_legacy.output) (deps (:input multi-8.ae)) @@ -188167,10 +185135,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_legacy.output))) + (deps multi-8_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_legacy.output))) (rule (target multi-8_dolmen.output) (deps (:input multi-8.ae)) @@ -188187,10 +185156,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_dolmen.output))) + (deps multi-8_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_dolmen.output))) (rule (target multi-8_fpa.output) (deps (:input multi-8.ae)) @@ -188207,10 +185177,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-8.expected multi-8_fpa.output))) + (deps multi-8_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-8.expected multi-8_fpa.output))) (rule (target multi-7_ci_cdcl_no_minimal_bj.output) (deps (:input multi-7.ae)) @@ -188229,10 +185200,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_ci_cdcl_no_minimal_bj.output))) + (deps multi-7_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_ci_cdcl_no_minimal_bj.output))) (rule (target multi-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-7.ae)) @@ -188253,12 +185225,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-7.expected - multi-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-7.ae)) @@ -188278,12 +185249,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-7.expected - multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-7_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-7.ae)) @@ -188302,12 +185272,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-7.expected - multi-7_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-7_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-7.ae)) @@ -188326,12 +185295,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-7.expected - multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-7_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-7.ae)) @@ -188350,10 +185318,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-7_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-7_cdcl.output) (deps (:input multi-7.ae)) @@ -188371,10 +185340,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_cdcl.output))) + (deps multi-7_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_cdcl.output))) (rule (target multi-7_tableaux_cdcl.output) (deps (:input multi-7.ae)) @@ -188392,10 +185362,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_tableaux_cdcl.output))) + (deps multi-7_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_tableaux_cdcl.output))) (rule (target multi-7_tableaux.output) (deps (:input multi-7.ae)) @@ -188413,10 +185384,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_tableaux.output))) + (deps multi-7_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_tableaux.output))) (rule (target multi-7_legacy.output) (deps (:input multi-7.ae)) @@ -188433,10 +185405,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_legacy.output))) + (deps multi-7_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_legacy.output))) (rule (target multi-7_dolmen.output) (deps (:input multi-7.ae)) @@ -188453,10 +185426,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_dolmen.output))) + (deps multi-7_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_dolmen.output))) (rule (target multi-7_fpa.output) (deps (:input multi-7.ae)) @@ -188473,10 +185447,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-7.expected multi-7_fpa.output))) + (deps multi-7_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-7.expected multi-7_fpa.output))) (rule (target multi-6_ci_cdcl_no_minimal_bj.output) (deps (:input multi-6.ae)) @@ -188495,10 +185470,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_ci_cdcl_no_minimal_bj.output))) + (deps multi-6_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_ci_cdcl_no_minimal_bj.output))) (rule (target multi-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-6.ae)) @@ -188519,12 +185495,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-6.expected - multi-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-6.ae)) @@ -188544,12 +185519,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-6.expected - multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-6_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-6.ae)) @@ -188568,12 +185542,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-6.expected - multi-6_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-6_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-6.ae)) @@ -188592,12 +185565,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-6.expected - multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-6_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-6.ae)) @@ -188616,10 +185588,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-6_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-6_cdcl.output) (deps (:input multi-6.ae)) @@ -188637,10 +185610,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_cdcl.output))) + (deps multi-6_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_cdcl.output))) (rule (target multi-6_tableaux_cdcl.output) (deps (:input multi-6.ae)) @@ -188658,10 +185632,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_tableaux_cdcl.output))) + (deps multi-6_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_tableaux_cdcl.output))) (rule (target multi-6_tableaux.output) (deps (:input multi-6.ae)) @@ -188679,10 +185654,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_tableaux.output))) + (deps multi-6_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_tableaux.output))) (rule (target multi-6_legacy.output) (deps (:input multi-6.ae)) @@ -188699,10 +185675,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_legacy.output))) + (deps multi-6_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_legacy.output))) (rule (target multi-6_dolmen.output) (deps (:input multi-6.ae)) @@ -188719,10 +185696,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_dolmen.output))) + (deps multi-6_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_dolmen.output))) (rule (target multi-6_fpa.output) (deps (:input multi-6.ae)) @@ -188739,10 +185717,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-6.expected multi-6_fpa.output))) + (deps multi-6_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-6.expected multi-6_fpa.output))) (rule (target multi-5_ci_cdcl_no_minimal_bj.output) (deps (:input multi-5.ae)) @@ -188761,10 +185740,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_ci_cdcl_no_minimal_bj.output))) + (deps multi-5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_ci_cdcl_no_minimal_bj.output))) (rule (target multi-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-5.ae)) @@ -188785,12 +185765,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-5.expected - multi-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-5.ae)) @@ -188810,12 +185789,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-5.expected - multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-5.ae)) @@ -188834,12 +185812,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-5.expected - multi-5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-5.ae)) @@ -188858,12 +185835,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-5.expected - multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-5.ae)) @@ -188882,10 +185858,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-5_cdcl.output) (deps (:input multi-5.ae)) @@ -188903,10 +185880,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_cdcl.output))) + (deps multi-5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_cdcl.output))) (rule (target multi-5_tableaux_cdcl.output) (deps (:input multi-5.ae)) @@ -188924,10 +185902,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_tableaux_cdcl.output))) + (deps multi-5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_tableaux_cdcl.output))) (rule (target multi-5_tableaux.output) (deps (:input multi-5.ae)) @@ -188945,10 +185924,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_tableaux.output))) + (deps multi-5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_tableaux.output))) (rule (target multi-5_legacy.output) (deps (:input multi-5.ae)) @@ -188965,10 +185945,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_legacy.output))) + (deps multi-5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_legacy.output))) (rule (target multi-5_dolmen.output) (deps (:input multi-5.ae)) @@ -188985,10 +185966,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_dolmen.output))) + (deps multi-5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_dolmen.output))) (rule (target multi-5_fpa.output) (deps (:input multi-5.ae)) @@ -189005,10 +185987,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-5.expected multi-5_fpa.output))) + (deps multi-5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-5.expected multi-5_fpa.output))) (rule (target multi-4_ci_cdcl_no_minimal_bj.output) (deps (:input multi-4.ae)) @@ -189027,10 +186010,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_ci_cdcl_no_minimal_bj.output))) + (deps multi-4_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_ci_cdcl_no_minimal_bj.output))) (rule (target multi-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-4.ae)) @@ -189051,12 +186035,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-4.expected - multi-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-4.ae)) @@ -189076,12 +186059,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-4.expected - multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-4_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-4.ae)) @@ -189100,12 +186082,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-4.expected - multi-4_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-4_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-4.ae)) @@ -189124,12 +186105,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-4.expected - multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-4_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-4.ae)) @@ -189148,10 +186128,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-4_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-4_cdcl.output) (deps (:input multi-4.ae)) @@ -189169,10 +186150,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_cdcl.output))) + (deps multi-4_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_cdcl.output))) (rule (target multi-4_tableaux_cdcl.output) (deps (:input multi-4.ae)) @@ -189190,10 +186172,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_tableaux_cdcl.output))) + (deps multi-4_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_tableaux_cdcl.output))) (rule (target multi-4_tableaux.output) (deps (:input multi-4.ae)) @@ -189211,10 +186194,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_tableaux.output))) + (deps multi-4_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_tableaux.output))) (rule (target multi-4_legacy.output) (deps (:input multi-4.ae)) @@ -189231,10 +186215,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_legacy.output))) + (deps multi-4_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_legacy.output))) (rule (target multi-4_dolmen.output) (deps (:input multi-4.ae)) @@ -189251,10 +186236,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_dolmen.output))) + (deps multi-4_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_dolmen.output))) (rule (target multi-4_fpa.output) (deps (:input multi-4.ae)) @@ -189271,10 +186257,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-4.expected multi-4_fpa.output))) + (deps multi-4_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-4.expected multi-4_fpa.output))) (rule (target multi-3_ci_cdcl_no_minimal_bj.output) (deps (:input multi-3.ae)) @@ -189293,10 +186280,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_ci_cdcl_no_minimal_bj.output))) + (deps multi-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_ci_cdcl_no_minimal_bj.output))) (rule (target multi-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-3.ae)) @@ -189317,12 +186305,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-3.expected - multi-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-3.ae)) @@ -189342,12 +186329,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-3.expected - multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-3.ae)) @@ -189366,12 +186352,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-3.expected - multi-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-3.ae)) @@ -189390,12 +186375,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-3.expected - multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-3.ae)) @@ -189414,10 +186398,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-3_cdcl.output) (deps (:input multi-3.ae)) @@ -189435,10 +186420,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_cdcl.output))) + (deps multi-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_cdcl.output))) (rule (target multi-3_tableaux_cdcl.output) (deps (:input multi-3.ae)) @@ -189456,10 +186442,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_tableaux_cdcl.output))) + (deps multi-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_tableaux_cdcl.output))) (rule (target multi-3_tableaux.output) (deps (:input multi-3.ae)) @@ -189477,10 +186464,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_tableaux.output))) + (deps multi-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_tableaux.output))) (rule (target multi-3_legacy.output) (deps (:input multi-3.ae)) @@ -189497,10 +186485,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_legacy.output))) + (deps multi-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_legacy.output))) (rule (target multi-3_dolmen.output) (deps (:input multi-3.ae)) @@ -189517,10 +186506,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_dolmen.output))) + (deps multi-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_dolmen.output))) (rule (target multi-3_fpa.output) (deps (:input multi-3.ae)) @@ -189537,10 +186527,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-3.expected multi-3_fpa.output))) + (deps multi-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-3.expected multi-3_fpa.output))) (rule (target multi-2_ci_cdcl_no_minimal_bj.output) (deps (:input multi-2.ae)) @@ -189559,10 +186550,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_ci_cdcl_no_minimal_bj.output))) + (deps multi-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_ci_cdcl_no_minimal_bj.output))) (rule (target multi-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-2.ae)) @@ -189583,12 +186575,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-2.expected - multi-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-2.ae)) @@ -189608,12 +186599,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-2.expected - multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-2.ae)) @@ -189632,12 +186622,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-2.expected - multi-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-2.ae)) @@ -189656,12 +186645,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-2.expected - multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-2.ae)) @@ -189680,10 +186668,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-2_cdcl.output) (deps (:input multi-2.ae)) @@ -189701,10 +186690,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_cdcl.output))) + (deps multi-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_cdcl.output))) (rule (target multi-2_tableaux_cdcl.output) (deps (:input multi-2.ae)) @@ -189722,10 +186712,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_tableaux_cdcl.output))) + (deps multi-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_tableaux_cdcl.output))) (rule (target multi-2_tableaux.output) (deps (:input multi-2.ae)) @@ -189743,10 +186734,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_tableaux.output))) + (deps multi-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_tableaux.output))) (rule (target multi-2_legacy.output) (deps (:input multi-2.ae)) @@ -189763,10 +186755,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_legacy.output))) + (deps multi-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_legacy.output))) (rule (target multi-2_dolmen.output) (deps (:input multi-2.ae)) @@ -189783,10 +186776,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_dolmen.output))) + (deps multi-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_dolmen.output))) (rule (target multi-2_fpa.output) (deps (:input multi-2.ae)) @@ -189803,10 +186797,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-2.expected multi-2_fpa.output))) + (deps multi-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-2.expected multi-2_fpa.output))) (rule (target multi-1_ci_cdcl_no_minimal_bj.output) (deps (:input multi-1.ae)) @@ -189825,10 +186820,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_ci_cdcl_no_minimal_bj.output))) + (deps multi-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_ci_cdcl_no_minimal_bj.output))) (rule (target multi-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-1.ae)) @@ -189849,12 +186845,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-1.expected - multi-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input multi-1.ae)) @@ -189874,12 +186869,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-1.expected - multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target multi-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input multi-1.ae)) @@ -189898,12 +186892,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-1.expected - multi-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps multi-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input multi-1.ae)) @@ -189922,12 +186915,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - multi-1.expected - multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target multi-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input multi-1.ae)) @@ -189946,10 +186938,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps multi-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target multi-1_cdcl.output) (deps (:input multi-1.ae)) @@ -189967,10 +186960,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_cdcl.output))) + (deps multi-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_cdcl.output))) (rule (target multi-1_tableaux_cdcl.output) (deps (:input multi-1.ae)) @@ -189988,10 +186982,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_tableaux_cdcl.output))) + (deps multi-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_tableaux_cdcl.output))) (rule (target multi-1_tableaux.output) (deps (:input multi-1.ae)) @@ -190009,10 +187004,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_tableaux.output))) + (deps multi-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_tableaux.output))) (rule (target multi-1_legacy.output) (deps (:input multi-1.ae)) @@ -190029,10 +187025,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_legacy.output))) + (deps multi-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_legacy.output))) (rule (target multi-1_dolmen.output) (deps (:input multi-1.ae)) @@ -190049,10 +187046,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_dolmen.output))) + (deps multi-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_dolmen.output))) (rule (target multi-1_fpa.output) (deps (:input multi-1.ae)) @@ -190069,10 +187067,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff multi-1.expected multi-1_fpa.output))) + (deps multi-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff multi-1.expected multi-1_fpa.output))) (rule (target let-term-in-form-3_ci_cdcl_no_minimal_bj.output) (deps (:input let-term-in-form-3.ae)) @@ -190091,12 +187090,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-3.expected - let-term-in-form-3_ci_cdcl_no_minimal_bj.output))) + (deps let-term-in-form-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_ci_cdcl_no_minimal_bj.output))) (rule (target let-term-in-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-term-in-form-3.ae)) @@ -190117,12 +187115,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-3.expected - let-term-in-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-term-in-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-term-in-form-3.ae)) @@ -190142,12 +187139,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-3.expected - let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-term-in-form-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-term-in-form-3.ae)) @@ -190166,12 +187162,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-3.expected - let-term-in-form-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-term-in-form-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-term-in-form-3.ae)) @@ -190190,12 +187185,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-3.expected - let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-term-in-form-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-term-in-form-3.ae)) @@ -190214,12 +187208,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-3.expected - let-term-in-form-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-term-in-form-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-term-in-form-3_cdcl.output) (deps (:input let-term-in-form-3.ae)) @@ -190237,10 +187230,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-3.expected let-term-in-form-3_cdcl.output))) + (deps let-term-in-form-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_cdcl.output))) (rule (target let-term-in-form-3_tableaux_cdcl.output) (deps (:input let-term-in-form-3.ae)) @@ -190258,12 +187252,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - let-term-in-form-3.expected - let-term-in-form-3_tableaux_cdcl.output))) + (deps let-term-in-form-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_tableaux_cdcl.output))) (rule (target let-term-in-form-3_tableaux.output) (deps (:input let-term-in-form-3.ae)) @@ -190281,10 +187274,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-3.expected let-term-in-form-3_tableaux.output))) + (deps let-term-in-form-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_tableaux.output))) (rule (target let-term-in-form-3_legacy.output) (deps (:input let-term-in-form-3.ae)) @@ -190301,10 +187295,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-3.expected let-term-in-form-3_legacy.output))) + (deps let-term-in-form-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_legacy.output))) (rule (target let-term-in-form-3_dolmen.output) (deps (:input let-term-in-form-3.ae)) @@ -190321,10 +187316,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-3.expected let-term-in-form-3_dolmen.output))) + (deps let-term-in-form-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_dolmen.output))) (rule (target let-term-in-form-3_fpa.output) (deps (:input let-term-in-form-3.ae)) @@ -190341,10 +187337,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-3.expected let-term-in-form-3_fpa.output))) + (deps let-term-in-form-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-3.expected let-term-in-form-3_fpa.output))) (rule (target let-term-in-form-2_ci_cdcl_no_minimal_bj.output) (deps (:input let-term-in-form-2.ae)) @@ -190363,12 +187360,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-2.expected - let-term-in-form-2_ci_cdcl_no_minimal_bj.output))) + (deps let-term-in-form-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_ci_cdcl_no_minimal_bj.output))) (rule (target let-term-in-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-term-in-form-2.ae)) @@ -190389,12 +187385,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-2.expected - let-term-in-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-term-in-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-term-in-form-2.ae)) @@ -190414,12 +187409,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-2.expected - let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-term-in-form-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-term-in-form-2.ae)) @@ -190438,12 +187432,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-2.expected - let-term-in-form-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-term-in-form-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-term-in-form-2.ae)) @@ -190462,12 +187455,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-2.expected - let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-term-in-form-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-term-in-form-2.ae)) @@ -190486,12 +187478,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-2.expected - let-term-in-form-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-term-in-form-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-term-in-form-2_cdcl.output) (deps (:input let-term-in-form-2.ae)) @@ -190509,10 +187500,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-2.expected let-term-in-form-2_cdcl.output))) + (deps let-term-in-form-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_cdcl.output))) (rule (target let-term-in-form-2_tableaux_cdcl.output) (deps (:input let-term-in-form-2.ae)) @@ -190530,12 +187522,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - let-term-in-form-2.expected - let-term-in-form-2_tableaux_cdcl.output))) + (deps let-term-in-form-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_tableaux_cdcl.output))) (rule (target let-term-in-form-2_tableaux.output) (deps (:input let-term-in-form-2.ae)) @@ -190553,10 +187544,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-2.expected let-term-in-form-2_tableaux.output))) + (deps let-term-in-form-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_tableaux.output))) (rule (target let-term-in-form-2_legacy.output) (deps (:input let-term-in-form-2.ae)) @@ -190573,10 +187565,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-2.expected let-term-in-form-2_legacy.output))) + (deps let-term-in-form-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_legacy.output))) (rule (target let-term-in-form-2_dolmen.output) (deps (:input let-term-in-form-2.ae)) @@ -190593,10 +187586,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-2.expected let-term-in-form-2_dolmen.output))) + (deps let-term-in-form-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_dolmen.output))) (rule (target let-term-in-form-2_fpa.output) (deps (:input let-term-in-form-2.ae)) @@ -190613,10 +187607,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-2.expected let-term-in-form-2_fpa.output))) + (deps let-term-in-form-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-2.expected let-term-in-form-2_fpa.output))) (rule (target let-term-in-form-1_ci_cdcl_no_minimal_bj.output) (deps (:input let-term-in-form-1.ae)) @@ -190635,12 +187630,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-1.expected - let-term-in-form-1_ci_cdcl_no_minimal_bj.output))) + (deps let-term-in-form-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_ci_cdcl_no_minimal_bj.output))) (rule (target let-term-in-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-term-in-form-1.ae)) @@ -190661,12 +187655,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-1.expected - let-term-in-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-term-in-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-term-in-form-1.ae)) @@ -190686,12 +187679,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-1.expected - let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-term-in-form-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-term-in-form-1.ae)) @@ -190710,12 +187702,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-1.expected - let-term-in-form-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-term-in-form-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-term-in-form-1.ae)) @@ -190734,12 +187725,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-1.expected - let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-term-in-form-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-term-in-form-1.ae)) @@ -190758,12 +187748,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-term-in-form-1.expected - let-term-in-form-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-term-in-form-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-term-in-form-1_cdcl.output) (deps (:input let-term-in-form-1.ae)) @@ -190781,10 +187770,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-1.expected let-term-in-form-1_cdcl.output))) + (deps let-term-in-form-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_cdcl.output))) (rule (target let-term-in-form-1_tableaux_cdcl.output) (deps (:input let-term-in-form-1.ae)) @@ -190802,12 +187792,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - let-term-in-form-1.expected - let-term-in-form-1_tableaux_cdcl.output))) + (deps let-term-in-form-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_tableaux_cdcl.output))) (rule (target let-term-in-form-1_tableaux.output) (deps (:input let-term-in-form-1.ae)) @@ -190825,10 +187814,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-1.expected let-term-in-form-1_tableaux.output))) + (deps let-term-in-form-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_tableaux.output))) (rule (target let-term-in-form-1_legacy.output) (deps (:input let-term-in-form-1.ae)) @@ -190845,10 +187835,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-1.expected let-term-in-form-1_legacy.output))) + (deps let-term-in-form-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_legacy.output))) (rule (target let-term-in-form-1_dolmen.output) (deps (:input let-term-in-form-1.ae)) @@ -190865,10 +187856,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-1.expected let-term-in-form-1_dolmen.output))) + (deps let-term-in-form-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_dolmen.output))) (rule (target let-term-in-form-1_fpa.output) (deps (:input let-term-in-form-1.ae)) @@ -190885,10 +187877,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-term-in-form-1.expected let-term-in-form-1_fpa.output))) + (deps let-term-in-form-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-term-in-form-1.expected let-term-in-form-1_fpa.output))) (rule (target let-form-in-term_ci_cdcl_no_minimal_bj.output) (deps (:input let-form-in-term.ae)) @@ -190907,12 +187900,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term.expected - let-form-in-term_ci_cdcl_no_minimal_bj.output))) + (deps let-form-in-term_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_ci_cdcl_no_minimal_bj.output))) (rule (target let-form-in-term_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-in-term.ae)) @@ -190933,12 +187925,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term.expected - let-form-in-term_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-in-term_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-in-term.ae)) @@ -190958,12 +187949,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term.expected - let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-in-term_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-form-in-term.ae)) @@ -190982,12 +187972,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term.expected - let-form-in-term_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-form-in-term_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-form-in-term.ae)) @@ -191006,12 +187995,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term.expected - let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-form-in-term_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-form-in-term.ae)) @@ -191030,12 +188018,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term.expected - let-form-in-term_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-form-in-term_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-form-in-term_cdcl.output) (deps (:input let-form-in-term.ae)) @@ -191053,10 +188040,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term.expected let-form-in-term_cdcl.output))) + (deps let-form-in-term_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_cdcl.output))) (rule (target let-form-in-term_tableaux_cdcl.output) (deps (:input let-form-in-term.ae)) @@ -191074,10 +188062,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term.expected let-form-in-term_tableaux_cdcl.output))) + (deps let-form-in-term_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_tableaux_cdcl.output))) (rule (target let-form-in-term_tableaux.output) (deps (:input let-form-in-term.ae)) @@ -191095,10 +188084,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term.expected let-form-in-term_tableaux.output))) + (deps let-form-in-term_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_tableaux.output))) (rule (target let-form-in-term_legacy.output) (deps (:input let-form-in-term.ae)) @@ -191115,10 +188105,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term.expected let-form-in-term_legacy.output))) + (deps let-form-in-term_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_legacy.output))) (rule (target let-form-in-term_dolmen.output) (deps (:input let-form-in-term.ae)) @@ -191135,10 +188126,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term.expected let-form-in-term_dolmen.output))) + (deps let-form-in-term_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_dolmen.output))) (rule (target let-form-in-term_fpa.output) (deps (:input let-form-in-term.ae)) @@ -191155,10 +188147,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term.expected let-form-in-term_fpa.output))) + (deps let-form-in-term_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term.expected let-form-in-term_fpa.output))) (rule (target let-form-in-term-3_ci_cdcl_no_minimal_bj.output) (deps (:input let-form-in-term-3.ae)) @@ -191177,12 +188170,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-3.expected - let-form-in-term-3_ci_cdcl_no_minimal_bj.output))) + (deps let-form-in-term-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_ci_cdcl_no_minimal_bj.output))) (rule (target let-form-in-term-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-in-term-3.ae)) @@ -191203,12 +188195,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-3.expected - let-form-in-term-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-in-term-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-in-term-3.ae)) @@ -191228,12 +188219,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-3.expected - let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-in-term-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-form-in-term-3.ae)) @@ -191252,12 +188242,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-3.expected - let-form-in-term-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-form-in-term-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-form-in-term-3.ae)) @@ -191276,12 +188265,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-3.expected - let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-form-in-term-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-form-in-term-3.ae)) @@ -191300,12 +188288,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-3.expected - let-form-in-term-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-form-in-term-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-form-in-term-3_cdcl.output) (deps (:input let-form-in-term-3.ae)) @@ -191323,10 +188310,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-3.expected let-form-in-term-3_cdcl.output))) + (deps let-form-in-term-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_cdcl.output))) (rule (target let-form-in-term-3_tableaux_cdcl.output) (deps (:input let-form-in-term-3.ae)) @@ -191344,12 +188332,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - let-form-in-term-3.expected - let-form-in-term-3_tableaux_cdcl.output))) + (deps let-form-in-term-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_tableaux_cdcl.output))) (rule (target let-form-in-term-3_tableaux.output) (deps (:input let-form-in-term-3.ae)) @@ -191367,10 +188354,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-3.expected let-form-in-term-3_tableaux.output))) + (deps let-form-in-term-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_tableaux.output))) (rule (target let-form-in-term-3_legacy.output) (deps (:input let-form-in-term-3.ae)) @@ -191387,10 +188375,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-3.expected let-form-in-term-3_legacy.output))) + (deps let-form-in-term-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_legacy.output))) (rule (target let-form-in-term-3_dolmen.output) (deps (:input let-form-in-term-3.ae)) @@ -191407,10 +188396,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-3.expected let-form-in-term-3_dolmen.output))) + (deps let-form-in-term-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_dolmen.output))) (rule (target let-form-in-term-3_fpa.output) (deps (:input let-form-in-term-3.ae)) @@ -191427,10 +188417,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-3.expected let-form-in-term-3_fpa.output))) + (deps let-form-in-term-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-3.expected let-form-in-term-3_fpa.output))) (rule (target let-form-in-term-2_ci_cdcl_no_minimal_bj.output) (deps (:input let-form-in-term-2.ae)) @@ -191449,12 +188440,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-2.expected - let-form-in-term-2_ci_cdcl_no_minimal_bj.output))) + (deps let-form-in-term-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_ci_cdcl_no_minimal_bj.output))) (rule (target let-form-in-term-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-in-term-2.ae)) @@ -191475,12 +188465,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-2.expected - let-form-in-term-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-in-term-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-in-term-2.ae)) @@ -191500,12 +188489,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-2.expected - let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-in-term-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-form-in-term-2.ae)) @@ -191524,12 +188512,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-2.expected - let-form-in-term-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-form-in-term-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-form-in-term-2.ae)) @@ -191548,12 +188535,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-2.expected - let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-form-in-term-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-form-in-term-2.ae)) @@ -191572,12 +188558,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-in-term-2.expected - let-form-in-term-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-form-in-term-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-form-in-term-2_cdcl.output) (deps (:input let-form-in-term-2.ae)) @@ -191595,10 +188580,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-2.expected let-form-in-term-2_cdcl.output))) + (deps let-form-in-term-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_cdcl.output))) (rule (target let-form-in-term-2_tableaux_cdcl.output) (deps (:input let-form-in-term-2.ae)) @@ -191616,12 +188602,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - let-form-in-term-2.expected - let-form-in-term-2_tableaux_cdcl.output))) + (deps let-form-in-term-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_tableaux_cdcl.output))) (rule (target let-form-in-term-2_tableaux.output) (deps (:input let-form-in-term-2.ae)) @@ -191639,10 +188624,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-2.expected let-form-in-term-2_tableaux.output))) + (deps let-form-in-term-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_tableaux.output))) (rule (target let-form-in-term-2_legacy.output) (deps (:input let-form-in-term-2.ae)) @@ -191659,10 +188645,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-2.expected let-form-in-term-2_legacy.output))) + (deps let-form-in-term-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_legacy.output))) (rule (target let-form-in-term-2_dolmen.output) (deps (:input let-form-in-term-2.ae)) @@ -191679,10 +188666,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-2.expected let-form-in-term-2_dolmen.output))) + (deps let-form-in-term-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_dolmen.output))) (rule (target let-form-in-term-2_fpa.output) (deps (:input let-form-in-term-2.ae)) @@ -191699,10 +188687,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-in-term-2.expected let-form-in-term-2_fpa.output))) + (deps let-form-in-term-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-in-term-2.expected let-form-in-term-2_fpa.output))) (rule (target let-form-3_ci_cdcl_no_minimal_bj.output) (deps (:input let-form-3.ae)) @@ -191721,10 +188710,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff let-form-3.expected let-form-3_ci_cdcl_no_minimal_bj.output))) + (deps let-form-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_ci_cdcl_no_minimal_bj.output))) (rule (target let-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-3.ae)) @@ -191745,12 +188735,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-3.expected - let-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-3.ae)) @@ -191770,12 +188759,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-3.expected - let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-form-3.ae)) @@ -191794,12 +188782,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-3.expected - let-form-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-form-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-form-3.ae)) @@ -191818,12 +188805,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-3.expected - let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-form-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-form-3.ae)) @@ -191842,12 +188828,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-3.expected - let-form-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-form-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-form-3_cdcl.output) (deps (:input let-form-3.ae)) @@ -191865,10 +188850,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-3.expected let-form-3_cdcl.output))) + (deps let-form-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_cdcl.output))) (rule (target let-form-3_tableaux_cdcl.output) (deps (:input let-form-3.ae)) @@ -191886,10 +188872,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-3.expected let-form-3_tableaux_cdcl.output))) + (deps let-form-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_tableaux_cdcl.output))) (rule (target let-form-3_tableaux.output) (deps (:input let-form-3.ae)) @@ -191907,10 +188894,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-3.expected let-form-3_tableaux.output))) + (deps let-form-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_tableaux.output))) (rule (target let-form-3_legacy.output) (deps (:input let-form-3.ae)) @@ -191927,10 +188915,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-3.expected let-form-3_legacy.output))) + (deps let-form-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_legacy.output))) (rule (target let-form-3_dolmen.output) (deps (:input let-form-3.ae)) @@ -191947,10 +188936,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-3.expected let-form-3_dolmen.output))) + (deps let-form-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_dolmen.output))) (rule (target let-form-3_fpa.output) (deps (:input let-form-3.ae)) @@ -191967,10 +188957,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-3.expected let-form-3_fpa.output))) + (deps let-form-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-3.expected let-form-3_fpa.output))) (rule (target let-form-2_ci_cdcl_no_minimal_bj.output) (deps (:input let-form-2.ae)) @@ -191989,10 +188980,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff let-form-2.expected let-form-2_ci_cdcl_no_minimal_bj.output))) + (deps let-form-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_ci_cdcl_no_minimal_bj.output))) (rule (target let-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-2.ae)) @@ -192013,12 +189005,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-2.expected - let-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-2.ae)) @@ -192038,12 +189029,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-2.expected - let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-form-2.ae)) @@ -192062,12 +189052,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-2.expected - let-form-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-form-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-form-2.ae)) @@ -192086,12 +189075,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-2.expected - let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-form-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-form-2.ae)) @@ -192110,12 +189098,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-2.expected - let-form-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-form-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-form-2_cdcl.output) (deps (:input let-form-2.ae)) @@ -192133,10 +189120,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-2.expected let-form-2_cdcl.output))) + (deps let-form-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_cdcl.output))) (rule (target let-form-2_tableaux_cdcl.output) (deps (:input let-form-2.ae)) @@ -192154,10 +189142,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-2.expected let-form-2_tableaux_cdcl.output))) + (deps let-form-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_tableaux_cdcl.output))) (rule (target let-form-2_tableaux.output) (deps (:input let-form-2.ae)) @@ -192175,10 +189164,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-2.expected let-form-2_tableaux.output))) + (deps let-form-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_tableaux.output))) (rule (target let-form-2_legacy.output) (deps (:input let-form-2.ae)) @@ -192195,10 +189185,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-2.expected let-form-2_legacy.output))) + (deps let-form-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_legacy.output))) (rule (target let-form-2_dolmen.output) (deps (:input let-form-2.ae)) @@ -192215,10 +189206,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-2.expected let-form-2_dolmen.output))) + (deps let-form-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_dolmen.output))) (rule (target let-form-2_fpa.output) (deps (:input let-form-2.ae)) @@ -192235,10 +189227,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-2.expected let-form-2_fpa.output))) + (deps let-form-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-2.expected let-form-2_fpa.output))) (rule (target let-form-1_ci_cdcl_no_minimal_bj.output) (deps (:input let-form-1.ae)) @@ -192257,10 +189250,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff let-form-1.expected let-form-1_ci_cdcl_no_minimal_bj.output))) + (deps let-form-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_ci_cdcl_no_minimal_bj.output))) (rule (target let-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-1.ae)) @@ -192281,12 +189275,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-1.expected - let-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let-form-1.ae)) @@ -192306,12 +189299,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-1.expected - let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let-form-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let-form-1.ae)) @@ -192330,12 +189322,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-1.expected - let-form-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let-form-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let-form-1.ae)) @@ -192354,12 +189345,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-1.expected - let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let-form-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let-form-1.ae)) @@ -192378,12 +189368,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let-form-1.expected - let-form-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let-form-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let-form-1_cdcl.output) (deps (:input let-form-1.ae)) @@ -192401,10 +189390,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-1.expected let-form-1_cdcl.output))) + (deps let-form-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_cdcl.output))) (rule (target let-form-1_tableaux_cdcl.output) (deps (:input let-form-1.ae)) @@ -192422,10 +189412,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-1.expected let-form-1_tableaux_cdcl.output))) + (deps let-form-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_tableaux_cdcl.output))) (rule (target let-form-1_tableaux.output) (deps (:input let-form-1.ae)) @@ -192443,10 +189434,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-1.expected let-form-1_tableaux.output))) + (deps let-form-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_tableaux.output))) (rule (target let-form-1_legacy.output) (deps (:input let-form-1.ae)) @@ -192463,10 +189455,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-1.expected let-form-1_legacy.output))) + (deps let-form-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_legacy.output))) (rule (target let-form-1_dolmen.output) (deps (:input let-form-1.ae)) @@ -192483,10 +189476,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-1.expected let-form-1_dolmen.output))) + (deps let-form-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_dolmen.output))) (rule (target let-form-1_fpa.output) (deps (:input let-form-1.ae)) @@ -192503,10 +189497,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let-form-1.expected let-form-1_fpa.output))) + (deps let-form-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let-form-1.expected let-form-1_fpa.output))) (rule (target let--valid-3_ci_cdcl_no_minimal_bj.output) (deps (:input let--valid-3.ae)) @@ -192525,10 +189520,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff let--valid-3.expected let--valid-3_ci_cdcl_no_minimal_bj.output))) + (deps let--valid-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_ci_cdcl_no_minimal_bj.output))) (rule (target let--valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--valid-3.ae)) @@ -192549,12 +189545,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-3.expected - let--valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--valid-3.ae)) @@ -192574,12 +189569,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-3.expected - let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--valid-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--valid-3.ae)) @@ -192598,12 +189592,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-3.expected - let--valid-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--valid-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--valid-3.ae)) @@ -192622,12 +189615,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-3.expected - let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--valid-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--valid-3.ae)) @@ -192646,12 +189638,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-3.expected - let--valid-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--valid-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--valid-3_cdcl.output) (deps (:input let--valid-3.ae)) @@ -192669,10 +189660,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-3.expected let--valid-3_cdcl.output))) + (deps let--valid-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_cdcl.output))) (rule (target let--valid-3_tableaux_cdcl.output) (deps (:input let--valid-3.ae)) @@ -192690,10 +189682,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-3.expected let--valid-3_tableaux_cdcl.output))) + (deps let--valid-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_tableaux_cdcl.output))) (rule (target let--valid-3_tableaux.output) (deps (:input let--valid-3.ae)) @@ -192711,10 +189704,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-3.expected let--valid-3_tableaux.output))) + (deps let--valid-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_tableaux.output))) (rule (target let--valid-3_legacy.output) (deps (:input let--valid-3.ae)) @@ -192731,10 +189725,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-3.expected let--valid-3_legacy.output))) + (deps let--valid-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_legacy.output))) (rule (target let--valid-3_dolmen.output) (deps (:input let--valid-3.ae)) @@ -192751,10 +189746,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-3.expected let--valid-3_dolmen.output))) + (deps let--valid-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_dolmen.output))) (rule (target let--valid-3_fpa.output) (deps (:input let--valid-3.ae)) @@ -192771,10 +189767,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-3.expected let--valid-3_fpa.output))) + (deps let--valid-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-3.expected let--valid-3_fpa.output))) (rule (target let--valid-2_ci_cdcl_no_minimal_bj.output) (deps (:input let--valid-2.ae)) @@ -192793,10 +189790,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff let--valid-2.expected let--valid-2_ci_cdcl_no_minimal_bj.output))) + (deps let--valid-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_ci_cdcl_no_minimal_bj.output))) (rule (target let--valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--valid-2.ae)) @@ -192817,12 +189815,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-2.expected - let--valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--valid-2.ae)) @@ -192842,12 +189839,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-2.expected - let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--valid-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--valid-2.ae)) @@ -192866,12 +189862,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-2.expected - let--valid-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--valid-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--valid-2.ae)) @@ -192890,12 +189885,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-2.expected - let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--valid-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--valid-2.ae)) @@ -192914,12 +189908,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-2.expected - let--valid-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--valid-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--valid-2_cdcl.output) (deps (:input let--valid-2.ae)) @@ -192937,10 +189930,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-2.expected let--valid-2_cdcl.output))) + (deps let--valid-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_cdcl.output))) (rule (target let--valid-2_tableaux_cdcl.output) (deps (:input let--valid-2.ae)) @@ -192958,10 +189952,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-2.expected let--valid-2_tableaux_cdcl.output))) + (deps let--valid-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_tableaux_cdcl.output))) (rule (target let--valid-2_tableaux.output) (deps (:input let--valid-2.ae)) @@ -192979,10 +189974,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-2.expected let--valid-2_tableaux.output))) + (deps let--valid-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_tableaux.output))) (rule (target let--valid-2_legacy.output) (deps (:input let--valid-2.ae)) @@ -192999,10 +189995,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-2.expected let--valid-2_legacy.output))) + (deps let--valid-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_legacy.output))) (rule (target let--valid-2_dolmen.output) (deps (:input let--valid-2.ae)) @@ -193019,10 +190016,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-2.expected let--valid-2_dolmen.output))) + (deps let--valid-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_dolmen.output))) (rule (target let--valid-2_fpa.output) (deps (:input let--valid-2.ae)) @@ -193039,10 +190037,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-2.expected let--valid-2_fpa.output))) + (deps let--valid-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-2.expected let--valid-2_fpa.output))) (rule (target let--valid-1_ci_cdcl_no_minimal_bj.output) (deps (:input let--valid-1.ae)) @@ -193061,10 +190060,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff let--valid-1.expected let--valid-1_ci_cdcl_no_minimal_bj.output))) + (deps let--valid-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_ci_cdcl_no_minimal_bj.output))) (rule (target let--valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--valid-1.ae)) @@ -193085,12 +190085,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-1.expected - let--valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--valid-1.ae)) @@ -193110,12 +190109,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-1.expected - let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--valid-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--valid-1.ae)) @@ -193134,12 +190132,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-1.expected - let--valid-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--valid-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--valid-1.ae)) @@ -193158,12 +190155,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-1.expected - let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--valid-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--valid-1.ae)) @@ -193182,12 +190178,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--valid-1.expected - let--valid-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--valid-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--valid-1_cdcl.output) (deps (:input let--valid-1.ae)) @@ -193205,10 +190200,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-1.expected let--valid-1_cdcl.output))) + (deps let--valid-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_cdcl.output))) (rule (target let--valid-1_tableaux_cdcl.output) (deps (:input let--valid-1.ae)) @@ -193226,10 +190222,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-1.expected let--valid-1_tableaux_cdcl.output))) + (deps let--valid-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_tableaux_cdcl.output))) (rule (target let--valid-1_tableaux.output) (deps (:input let--valid-1.ae)) @@ -193247,10 +190244,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-1.expected let--valid-1_tableaux.output))) + (deps let--valid-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_tableaux.output))) (rule (target let--valid-1_legacy.output) (deps (:input let--valid-1.ae)) @@ -193267,10 +190265,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-1.expected let--valid-1_legacy.output))) + (deps let--valid-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_legacy.output))) (rule (target let--valid-1_dolmen.output) (deps (:input let--valid-1.ae)) @@ -193287,10 +190286,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-1.expected let--valid-1_dolmen.output))) + (deps let--valid-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_dolmen.output))) (rule (target let--valid-1_fpa.output) (deps (:input let--valid-1.ae)) @@ -193307,10 +190307,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--valid-1.expected let--valid-1_fpa.output))) + (deps let--valid-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--valid-1.expected let--valid-1_fpa.output))) (rule (target let--invalid-5_ci_cdcl_no_minimal_bj.output) (deps (:input let--invalid-5.ae)) @@ -193329,12 +190330,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-5.expected - let--invalid-5_ci_cdcl_no_minimal_bj.output))) + (deps let--invalid-5_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_ci_cdcl_no_minimal_bj.output))) (rule (target let--invalid-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-5.ae)) @@ -193355,12 +190355,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-5.expected - let--invalid-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-5.ae)) @@ -193380,12 +190379,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-5.expected - let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-5_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--invalid-5.ae)) @@ -193404,12 +190402,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-5.expected - let--invalid-5_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--invalid-5_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--invalid-5.ae)) @@ -193428,12 +190425,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-5.expected - let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--invalid-5_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--invalid-5.ae)) @@ -193452,12 +190448,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-5.expected - let--invalid-5_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--invalid-5_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--invalid-5_cdcl.output) (deps (:input let--invalid-5.ae)) @@ -193475,10 +190470,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-5.expected let--invalid-5_cdcl.output))) + (deps let--invalid-5_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_cdcl.output))) (rule (target let--invalid-5_tableaux_cdcl.output) (deps (:input let--invalid-5.ae)) @@ -193496,10 +190492,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-5.expected let--invalid-5_tableaux_cdcl.output))) + (deps let--invalid-5_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_tableaux_cdcl.output))) (rule (target let--invalid-5_tableaux.output) (deps (:input let--invalid-5.ae)) @@ -193517,10 +190514,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-5.expected let--invalid-5_tableaux.output))) + (deps let--invalid-5_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_tableaux.output))) (rule (target let--invalid-5_legacy.output) (deps (:input let--invalid-5.ae)) @@ -193537,10 +190535,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-5.expected let--invalid-5_legacy.output))) + (deps let--invalid-5_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_legacy.output))) (rule (target let--invalid-5_dolmen.output) (deps (:input let--invalid-5.ae)) @@ -193557,10 +190556,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-5.expected let--invalid-5_dolmen.output))) + (deps let--invalid-5_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_dolmen.output))) (rule (target let--invalid-5_fpa.output) (deps (:input let--invalid-5.ae)) @@ -193577,10 +190577,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-5.expected let--invalid-5_fpa.output))) + (deps let--invalid-5_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-5.expected let--invalid-5_fpa.output))) (rule (target let--invalid-4_ci_cdcl_no_minimal_bj.output) (deps (:input let--invalid-4.ae)) @@ -193599,12 +190600,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-4.expected - let--invalid-4_ci_cdcl_no_minimal_bj.output))) + (deps let--invalid-4_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_ci_cdcl_no_minimal_bj.output))) (rule (target let--invalid-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-4.ae)) @@ -193625,12 +190625,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-4.expected - let--invalid-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-4.ae)) @@ -193650,12 +190649,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-4.expected - let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-4_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--invalid-4.ae)) @@ -193674,12 +190672,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-4.expected - let--invalid-4_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--invalid-4_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--invalid-4.ae)) @@ -193698,12 +190695,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-4.expected - let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--invalid-4_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--invalid-4.ae)) @@ -193722,12 +190718,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-4.expected - let--invalid-4_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--invalid-4_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--invalid-4_cdcl.output) (deps (:input let--invalid-4.ae)) @@ -193745,10 +190740,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-4.expected let--invalid-4_cdcl.output))) + (deps let--invalid-4_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_cdcl.output))) (rule (target let--invalid-4_tableaux_cdcl.output) (deps (:input let--invalid-4.ae)) @@ -193766,10 +190762,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-4.expected let--invalid-4_tableaux_cdcl.output))) + (deps let--invalid-4_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_tableaux_cdcl.output))) (rule (target let--invalid-4_tableaux.output) (deps (:input let--invalid-4.ae)) @@ -193787,10 +190784,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-4.expected let--invalid-4_tableaux.output))) + (deps let--invalid-4_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_tableaux.output))) (rule (target let--invalid-4_legacy.output) (deps (:input let--invalid-4.ae)) @@ -193807,10 +190805,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-4.expected let--invalid-4_legacy.output))) + (deps let--invalid-4_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_legacy.output))) (rule (target let--invalid-4_dolmen.output) (deps (:input let--invalid-4.ae)) @@ -193827,10 +190826,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-4.expected let--invalid-4_dolmen.output))) + (deps let--invalid-4_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_dolmen.output))) (rule (target let--invalid-4_fpa.output) (deps (:input let--invalid-4.ae)) @@ -193847,10 +190847,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-4.expected let--invalid-4_fpa.output))) + (deps let--invalid-4_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-4.expected let--invalid-4_fpa.output))) (rule (target let--invalid-3_ci_cdcl_no_minimal_bj.output) (deps (:input let--invalid-3.ae)) @@ -193869,12 +190870,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-3.expected - let--invalid-3_ci_cdcl_no_minimal_bj.output))) + (deps let--invalid-3_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_ci_cdcl_no_minimal_bj.output))) (rule (target let--invalid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-3.ae)) @@ -193895,12 +190895,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-3.expected - let--invalid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-3.ae)) @@ -193920,12 +190919,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-3.expected - let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-3_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--invalid-3.ae)) @@ -193944,12 +190942,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-3.expected - let--invalid-3_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--invalid-3_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--invalid-3.ae)) @@ -193968,12 +190965,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-3.expected - let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--invalid-3_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--invalid-3.ae)) @@ -193992,12 +190988,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-3.expected - let--invalid-3_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--invalid-3_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--invalid-3_cdcl.output) (deps (:input let--invalid-3.ae)) @@ -194015,10 +191010,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-3.expected let--invalid-3_cdcl.output))) + (deps let--invalid-3_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_cdcl.output))) (rule (target let--invalid-3_tableaux_cdcl.output) (deps (:input let--invalid-3.ae)) @@ -194036,10 +191032,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-3.expected let--invalid-3_tableaux_cdcl.output))) + (deps let--invalid-3_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_tableaux_cdcl.output))) (rule (target let--invalid-3_tableaux.output) (deps (:input let--invalid-3.ae)) @@ -194057,10 +191054,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-3.expected let--invalid-3_tableaux.output))) + (deps let--invalid-3_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_tableaux.output))) (rule (target let--invalid-3_legacy.output) (deps (:input let--invalid-3.ae)) @@ -194077,10 +191075,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-3.expected let--invalid-3_legacy.output))) + (deps let--invalid-3_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_legacy.output))) (rule (target let--invalid-3_dolmen.output) (deps (:input let--invalid-3.ae)) @@ -194097,10 +191096,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-3.expected let--invalid-3_dolmen.output))) + (deps let--invalid-3_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_dolmen.output))) (rule (target let--invalid-3_fpa.output) (deps (:input let--invalid-3.ae)) @@ -194117,10 +191117,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-3.expected let--invalid-3_fpa.output))) + (deps let--invalid-3_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-3.expected let--invalid-3_fpa.output))) (rule (target let--invalid-2_ci_cdcl_no_minimal_bj.output) (deps (:input let--invalid-2.ae)) @@ -194139,12 +191140,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-2.expected - let--invalid-2_ci_cdcl_no_minimal_bj.output))) + (deps let--invalid-2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_ci_cdcl_no_minimal_bj.output))) (rule (target let--invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-2.ae)) @@ -194165,12 +191165,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-2.expected - let--invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-2.ae)) @@ -194190,12 +191189,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-2.expected - let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--invalid-2.ae)) @@ -194214,12 +191212,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-2.expected - let--invalid-2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--invalid-2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--invalid-2.ae)) @@ -194238,12 +191235,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-2.expected - let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--invalid-2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--invalid-2.ae)) @@ -194262,12 +191258,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-2.expected - let--invalid-2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--invalid-2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--invalid-2_cdcl.output) (deps (:input let--invalid-2.ae)) @@ -194285,10 +191280,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-2.expected let--invalid-2_cdcl.output))) + (deps let--invalid-2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_cdcl.output))) (rule (target let--invalid-2_tableaux_cdcl.output) (deps (:input let--invalid-2.ae)) @@ -194306,10 +191302,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-2.expected let--invalid-2_tableaux_cdcl.output))) + (deps let--invalid-2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_tableaux_cdcl.output))) (rule (target let--invalid-2_tableaux.output) (deps (:input let--invalid-2.ae)) @@ -194327,10 +191324,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-2.expected let--invalid-2_tableaux.output))) + (deps let--invalid-2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_tableaux.output))) (rule (target let--invalid-2_legacy.output) (deps (:input let--invalid-2.ae)) @@ -194347,10 +191345,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-2.expected let--invalid-2_legacy.output))) + (deps let--invalid-2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_legacy.output))) (rule (target let--invalid-2_dolmen.output) (deps (:input let--invalid-2.ae)) @@ -194367,10 +191366,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-2.expected let--invalid-2_dolmen.output))) + (deps let--invalid-2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_dolmen.output))) (rule (target let--invalid-2_fpa.output) (deps (:input let--invalid-2.ae)) @@ -194387,10 +191387,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-2.expected let--invalid-2_fpa.output))) + (deps let--invalid-2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-2.expected let--invalid-2_fpa.output))) (rule (target let--invalid-1_ci_cdcl_no_minimal_bj.output) (deps (:input let--invalid-1.ae)) @@ -194409,12 +191410,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-1.expected - let--invalid-1_ci_cdcl_no_minimal_bj.output))) + (deps let--invalid-1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_ci_cdcl_no_minimal_bj.output))) (rule (target let--invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-1.ae)) @@ -194435,12 +191435,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-1.expected - let--invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input let--invalid-1.ae)) @@ -194460,12 +191459,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-1.expected - let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target let--invalid-1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input let--invalid-1.ae)) @@ -194484,12 +191482,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-1.expected - let--invalid-1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps let--invalid-1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input let--invalid-1.ae)) @@ -194508,12 +191505,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-1.expected - let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target let--invalid-1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input let--invalid-1.ae)) @@ -194532,12 +191528,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - let--invalid-1.expected - let--invalid-1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps let--invalid-1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target let--invalid-1_cdcl.output) (deps (:input let--invalid-1.ae)) @@ -194555,10 +191550,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-1.expected let--invalid-1_cdcl.output))) + (deps let--invalid-1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_cdcl.output))) (rule (target let--invalid-1_tableaux_cdcl.output) (deps (:input let--invalid-1.ae)) @@ -194576,10 +191572,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-1.expected let--invalid-1_tableaux_cdcl.output))) + (deps let--invalid-1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_tableaux_cdcl.output))) (rule (target let--invalid-1_tableaux.output) (deps (:input let--invalid-1.ae)) @@ -194597,10 +191594,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-1.expected let--invalid-1_tableaux.output))) + (deps let--invalid-1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_tableaux.output))) (rule (target let--invalid-1_legacy.output) (deps (:input let--invalid-1.ae)) @@ -194617,10 +191615,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-1.expected let--invalid-1_legacy.output))) + (deps let--invalid-1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_legacy.output))) (rule (target let--invalid-1_dolmen.output) (deps (:input let--invalid-1.ae)) @@ -194637,10 +191636,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-1.expected let--invalid-1_dolmen.output))) + (deps let--invalid-1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_dolmen.output))) (rule (target let--invalid-1_fpa.output) (deps (:input let--invalid-1.ae)) @@ -194657,10 +191657,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff let--invalid-1.expected let--invalid-1_fpa.output)))) + (deps let--invalid-1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff let--invalid-1.expected let--invalid-1_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -194684,10 +191685,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff unzip.smt2.expected unzip.smt2_ci_cdcl_no_minimal_bj.output))) + (deps unzip.smt2_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_ci_cdcl_no_minimal_bj.output))) (rule (target unzip.smt2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input unzip.smt2.zip)) @@ -194708,12 +191710,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.smt2.expected - unzip.smt2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps unzip.smt2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input unzip.smt2.zip)) @@ -194733,12 +191734,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.smt2.expected - unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target unzip.smt2_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input unzip.smt2.zip)) @@ -194757,12 +191757,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.smt2.expected - unzip.smt2_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps unzip.smt2_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input unzip.smt2.zip)) @@ -194781,12 +191780,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.smt2.expected - unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target unzip.smt2_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input unzip.smt2.zip)) @@ -194805,12 +191803,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.smt2.expected - unzip.smt2_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps unzip.smt2_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target unzip.smt2_cdcl.output) (deps (:input unzip.smt2.zip)) @@ -194828,10 +191825,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.smt2.expected unzip.smt2_cdcl.output))) + (deps unzip.smt2_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_cdcl.output))) (rule (target unzip.smt2_tableaux_cdcl.output) (deps (:input unzip.smt2.zip)) @@ -194849,10 +191847,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.smt2.expected unzip.smt2_tableaux_cdcl.output))) + (deps unzip.smt2_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_tableaux_cdcl.output))) (rule (target unzip.smt2_tableaux.output) (deps (:input unzip.smt2.zip)) @@ -194870,10 +191869,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.smt2.expected unzip.smt2_tableaux.output))) + (deps unzip.smt2_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_tableaux.output))) (rule (target unzip.smt2_legacy.output) (deps (:input unzip.smt2.zip)) @@ -194890,10 +191890,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.smt2.expected unzip.smt2_legacy.output))) + (deps unzip.smt2_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_legacy.output))) (rule (target unzip.smt2_dolmen.output) (deps (:input unzip.smt2.zip)) @@ -194910,10 +191911,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.smt2.expected unzip.smt2_dolmen.output))) + (deps unzip.smt2_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_dolmen.output))) (rule (target unzip.smt2_fpa.output) (deps (:input unzip.smt2.zip)) @@ -194930,10 +191932,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.smt2.expected unzip.smt2_fpa.output))) + (deps unzip.smt2_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.smt2.expected unzip.smt2_fpa.output))) (rule (target unzip.ae_ci_cdcl_no_minimal_bj.output) (deps (:input unzip.ae.zip)) @@ -194952,10 +191955,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_ci_cdcl_no_minimal_bj.output))) + (deps unzip.ae_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_ci_cdcl_no_minimal_bj.output))) (rule (target unzip.ae_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input unzip.ae.zip)) @@ -194976,12 +191980,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.ae.expected - unzip.ae_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps unzip.ae_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input unzip.ae.zip)) @@ -195001,12 +192004,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.ae.expected - unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target unzip.ae_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input unzip.ae.zip)) @@ -195025,12 +192027,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.ae.expected - unzip.ae_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps unzip.ae_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input unzip.ae.zip)) @@ -195049,12 +192050,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - unzip.ae.expected - unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target unzip.ae_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input unzip.ae.zip)) @@ -195073,10 +192073,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps unzip.ae_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target unzip.ae_cdcl.output) (deps (:input unzip.ae.zip)) @@ -195094,10 +192095,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_cdcl.output))) + (deps unzip.ae_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_cdcl.output))) (rule (target unzip.ae_tableaux_cdcl.output) (deps (:input unzip.ae.zip)) @@ -195115,10 +192117,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_tableaux_cdcl.output))) + (deps unzip.ae_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_tableaux_cdcl.output))) (rule (target unzip.ae_tableaux.output) (deps (:input unzip.ae.zip)) @@ -195136,10 +192139,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_tableaux.output))) + (deps unzip.ae_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_tableaux.output))) (rule (target unzip.ae_legacy.output) (deps (:input unzip.ae.zip)) @@ -195156,10 +192160,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_legacy.output))) + (deps unzip.ae_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_legacy.output))) (rule (target unzip.ae_dolmen.output) (deps (:input unzip.ae.zip)) @@ -195176,10 +192181,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_dolmen.output))) + (deps unzip.ae_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_dolmen.output))) (rule (target unzip.ae_fpa.output) (deps (:input unzip.ae.zip)) @@ -195196,10 +192202,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff unzip.ae.expected unzip.ae_fpa.output)))) + (deps unzip.ae_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff unzip.ae.expected unzip.ae_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -195222,18 +192229,19 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff check_sat.models.expected check_sat.models_tableaux.output)))) + (deps check_sat.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff check_sat.models.expected check_sat.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests ; Auto-generated part begin (subdir models/arith (rule - (target arith2.models_tableaux.output) - (deps (:input arith2.models.smt2)) + (target arith2.models.fail_tableaux.output) + (deps (:input arith2.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195248,13 +192256,14 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff arith2.models.expected arith2.models_tableaux.output))) + (deps arith2.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff arith2.models.fail.expected arith2.models.fail_tableaux.output))))) (rule - (target arith1.models_tableaux.output) - (deps (:input arith1.models.smt2)) + (target arith1.models.fail_tableaux.output) + (deps (:input arith1.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195269,18 +192278,19 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff arith1.models.expected arith1.models_tableaux.output)))) + (deps arith1.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff arith1.models.fail.expected arith1.models.fail_tableaux.output)))))) ; Auto-generated part end ; File auto-generated by gentests ; Auto-generated part begin (subdir models/bool (rule - (target bool2.models_tableaux.output) - (deps (:input bool2.models.smt2)) + (target bool2.models.fail_tableaux.output) + (deps (:input bool2.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195295,13 +192305,14 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bool2.models.expected bool2.models_tableaux.output))) + (deps bool2.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff bool2.models.fail.expected bool2.models.fail_tableaux.output))))) (rule - (target bool1.models_tableaux.output) - (deps (:input bool1.models.smt2)) + (target bool1.models.fail_tableaux.output) + (deps (:input bool1.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195316,10 +192327,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bool1.models.expected bool1.models_tableaux.output)))) + (deps bool1.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff bool1.models.fail.expected bool1.models.fail_tableaux.output)))))) ; Auto-generated part end ; File auto-generated by gentests @@ -195342,18 +192354,19 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 719.models.expected 719.models_tableaux.output)))) + (deps 719.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 719.models.expected 719.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests ; Auto-generated part begin (subdir models/issues/715 (rule - (target 715_2.models_tableaux.output) - (deps (:input 715_2.models.smt2)) + (target 715_2.models.fail_tableaux.output) + (deps (:input 715_2.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195368,10 +192381,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 715_2.models.expected 715_2.models_tableaux.output))) + (deps 715_2.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff 715_2.models.fail.expected 715_2.models.fail_tableaux.output))))) (rule (target 715_1.models_tableaux.output) (deps (:input 715_1.models.ae)) @@ -195389,18 +192403,19 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff 715_1.models.expected 715_1.models_tableaux.output)))) + (deps 715_1.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 715_1.models.expected 715_1.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests ; Auto-generated part begin (subdir models/records (rule - (target record1.models_tableaux.output) - (deps (:input record1.models.smt2)) + (target record1.models.fail_tableaux.output) + (deps (:input record1.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195415,18 +192430,19 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff record1.models.expected record1.models_tableaux.output)))) + (deps record1.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff record1.models.fail.expected record1.models.fail_tableaux.output)))))) ; Auto-generated part end ; File auto-generated by gentests ; Auto-generated part begin (subdir models/uf (rule - (target uf2.models_tableaux.output) - (deps (:input uf2.models.smt2)) + (target uf2.models.fail_tableaux.output) + (deps (:input uf2.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195441,13 +192457,14 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff uf2.models.expected uf2.models_tableaux.output))) + (deps uf2.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff uf2.models.fail.expected uf2.models.fail_tableaux.output))))) (rule - (target uf1.models_tableaux.output) - (deps (:input uf1.models.smt2)) + (target uf1.models.fail_tableaux.output) + (deps (:input uf1.models.fail.smt2)) (package alt-ergo) (action (chdir %{workspace_root} @@ -195462,10 +192479,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff uf1.models.expected uf1.models_tableaux.output)))) + (deps uf1.models.fail_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (ignore-stdout (with-accepted-exit-codes (not 0) (run diff uf1.models.fail.expected uf1.models.fail_tableaux.output)))))) ; Auto-generated part end ; File auto-generated by gentests @@ -195489,12 +192507,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism008.ae)) @@ -195515,12 +192532,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism008.ae)) @@ -195540,12 +192556,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism008.ae)) @@ -195564,12 +192579,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism008.ae)) @@ -195588,12 +192602,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism008.ae)) @@ -195612,12 +192625,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism008_cdcl.output) (deps (:input testfile-polymorphism008.ae)) @@ -195635,12 +192647,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_cdcl.output))) + (deps testfile-polymorphism008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_cdcl.output))) (rule (target testfile-polymorphism008_tableaux_cdcl.output) (deps (:input testfile-polymorphism008.ae)) @@ -195658,12 +192669,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_tableaux_cdcl.output))) + (deps testfile-polymorphism008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_tableaux_cdcl.output))) (rule (target testfile-polymorphism008_tableaux.output) (deps (:input testfile-polymorphism008.ae)) @@ -195681,12 +192691,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_tableaux.output))) + (deps testfile-polymorphism008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_tableaux.output))) (rule (target testfile-polymorphism008_legacy.output) (deps (:input testfile-polymorphism008.ae)) @@ -195703,12 +192712,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_legacy.output))) + (deps testfile-polymorphism008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_legacy.output))) (rule (target testfile-polymorphism008_dolmen.output) (deps (:input testfile-polymorphism008.ae)) @@ -195725,12 +192733,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_dolmen.output))) + (deps testfile-polymorphism008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_dolmen.output))) (rule (target testfile-polymorphism008_fpa.output) (deps (:input testfile-polymorphism008.ae)) @@ -195747,12 +192754,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism008.expected - testfile-polymorphism008_fpa.output))) + (deps testfile-polymorphism008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism008.expected testfile-polymorphism008_fpa.output))) (rule (target testfile-polymorphism007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism007.ae)) @@ -195771,12 +192777,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism007.ae)) @@ -195797,12 +192802,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism007.ae)) @@ -195822,12 +192826,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism007.ae)) @@ -195846,12 +192849,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism007.ae)) @@ -195870,12 +192872,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism007.ae)) @@ -195894,12 +192895,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism007_cdcl.output) (deps (:input testfile-polymorphism007.ae)) @@ -195917,12 +192917,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_cdcl.output))) + (deps testfile-polymorphism007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_cdcl.output))) (rule (target testfile-polymorphism007_tableaux_cdcl.output) (deps (:input testfile-polymorphism007.ae)) @@ -195940,12 +192939,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_tableaux_cdcl.output))) + (deps testfile-polymorphism007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_tableaux_cdcl.output))) (rule (target testfile-polymorphism007_tableaux.output) (deps (:input testfile-polymorphism007.ae)) @@ -195963,12 +192961,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_tableaux.output))) + (deps testfile-polymorphism007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_tableaux.output))) (rule (target testfile-polymorphism007_legacy.output) (deps (:input testfile-polymorphism007.ae)) @@ -195985,12 +192982,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_legacy.output))) + (deps testfile-polymorphism007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_legacy.output))) (rule (target testfile-polymorphism007_dolmen.output) (deps (:input testfile-polymorphism007.ae)) @@ -196007,12 +193003,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_dolmen.output))) + (deps testfile-polymorphism007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_dolmen.output))) (rule (target testfile-polymorphism007_fpa.output) (deps (:input testfile-polymorphism007.ae)) @@ -196029,12 +193024,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism007.expected - testfile-polymorphism007_fpa.output))) + (deps testfile-polymorphism007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism007.expected testfile-polymorphism007_fpa.output))) (rule (target testfile-polymorphism006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism006.ae)) @@ -196053,12 +193047,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism006.ae)) @@ -196079,12 +193072,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism006.ae)) @@ -196104,12 +193096,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism006.ae)) @@ -196128,12 +193119,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism006.ae)) @@ -196152,12 +193142,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism006.ae)) @@ -196176,12 +193165,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism006_cdcl.output) (deps (:input testfile-polymorphism006.ae)) @@ -196199,12 +193187,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_cdcl.output))) + (deps testfile-polymorphism006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_cdcl.output))) (rule (target testfile-polymorphism006_tableaux_cdcl.output) (deps (:input testfile-polymorphism006.ae)) @@ -196222,12 +193209,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_tableaux_cdcl.output))) + (deps testfile-polymorphism006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_tableaux_cdcl.output))) (rule (target testfile-polymorphism006_tableaux.output) (deps (:input testfile-polymorphism006.ae)) @@ -196245,12 +193231,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_tableaux.output))) + (deps testfile-polymorphism006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_tableaux.output))) (rule (target testfile-polymorphism006_legacy.output) (deps (:input testfile-polymorphism006.ae)) @@ -196267,12 +193252,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_legacy.output))) + (deps testfile-polymorphism006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_legacy.output))) (rule (target testfile-polymorphism006_dolmen.output) (deps (:input testfile-polymorphism006.ae)) @@ -196289,12 +193273,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_dolmen.output))) + (deps testfile-polymorphism006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_dolmen.output))) (rule (target testfile-polymorphism006_fpa.output) (deps (:input testfile-polymorphism006.ae)) @@ -196311,12 +193294,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism006.expected - testfile-polymorphism006_fpa.output))) + (deps testfile-polymorphism006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism006.expected testfile-polymorphism006_fpa.output))) (rule (target testfile-polymorphism005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism005.ae)) @@ -196335,12 +193317,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism005.ae)) @@ -196361,12 +193342,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism005.ae)) @@ -196386,12 +193366,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism005.ae)) @@ -196410,12 +193389,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism005.ae)) @@ -196434,12 +193412,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism005.ae)) @@ -196458,12 +193435,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism005_cdcl.output) (deps (:input testfile-polymorphism005.ae)) @@ -196481,12 +193457,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_cdcl.output))) + (deps testfile-polymorphism005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_cdcl.output))) (rule (target testfile-polymorphism005_tableaux_cdcl.output) (deps (:input testfile-polymorphism005.ae)) @@ -196504,12 +193479,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_tableaux_cdcl.output))) + (deps testfile-polymorphism005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_tableaux_cdcl.output))) (rule (target testfile-polymorphism005_tableaux.output) (deps (:input testfile-polymorphism005.ae)) @@ -196527,12 +193501,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_tableaux.output))) + (deps testfile-polymorphism005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_tableaux.output))) (rule (target testfile-polymorphism005_legacy.output) (deps (:input testfile-polymorphism005.ae)) @@ -196549,12 +193522,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_legacy.output))) + (deps testfile-polymorphism005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_legacy.output))) (rule (target testfile-polymorphism005_dolmen.output) (deps (:input testfile-polymorphism005.ae)) @@ -196571,12 +193543,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_dolmen.output))) + (deps testfile-polymorphism005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_dolmen.output))) (rule (target testfile-polymorphism005_fpa.output) (deps (:input testfile-polymorphism005.ae)) @@ -196593,12 +193564,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism005.expected - testfile-polymorphism005_fpa.output))) + (deps testfile-polymorphism005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism005.expected testfile-polymorphism005_fpa.output))) (rule (target testfile-polymorphism004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism004.ae)) @@ -196617,12 +193587,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism004.ae)) @@ -196643,12 +193612,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism004.ae)) @@ -196668,12 +193636,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism004.ae)) @@ -196692,12 +193659,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism004.ae)) @@ -196716,12 +193682,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism004.ae)) @@ -196740,12 +193705,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism004_cdcl.output) (deps (:input testfile-polymorphism004.ae)) @@ -196763,12 +193727,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_cdcl.output))) + (deps testfile-polymorphism004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_cdcl.output))) (rule (target testfile-polymorphism004_tableaux_cdcl.output) (deps (:input testfile-polymorphism004.ae)) @@ -196786,12 +193749,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_tableaux_cdcl.output))) + (deps testfile-polymorphism004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_tableaux_cdcl.output))) (rule (target testfile-polymorphism004_tableaux.output) (deps (:input testfile-polymorphism004.ae)) @@ -196809,12 +193771,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_tableaux.output))) + (deps testfile-polymorphism004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_tableaux.output))) (rule (target testfile-polymorphism004_legacy.output) (deps (:input testfile-polymorphism004.ae)) @@ -196831,12 +193792,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_legacy.output))) + (deps testfile-polymorphism004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_legacy.output))) (rule (target testfile-polymorphism004_dolmen.output) (deps (:input testfile-polymorphism004.ae)) @@ -196853,12 +193813,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_dolmen.output))) + (deps testfile-polymorphism004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_dolmen.output))) (rule (target testfile-polymorphism004_fpa.output) (deps (:input testfile-polymorphism004.ae)) @@ -196875,12 +193834,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism004.expected - testfile-polymorphism004_fpa.output))) + (deps testfile-polymorphism004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism004.expected testfile-polymorphism004_fpa.output))) (rule (target testfile-polymorphism003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism003.ae)) @@ -196899,12 +193857,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism003.ae)) @@ -196925,12 +193882,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism003.ae)) @@ -196950,12 +193906,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism003.ae)) @@ -196974,12 +193929,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism003.ae)) @@ -196998,12 +193952,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism003.ae)) @@ -197022,12 +193975,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism003_cdcl.output) (deps (:input testfile-polymorphism003.ae)) @@ -197045,12 +193997,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_cdcl.output))) + (deps testfile-polymorphism003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_cdcl.output))) (rule (target testfile-polymorphism003_tableaux_cdcl.output) (deps (:input testfile-polymorphism003.ae)) @@ -197068,12 +194019,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_tableaux_cdcl.output))) + (deps testfile-polymorphism003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_tableaux_cdcl.output))) (rule (target testfile-polymorphism003_tableaux.output) (deps (:input testfile-polymorphism003.ae)) @@ -197091,12 +194041,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_tableaux.output))) + (deps testfile-polymorphism003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_tableaux.output))) (rule (target testfile-polymorphism003_legacy.output) (deps (:input testfile-polymorphism003.ae)) @@ -197113,12 +194062,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_legacy.output))) + (deps testfile-polymorphism003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_legacy.output))) (rule (target testfile-polymorphism003_dolmen.output) (deps (:input testfile-polymorphism003.ae)) @@ -197135,12 +194083,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_dolmen.output))) + (deps testfile-polymorphism003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_dolmen.output))) (rule (target testfile-polymorphism003_fpa.output) (deps (:input testfile-polymorphism003.ae)) @@ -197157,12 +194104,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism003.expected - testfile-polymorphism003_fpa.output))) + (deps testfile-polymorphism003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism003.expected testfile-polymorphism003_fpa.output))) (rule (target testfile-polymorphism002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism002.ae)) @@ -197181,12 +194127,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism002.ae)) @@ -197207,12 +194152,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism002.ae)) @@ -197232,12 +194176,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism002.ae)) @@ -197256,12 +194199,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism002.ae)) @@ -197280,12 +194222,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism002.ae)) @@ -197304,12 +194245,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism002_cdcl.output) (deps (:input testfile-polymorphism002.ae)) @@ -197327,12 +194267,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_cdcl.output))) + (deps testfile-polymorphism002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_cdcl.output))) (rule (target testfile-polymorphism002_tableaux_cdcl.output) (deps (:input testfile-polymorphism002.ae)) @@ -197350,12 +194289,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_tableaux_cdcl.output))) + (deps testfile-polymorphism002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_tableaux_cdcl.output))) (rule (target testfile-polymorphism002_tableaux.output) (deps (:input testfile-polymorphism002.ae)) @@ -197373,12 +194311,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_tableaux.output))) + (deps testfile-polymorphism002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_tableaux.output))) (rule (target testfile-polymorphism002_legacy.output) (deps (:input testfile-polymorphism002.ae)) @@ -197395,12 +194332,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_legacy.output))) + (deps testfile-polymorphism002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_legacy.output))) (rule (target testfile-polymorphism002_dolmen.output) (deps (:input testfile-polymorphism002.ae)) @@ -197417,12 +194353,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_dolmen.output))) + (deps testfile-polymorphism002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_dolmen.output))) (rule (target testfile-polymorphism002_fpa.output) (deps (:input testfile-polymorphism002.ae)) @@ -197439,12 +194374,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism002.expected - testfile-polymorphism002_fpa.output))) + (deps testfile-polymorphism002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism002.expected testfile-polymorphism002_fpa.output))) (rule (target testfile-polymorphism001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism001.ae)) @@ -197463,12 +194397,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism001.ae)) @@ -197489,12 +194422,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-polymorphism001.ae)) @@ -197514,12 +194446,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-polymorphism001.ae)) @@ -197538,12 +194469,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-polymorphism001.ae)) @@ -197562,12 +194492,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-polymorphism001.ae)) @@ -197586,12 +194515,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-polymorphism001_cdcl.output) (deps (:input testfile-polymorphism001.ae)) @@ -197609,12 +194537,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_cdcl.output))) + (deps testfile-polymorphism001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_cdcl.output))) (rule (target testfile-polymorphism001_tableaux_cdcl.output) (deps (:input testfile-polymorphism001.ae)) @@ -197632,12 +194559,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_tableaux_cdcl.output))) + (deps testfile-polymorphism001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_tableaux_cdcl.output))) (rule (target testfile-polymorphism001_tableaux.output) (deps (:input testfile-polymorphism001.ae)) @@ -197655,12 +194581,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_tableaux.output))) + (deps testfile-polymorphism001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_tableaux.output))) (rule (target testfile-polymorphism001_legacy.output) (deps (:input testfile-polymorphism001.ae)) @@ -197677,12 +194602,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_legacy.output))) + (deps testfile-polymorphism001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_legacy.output))) (rule (target testfile-polymorphism001_dolmen.output) (deps (:input testfile-polymorphism001.ae)) @@ -197699,12 +194623,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_dolmen.output))) + (deps testfile-polymorphism001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_dolmen.output))) (rule (target testfile-polymorphism001_fpa.output) (deps (:input testfile-polymorphism001.ae)) @@ -197721,12 +194644,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-polymorphism001.expected - testfile-polymorphism001_fpa.output)))) + (deps testfile-polymorphism001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-polymorphism001.expected testfile-polymorphism001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -197750,12 +194672,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant014.expected - testfile-quant014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant014.ae)) @@ -197776,12 +194697,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant014.expected - testfile-quant014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant014.ae)) @@ -197801,12 +194721,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant014.expected - testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant014.ae)) @@ -197825,12 +194744,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant014.expected - testfile-quant014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant014.ae)) @@ -197849,12 +194767,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant014.expected - testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant014.ae)) @@ -197873,12 +194790,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant014.expected - testfile-quant014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant014_cdcl.output) (deps (:input testfile-quant014.ae)) @@ -197896,10 +194812,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant014.expected testfile-quant014_cdcl.output))) + (deps testfile-quant014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_cdcl.output))) (rule (target testfile-quant014_tableaux_cdcl.output) (deps (:input testfile-quant014.ae)) @@ -197917,12 +194834,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant014.expected - testfile-quant014_tableaux_cdcl.output))) + (deps testfile-quant014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_tableaux_cdcl.output))) (rule (target testfile-quant014_tableaux.output) (deps (:input testfile-quant014.ae)) @@ -197940,10 +194856,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant014.expected testfile-quant014_tableaux.output))) + (deps testfile-quant014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_tableaux.output))) (rule (target testfile-quant014_legacy.output) (deps (:input testfile-quant014.ae)) @@ -197960,10 +194877,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant014.expected testfile-quant014_legacy.output))) + (deps testfile-quant014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_legacy.output))) (rule (target testfile-quant014_dolmen.output) (deps (:input testfile-quant014.ae)) @@ -197980,10 +194898,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant014.expected testfile-quant014_dolmen.output))) + (deps testfile-quant014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_dolmen.output))) (rule (target testfile-quant014_fpa.output) (deps (:input testfile-quant014.ae)) @@ -198000,10 +194919,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant014.expected testfile-quant014_fpa.output))) + (deps testfile-quant014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant014.expected testfile-quant014_fpa.output))) (rule (target testfile-quant013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant013.ae)) @@ -198022,12 +194942,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant013.expected - testfile-quant013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant013.ae)) @@ -198048,12 +194967,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant013.expected - testfile-quant013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant013.ae)) @@ -198073,12 +194991,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant013.expected - testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant013.ae)) @@ -198097,12 +195014,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant013.expected - testfile-quant013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant013.ae)) @@ -198121,12 +195037,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant013.expected - testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant013.ae)) @@ -198145,12 +195060,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant013.expected - testfile-quant013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant013_cdcl.output) (deps (:input testfile-quant013.ae)) @@ -198168,10 +195082,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant013.expected testfile-quant013_cdcl.output))) + (deps testfile-quant013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_cdcl.output))) (rule (target testfile-quant013_tableaux_cdcl.output) (deps (:input testfile-quant013.ae)) @@ -198189,12 +195104,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant013.expected - testfile-quant013_tableaux_cdcl.output))) + (deps testfile-quant013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_tableaux_cdcl.output))) (rule (target testfile-quant013_tableaux.output) (deps (:input testfile-quant013.ae)) @@ -198212,10 +195126,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant013.expected testfile-quant013_tableaux.output))) + (deps testfile-quant013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_tableaux.output))) (rule (target testfile-quant013_legacy.output) (deps (:input testfile-quant013.ae)) @@ -198232,10 +195147,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant013.expected testfile-quant013_legacy.output))) + (deps testfile-quant013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_legacy.output))) (rule (target testfile-quant013_dolmen.output) (deps (:input testfile-quant013.ae)) @@ -198252,10 +195168,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant013.expected testfile-quant013_dolmen.output))) + (deps testfile-quant013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_dolmen.output))) (rule (target testfile-quant013_fpa.output) (deps (:input testfile-quant013.ae)) @@ -198272,10 +195189,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant013.expected testfile-quant013_fpa.output))) + (deps testfile-quant013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant013.expected testfile-quant013_fpa.output))) (rule (target testfile-quant012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant012.ae)) @@ -198294,12 +195212,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant012.expected - testfile-quant012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant012.ae)) @@ -198320,12 +195237,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant012.expected - testfile-quant012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant012.ae)) @@ -198345,12 +195261,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant012.expected - testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant012.ae)) @@ -198369,12 +195284,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant012.expected - testfile-quant012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant012.ae)) @@ -198393,12 +195307,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant012.expected - testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant012.ae)) @@ -198417,12 +195330,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant012.expected - testfile-quant012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant012_cdcl.output) (deps (:input testfile-quant012.ae)) @@ -198440,10 +195352,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant012.expected testfile-quant012_cdcl.output))) + (deps testfile-quant012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_cdcl.output))) (rule (target testfile-quant012_tableaux_cdcl.output) (deps (:input testfile-quant012.ae)) @@ -198461,12 +195374,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant012.expected - testfile-quant012_tableaux_cdcl.output))) + (deps testfile-quant012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_tableaux_cdcl.output))) (rule (target testfile-quant012_tableaux.output) (deps (:input testfile-quant012.ae)) @@ -198484,10 +195396,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant012.expected testfile-quant012_tableaux.output))) + (deps testfile-quant012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_tableaux.output))) (rule (target testfile-quant012_legacy.output) (deps (:input testfile-quant012.ae)) @@ -198504,10 +195417,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant012.expected testfile-quant012_legacy.output))) + (deps testfile-quant012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_legacy.output))) (rule (target testfile-quant012_dolmen.output) (deps (:input testfile-quant012.ae)) @@ -198524,10 +195438,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant012.expected testfile-quant012_dolmen.output))) + (deps testfile-quant012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_dolmen.output))) (rule (target testfile-quant012_fpa.output) (deps (:input testfile-quant012.ae)) @@ -198544,10 +195459,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant012.expected testfile-quant012_fpa.output))) + (deps testfile-quant012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant012.expected testfile-quant012_fpa.output))) (rule (target testfile-quant011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant011.ae)) @@ -198566,12 +195482,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant011.expected - testfile-quant011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant011.ae)) @@ -198592,12 +195507,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant011.expected - testfile-quant011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant011.ae)) @@ -198617,12 +195531,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant011.expected - testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant011.ae)) @@ -198641,12 +195554,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant011.expected - testfile-quant011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant011.ae)) @@ -198665,12 +195577,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant011.expected - testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant011.ae)) @@ -198689,12 +195600,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant011.expected - testfile-quant011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant011_cdcl.output) (deps (:input testfile-quant011.ae)) @@ -198712,10 +195622,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant011.expected testfile-quant011_cdcl.output))) + (deps testfile-quant011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_cdcl.output))) (rule (target testfile-quant011_tableaux_cdcl.output) (deps (:input testfile-quant011.ae)) @@ -198733,12 +195644,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant011.expected - testfile-quant011_tableaux_cdcl.output))) + (deps testfile-quant011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_tableaux_cdcl.output))) (rule (target testfile-quant011_tableaux.output) (deps (:input testfile-quant011.ae)) @@ -198756,10 +195666,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant011.expected testfile-quant011_tableaux.output))) + (deps testfile-quant011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_tableaux.output))) (rule (target testfile-quant011_legacy.output) (deps (:input testfile-quant011.ae)) @@ -198776,10 +195687,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant011.expected testfile-quant011_legacy.output))) + (deps testfile-quant011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_legacy.output))) (rule (target testfile-quant011_dolmen.output) (deps (:input testfile-quant011.ae)) @@ -198796,10 +195708,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant011.expected testfile-quant011_dolmen.output))) + (deps testfile-quant011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_dolmen.output))) (rule (target testfile-quant011_fpa.output) (deps (:input testfile-quant011.ae)) @@ -198816,10 +195729,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant011.expected testfile-quant011_fpa.output))) + (deps testfile-quant011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant011.expected testfile-quant011_fpa.output))) (rule (target testfile-quant010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant010.ae)) @@ -198838,12 +195752,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant010.expected - testfile-quant010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant010.ae)) @@ -198864,12 +195777,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant010.expected - testfile-quant010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant010.ae)) @@ -198889,12 +195801,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant010.expected - testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant010.ae)) @@ -198913,12 +195824,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant010.expected - testfile-quant010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant010.ae)) @@ -198937,12 +195847,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant010.expected - testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant010.ae)) @@ -198961,12 +195870,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant010.expected - testfile-quant010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant010_cdcl.output) (deps (:input testfile-quant010.ae)) @@ -198984,10 +195892,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant010.expected testfile-quant010_cdcl.output))) + (deps testfile-quant010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_cdcl.output))) (rule (target testfile-quant010_tableaux_cdcl.output) (deps (:input testfile-quant010.ae)) @@ -199005,12 +195914,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant010.expected - testfile-quant010_tableaux_cdcl.output))) + (deps testfile-quant010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_tableaux_cdcl.output))) (rule (target testfile-quant010_tableaux.output) (deps (:input testfile-quant010.ae)) @@ -199028,10 +195936,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant010.expected testfile-quant010_tableaux.output))) + (deps testfile-quant010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_tableaux.output))) (rule (target testfile-quant010_legacy.output) (deps (:input testfile-quant010.ae)) @@ -199048,10 +195957,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant010.expected testfile-quant010_legacy.output))) + (deps testfile-quant010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_legacy.output))) (rule (target testfile-quant010_dolmen.output) (deps (:input testfile-quant010.ae)) @@ -199068,10 +195978,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant010.expected testfile-quant010_dolmen.output))) + (deps testfile-quant010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_dolmen.output))) (rule (target testfile-quant010_fpa.output) (deps (:input testfile-quant010.ae)) @@ -199088,10 +195999,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant010.expected testfile-quant010_fpa.output))) + (deps testfile-quant010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant010.expected testfile-quant010_fpa.output))) (rule (target testfile-quant009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant009.ae)) @@ -199110,12 +196022,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant009.expected - testfile-quant009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant009.ae)) @@ -199136,12 +196047,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant009.expected - testfile-quant009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant009.ae)) @@ -199161,12 +196071,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant009.expected - testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant009.ae)) @@ -199185,12 +196094,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant009.expected - testfile-quant009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant009.ae)) @@ -199209,12 +196117,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant009.expected - testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant009.ae)) @@ -199233,12 +196140,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant009.expected - testfile-quant009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant009_cdcl.output) (deps (:input testfile-quant009.ae)) @@ -199256,10 +196162,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant009.expected testfile-quant009_cdcl.output))) + (deps testfile-quant009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_cdcl.output))) (rule (target testfile-quant009_tableaux_cdcl.output) (deps (:input testfile-quant009.ae)) @@ -199277,12 +196184,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant009.expected - testfile-quant009_tableaux_cdcl.output))) + (deps testfile-quant009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_tableaux_cdcl.output))) (rule (target testfile-quant009_tableaux.output) (deps (:input testfile-quant009.ae)) @@ -199300,10 +196206,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant009.expected testfile-quant009_tableaux.output))) + (deps testfile-quant009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_tableaux.output))) (rule (target testfile-quant009_legacy.output) (deps (:input testfile-quant009.ae)) @@ -199320,10 +196227,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant009.expected testfile-quant009_legacy.output))) + (deps testfile-quant009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_legacy.output))) (rule (target testfile-quant009_dolmen.output) (deps (:input testfile-quant009.ae)) @@ -199340,10 +196248,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant009.expected testfile-quant009_dolmen.output))) + (deps testfile-quant009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_dolmen.output))) (rule (target testfile-quant009_fpa.output) (deps (:input testfile-quant009.ae)) @@ -199360,10 +196269,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant009.expected testfile-quant009_fpa.output))) + (deps testfile-quant009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant009.expected testfile-quant009_fpa.output))) (rule (target testfile-quant008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant008.ae)) @@ -199382,12 +196292,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant008.expected - testfile-quant008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant008.ae)) @@ -199408,12 +196317,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant008.expected - testfile-quant008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant008.ae)) @@ -199433,12 +196341,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant008.expected - testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant008.ae)) @@ -199457,12 +196364,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant008.expected - testfile-quant008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant008.ae)) @@ -199481,12 +196387,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant008.expected - testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant008.ae)) @@ -199505,12 +196410,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant008.expected - testfile-quant008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant008_cdcl.output) (deps (:input testfile-quant008.ae)) @@ -199528,10 +196432,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant008.expected testfile-quant008_cdcl.output))) + (deps testfile-quant008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_cdcl.output))) (rule (target testfile-quant008_tableaux_cdcl.output) (deps (:input testfile-quant008.ae)) @@ -199549,12 +196454,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant008.expected - testfile-quant008_tableaux_cdcl.output))) + (deps testfile-quant008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_tableaux_cdcl.output))) (rule (target testfile-quant008_tableaux.output) (deps (:input testfile-quant008.ae)) @@ -199572,10 +196476,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant008.expected testfile-quant008_tableaux.output))) + (deps testfile-quant008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_tableaux.output))) (rule (target testfile-quant008_legacy.output) (deps (:input testfile-quant008.ae)) @@ -199592,10 +196497,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant008.expected testfile-quant008_legacy.output))) + (deps testfile-quant008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_legacy.output))) (rule (target testfile-quant008_dolmen.output) (deps (:input testfile-quant008.ae)) @@ -199612,10 +196518,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant008.expected testfile-quant008_dolmen.output))) + (deps testfile-quant008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_dolmen.output))) (rule (target testfile-quant008_fpa.output) (deps (:input testfile-quant008.ae)) @@ -199632,10 +196539,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant008.expected testfile-quant008_fpa.output))) + (deps testfile-quant008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant008.expected testfile-quant008_fpa.output))) (rule (target testfile-quant007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant007.ae)) @@ -199654,12 +196562,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant007.expected - testfile-quant007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant007.ae)) @@ -199680,12 +196587,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant007.expected - testfile-quant007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant007.ae)) @@ -199705,12 +196611,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant007.expected - testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant007.ae)) @@ -199729,12 +196634,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant007.expected - testfile-quant007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant007.ae)) @@ -199753,12 +196657,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant007.expected - testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant007.ae)) @@ -199777,12 +196680,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant007.expected - testfile-quant007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant007_cdcl.output) (deps (:input testfile-quant007.ae)) @@ -199800,10 +196702,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant007.expected testfile-quant007_cdcl.output))) + (deps testfile-quant007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_cdcl.output))) (rule (target testfile-quant007_tableaux_cdcl.output) (deps (:input testfile-quant007.ae)) @@ -199821,12 +196724,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant007.expected - testfile-quant007_tableaux_cdcl.output))) + (deps testfile-quant007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_tableaux_cdcl.output))) (rule (target testfile-quant007_tableaux.output) (deps (:input testfile-quant007.ae)) @@ -199844,10 +196746,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant007.expected testfile-quant007_tableaux.output))) + (deps testfile-quant007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_tableaux.output))) (rule (target testfile-quant007_legacy.output) (deps (:input testfile-quant007.ae)) @@ -199864,10 +196767,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant007.expected testfile-quant007_legacy.output))) + (deps testfile-quant007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_legacy.output))) (rule (target testfile-quant007_dolmen.output) (deps (:input testfile-quant007.ae)) @@ -199884,10 +196788,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant007.expected testfile-quant007_dolmen.output))) + (deps testfile-quant007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_dolmen.output))) (rule (target testfile-quant007_fpa.output) (deps (:input testfile-quant007.ae)) @@ -199904,10 +196809,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant007.expected testfile-quant007_fpa.output))) + (deps testfile-quant007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant007.expected testfile-quant007_fpa.output))) (rule (target testfile-quant006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant006.ae)) @@ -199926,12 +196832,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant006.expected - testfile-quant006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant006.ae)) @@ -199952,12 +196857,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant006.expected - testfile-quant006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant006.ae)) @@ -199977,12 +196881,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant006.expected - testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant006.ae)) @@ -200001,12 +196904,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant006.expected - testfile-quant006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant006.ae)) @@ -200025,12 +196927,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant006.expected - testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant006.ae)) @@ -200049,12 +196950,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant006.expected - testfile-quant006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant006_cdcl.output) (deps (:input testfile-quant006.ae)) @@ -200072,10 +196972,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant006.expected testfile-quant006_cdcl.output))) + (deps testfile-quant006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_cdcl.output))) (rule (target testfile-quant006_tableaux_cdcl.output) (deps (:input testfile-quant006.ae)) @@ -200093,12 +196994,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant006.expected - testfile-quant006_tableaux_cdcl.output))) + (deps testfile-quant006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_tableaux_cdcl.output))) (rule (target testfile-quant006_tableaux.output) (deps (:input testfile-quant006.ae)) @@ -200116,10 +197016,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant006.expected testfile-quant006_tableaux.output))) + (deps testfile-quant006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_tableaux.output))) (rule (target testfile-quant006_legacy.output) (deps (:input testfile-quant006.ae)) @@ -200136,10 +197037,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant006.expected testfile-quant006_legacy.output))) + (deps testfile-quant006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_legacy.output))) (rule (target testfile-quant006_dolmen.output) (deps (:input testfile-quant006.ae)) @@ -200156,10 +197058,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant006.expected testfile-quant006_dolmen.output))) + (deps testfile-quant006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_dolmen.output))) (rule (target testfile-quant006_fpa.output) (deps (:input testfile-quant006.ae)) @@ -200176,10 +197079,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant006.expected testfile-quant006_fpa.output))) + (deps testfile-quant006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant006.expected testfile-quant006_fpa.output))) (rule (target testfile-quant005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant005.ae)) @@ -200198,12 +197102,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant005.expected - testfile-quant005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant005.ae)) @@ -200224,12 +197127,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant005.expected - testfile-quant005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant005.ae)) @@ -200249,12 +197151,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant005.expected - testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant005.ae)) @@ -200273,12 +197174,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant005.expected - testfile-quant005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant005.ae)) @@ -200297,12 +197197,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant005.expected - testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant005.ae)) @@ -200321,12 +197220,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant005.expected - testfile-quant005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant005_cdcl.output) (deps (:input testfile-quant005.ae)) @@ -200344,10 +197242,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant005.expected testfile-quant005_cdcl.output))) + (deps testfile-quant005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_cdcl.output))) (rule (target testfile-quant005_tableaux_cdcl.output) (deps (:input testfile-quant005.ae)) @@ -200365,12 +197264,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant005.expected - testfile-quant005_tableaux_cdcl.output))) + (deps testfile-quant005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_tableaux_cdcl.output))) (rule (target testfile-quant005_tableaux.output) (deps (:input testfile-quant005.ae)) @@ -200388,10 +197286,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant005.expected testfile-quant005_tableaux.output))) + (deps testfile-quant005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_tableaux.output))) (rule (target testfile-quant005_legacy.output) (deps (:input testfile-quant005.ae)) @@ -200408,10 +197307,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant005.expected testfile-quant005_legacy.output))) + (deps testfile-quant005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_legacy.output))) (rule (target testfile-quant005_dolmen.output) (deps (:input testfile-quant005.ae)) @@ -200428,10 +197328,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant005.expected testfile-quant005_dolmen.output))) + (deps testfile-quant005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_dolmen.output))) (rule (target testfile-quant005_fpa.output) (deps (:input testfile-quant005.ae)) @@ -200448,10 +197349,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant005.expected testfile-quant005_fpa.output))) + (deps testfile-quant005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant005.expected testfile-quant005_fpa.output))) (rule (target testfile-quant004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant004.ae)) @@ -200470,12 +197372,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant004.expected - testfile-quant004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant004.ae)) @@ -200496,12 +197397,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant004.expected - testfile-quant004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant004.ae)) @@ -200521,12 +197421,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant004.expected - testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant004.ae)) @@ -200545,12 +197444,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant004.expected - testfile-quant004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant004.ae)) @@ -200569,12 +197467,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant004.expected - testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant004.ae)) @@ -200593,12 +197490,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant004.expected - testfile-quant004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant004_cdcl.output) (deps (:input testfile-quant004.ae)) @@ -200616,10 +197512,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant004.expected testfile-quant004_cdcl.output))) + (deps testfile-quant004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_cdcl.output))) (rule (target testfile-quant004_tableaux_cdcl.output) (deps (:input testfile-quant004.ae)) @@ -200637,12 +197534,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant004.expected - testfile-quant004_tableaux_cdcl.output))) + (deps testfile-quant004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_tableaux_cdcl.output))) (rule (target testfile-quant004_tableaux.output) (deps (:input testfile-quant004.ae)) @@ -200660,10 +197556,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant004.expected testfile-quant004_tableaux.output))) + (deps testfile-quant004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_tableaux.output))) (rule (target testfile-quant004_legacy.output) (deps (:input testfile-quant004.ae)) @@ -200680,10 +197577,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant004.expected testfile-quant004_legacy.output))) + (deps testfile-quant004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_legacy.output))) (rule (target testfile-quant004_dolmen.output) (deps (:input testfile-quant004.ae)) @@ -200700,10 +197598,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant004.expected testfile-quant004_dolmen.output))) + (deps testfile-quant004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_dolmen.output))) (rule (target testfile-quant004_fpa.output) (deps (:input testfile-quant004.ae)) @@ -200720,10 +197619,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant004.expected testfile-quant004_fpa.output))) + (deps testfile-quant004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant004.expected testfile-quant004_fpa.output))) (rule (target testfile-quant003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant003.ae)) @@ -200742,12 +197642,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant003.expected - testfile-quant003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant003.ae)) @@ -200768,12 +197667,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant003.expected - testfile-quant003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant003.ae)) @@ -200793,12 +197691,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant003.expected - testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant003.ae)) @@ -200817,12 +197714,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant003.expected - testfile-quant003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant003.ae)) @@ -200841,12 +197737,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant003.expected - testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant003.ae)) @@ -200865,12 +197760,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant003.expected - testfile-quant003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant003_cdcl.output) (deps (:input testfile-quant003.ae)) @@ -200888,10 +197782,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant003.expected testfile-quant003_cdcl.output))) + (deps testfile-quant003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_cdcl.output))) (rule (target testfile-quant003_tableaux_cdcl.output) (deps (:input testfile-quant003.ae)) @@ -200909,12 +197804,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant003.expected - testfile-quant003_tableaux_cdcl.output))) + (deps testfile-quant003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_tableaux_cdcl.output))) (rule (target testfile-quant003_tableaux.output) (deps (:input testfile-quant003.ae)) @@ -200932,10 +197826,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant003.expected testfile-quant003_tableaux.output))) + (deps testfile-quant003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_tableaux.output))) (rule (target testfile-quant003_legacy.output) (deps (:input testfile-quant003.ae)) @@ -200952,10 +197847,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant003.expected testfile-quant003_legacy.output))) + (deps testfile-quant003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_legacy.output))) (rule (target testfile-quant003_dolmen.output) (deps (:input testfile-quant003.ae)) @@ -200972,10 +197868,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant003.expected testfile-quant003_dolmen.output))) + (deps testfile-quant003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_dolmen.output))) (rule (target testfile-quant003_fpa.output) (deps (:input testfile-quant003.ae)) @@ -200992,10 +197889,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant003.expected testfile-quant003_fpa.output))) + (deps testfile-quant003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant003.expected testfile-quant003_fpa.output))) (rule (target testfile-quant002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant002.ae)) @@ -201014,12 +197912,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant002.expected - testfile-quant002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant002.ae)) @@ -201040,12 +197937,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant002.expected - testfile-quant002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant002.ae)) @@ -201065,12 +197961,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant002.expected - testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant002.ae)) @@ -201089,12 +197984,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant002.expected - testfile-quant002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant002.ae)) @@ -201113,12 +198007,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant002.expected - testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant002.ae)) @@ -201137,12 +198030,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant002.expected - testfile-quant002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant002_cdcl.output) (deps (:input testfile-quant002.ae)) @@ -201160,10 +198052,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant002.expected testfile-quant002_cdcl.output))) + (deps testfile-quant002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_cdcl.output))) (rule (target testfile-quant002_tableaux_cdcl.output) (deps (:input testfile-quant002.ae)) @@ -201181,12 +198074,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant002.expected - testfile-quant002_tableaux_cdcl.output))) + (deps testfile-quant002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_tableaux_cdcl.output))) (rule (target testfile-quant002_tableaux.output) (deps (:input testfile-quant002.ae)) @@ -201204,10 +198096,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant002.expected testfile-quant002_tableaux.output))) + (deps testfile-quant002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_tableaux.output))) (rule (target testfile-quant002_legacy.output) (deps (:input testfile-quant002.ae)) @@ -201224,10 +198117,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant002.expected testfile-quant002_legacy.output))) + (deps testfile-quant002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_legacy.output))) (rule (target testfile-quant002_dolmen.output) (deps (:input testfile-quant002.ae)) @@ -201244,10 +198138,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant002.expected testfile-quant002_dolmen.output))) + (deps testfile-quant002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_dolmen.output))) (rule (target testfile-quant002_fpa.output) (deps (:input testfile-quant002.ae)) @@ -201264,10 +198159,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant002.expected testfile-quant002_fpa.output))) + (deps testfile-quant002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant002.expected testfile-quant002_fpa.output))) (rule (target testfile-quant001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant001.ae)) @@ -201286,12 +198182,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant001.expected - testfile-quant001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant001.ae)) @@ -201312,12 +198207,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant001.expected - testfile-quant001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant001.ae)) @@ -201337,12 +198231,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant001.expected - testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant001.ae)) @@ -201361,12 +198254,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant001.expected - testfile-quant001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant001.ae)) @@ -201385,12 +198277,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant001.expected - testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant001.ae)) @@ -201409,12 +198300,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant001.expected - testfile-quant001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant001_cdcl.output) (deps (:input testfile-quant001.ae)) @@ -201432,10 +198322,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant001.expected testfile-quant001_cdcl.output))) + (deps testfile-quant001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_cdcl.output))) (rule (target testfile-quant001_tableaux_cdcl.output) (deps (:input testfile-quant001.ae)) @@ -201453,12 +198344,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant001.expected - testfile-quant001_tableaux_cdcl.output))) + (deps testfile-quant001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_tableaux_cdcl.output))) (rule (target testfile-quant001_tableaux.output) (deps (:input testfile-quant001.ae)) @@ -201476,10 +198366,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant001.expected testfile-quant001_tableaux.output))) + (deps testfile-quant001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_tableaux.output))) (rule (target testfile-quant001_legacy.output) (deps (:input testfile-quant001.ae)) @@ -201496,10 +198387,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant001.expected testfile-quant001_legacy.output))) + (deps testfile-quant001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_legacy.output))) (rule (target testfile-quant001_dolmen.output) (deps (:input testfile-quant001.ae)) @@ -201516,10 +198408,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant001.expected testfile-quant001_dolmen.output))) + (deps testfile-quant001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_dolmen.output))) (rule (target testfile-quant001_fpa.output) (deps (:input testfile-quant001.ae)) @@ -201536,10 +198429,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-quant001.expected testfile-quant001_fpa.output))) + (deps testfile-quant001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant001.expected testfile-quant001_fpa.output))) (rule (target testfile-quant-arith-002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201558,12 +198452,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant-arith-002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant-arith-002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201584,12 +198477,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant-arith-002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201609,12 +198501,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant-arith-002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201633,12 +198524,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant-arith-002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201657,12 +198547,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant-arith-002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201681,12 +198570,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant-arith-002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant-arith-002_cdcl.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201704,12 +198592,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_cdcl.output))) + (deps testfile-quant-arith-002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_cdcl.output))) (rule (target testfile-quant-arith-002_tableaux_cdcl.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201727,12 +198614,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_tableaux_cdcl.output))) + (deps testfile-quant-arith-002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_tableaux_cdcl.output))) (rule (target testfile-quant-arith-002_tableaux.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201750,12 +198636,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_tableaux.output))) + (deps testfile-quant-arith-002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_tableaux.output))) (rule (target testfile-quant-arith-002_legacy.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201772,12 +198657,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_legacy.output))) + (deps testfile-quant-arith-002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_legacy.output))) (rule (target testfile-quant-arith-002_dolmen.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201794,12 +198678,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_dolmen.output))) + (deps testfile-quant-arith-002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_dolmen.output))) (rule (target testfile-quant-arith-002_fpa.output) (deps (:input testfile-quant-arith-002.ae)) @@ -201816,12 +198699,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-002.expected - testfile-quant-arith-002_fpa.output))) + (deps testfile-quant-arith-002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-002.expected testfile-quant-arith-002_fpa.output))) (rule (target testfile-quant-arith-001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-quant-arith-001.ae)) @@ -201840,12 +198722,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-quant-arith-001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-quant-arith-001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant-arith-001.ae)) @@ -201866,12 +198747,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant-arith-001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-quant-arith-001.ae)) @@ -201891,12 +198771,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-quant-arith-001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-quant-arith-001.ae)) @@ -201915,12 +198794,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-quant-arith-001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-quant-arith-001.ae)) @@ -201939,12 +198817,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-quant-arith-001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-quant-arith-001.ae)) @@ -201963,12 +198840,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-quant-arith-001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-quant-arith-001_cdcl.output) (deps (:input testfile-quant-arith-001.ae)) @@ -201986,12 +198862,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_cdcl.output))) + (deps testfile-quant-arith-001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_cdcl.output))) (rule (target testfile-quant-arith-001_tableaux_cdcl.output) (deps (:input testfile-quant-arith-001.ae)) @@ -202009,12 +198884,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_tableaux_cdcl.output))) + (deps testfile-quant-arith-001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_tableaux_cdcl.output))) (rule (target testfile-quant-arith-001_tableaux.output) (deps (:input testfile-quant-arith-001.ae)) @@ -202032,12 +198906,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_tableaux.output))) + (deps testfile-quant-arith-001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_tableaux.output))) (rule (target testfile-quant-arith-001_legacy.output) (deps (:input testfile-quant-arith-001.ae)) @@ -202054,12 +198927,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_legacy.output))) + (deps testfile-quant-arith-001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_legacy.output))) (rule (target testfile-quant-arith-001_dolmen.output) (deps (:input testfile-quant-arith-001.ae)) @@ -202076,12 +198948,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_dolmen.output))) + (deps testfile-quant-arith-001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_dolmen.output))) (rule (target testfile-quant-arith-001_fpa.output) (deps (:input testfile-quant-arith-001.ae)) @@ -202098,12 +198969,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-quant-arith-001.expected - testfile-quant-arith-001_fpa.output))) + (deps testfile-quant-arith-001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-quant-arith-001.expected testfile-quant-arith-001_fpa.output))) (rule (target testfile-list012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list012.ae)) @@ -202122,12 +198992,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list012.expected - testfile-list012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list012.ae)) @@ -202148,12 +199017,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list012.expected - testfile-list012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list012.ae)) @@ -202173,12 +199041,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list012.expected - testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list012.ae)) @@ -202197,12 +199064,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list012.expected - testfile-list012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list012.ae)) @@ -202221,12 +199087,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list012.expected - testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list012.ae)) @@ -202245,12 +199110,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list012.expected - testfile-list012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list012_cdcl.output) (deps (:input testfile-list012.ae)) @@ -202268,10 +199132,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list012.expected testfile-list012_cdcl.output))) + (deps testfile-list012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_cdcl.output))) (rule (target testfile-list012_tableaux_cdcl.output) (deps (:input testfile-list012.ae)) @@ -202289,10 +199154,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list012.expected testfile-list012_tableaux_cdcl.output))) + (deps testfile-list012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_tableaux_cdcl.output))) (rule (target testfile-list012_tableaux.output) (deps (:input testfile-list012.ae)) @@ -202310,10 +199176,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list012.expected testfile-list012_tableaux.output))) + (deps testfile-list012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_tableaux.output))) (rule (target testfile-list012_legacy.output) (deps (:input testfile-list012.ae)) @@ -202330,10 +199197,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list012.expected testfile-list012_legacy.output))) + (deps testfile-list012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_legacy.output))) (rule (target testfile-list012_dolmen.output) (deps (:input testfile-list012.ae)) @@ -202350,10 +199218,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list012.expected testfile-list012_dolmen.output))) + (deps testfile-list012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_dolmen.output))) (rule (target testfile-list012_fpa.output) (deps (:input testfile-list012.ae)) @@ -202370,10 +199239,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list012.expected testfile-list012_fpa.output))) + (deps testfile-list012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list012.expected testfile-list012_fpa.output))) (rule (target testfile-list011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list011.ae)) @@ -202392,12 +199262,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list011.expected - testfile-list011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list011.ae)) @@ -202418,12 +199287,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list011.expected - testfile-list011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list011.ae)) @@ -202443,12 +199311,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list011.expected - testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list011.ae)) @@ -202467,12 +199334,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list011.expected - testfile-list011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list011.ae)) @@ -202491,12 +199357,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list011.expected - testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list011.ae)) @@ -202515,12 +199380,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list011.expected - testfile-list011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list011_cdcl.output) (deps (:input testfile-list011.ae)) @@ -202538,10 +199402,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list011.expected testfile-list011_cdcl.output))) + (deps testfile-list011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_cdcl.output))) (rule (target testfile-list011_tableaux_cdcl.output) (deps (:input testfile-list011.ae)) @@ -202559,10 +199424,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list011.expected testfile-list011_tableaux_cdcl.output))) + (deps testfile-list011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_tableaux_cdcl.output))) (rule (target testfile-list011_tableaux.output) (deps (:input testfile-list011.ae)) @@ -202580,10 +199446,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list011.expected testfile-list011_tableaux.output))) + (deps testfile-list011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_tableaux.output))) (rule (target testfile-list011_legacy.output) (deps (:input testfile-list011.ae)) @@ -202600,10 +199467,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list011.expected testfile-list011_legacy.output))) + (deps testfile-list011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_legacy.output))) (rule (target testfile-list011_dolmen.output) (deps (:input testfile-list011.ae)) @@ -202620,10 +199488,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list011.expected testfile-list011_dolmen.output))) + (deps testfile-list011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_dolmen.output))) (rule (target testfile-list011_fpa.output) (deps (:input testfile-list011.ae)) @@ -202640,10 +199509,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list011.expected testfile-list011_fpa.output))) + (deps testfile-list011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list011.expected testfile-list011_fpa.output))) (rule (target testfile-list010_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list010.ae)) @@ -202662,12 +199532,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list010.expected - testfile-list010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list010.ae)) @@ -202688,12 +199557,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list010.expected - testfile-list010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list010.ae)) @@ -202713,12 +199581,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list010.expected - testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list010.ae)) @@ -202737,12 +199604,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list010.expected - testfile-list010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list010.ae)) @@ -202761,12 +199627,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list010.expected - testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list010.ae)) @@ -202785,12 +199650,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list010.expected - testfile-list010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list010_cdcl.output) (deps (:input testfile-list010.ae)) @@ -202808,10 +199672,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list010.expected testfile-list010_cdcl.output))) + (deps testfile-list010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_cdcl.output))) (rule (target testfile-list010_tableaux_cdcl.output) (deps (:input testfile-list010.ae)) @@ -202829,10 +199694,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list010.expected testfile-list010_tableaux_cdcl.output))) + (deps testfile-list010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_tableaux_cdcl.output))) (rule (target testfile-list010_tableaux.output) (deps (:input testfile-list010.ae)) @@ -202850,10 +199716,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list010.expected testfile-list010_tableaux.output))) + (deps testfile-list010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_tableaux.output))) (rule (target testfile-list010_legacy.output) (deps (:input testfile-list010.ae)) @@ -202870,10 +199737,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list010.expected testfile-list010_legacy.output))) + (deps testfile-list010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_legacy.output))) (rule (target testfile-list010_dolmen.output) (deps (:input testfile-list010.ae)) @@ -202890,10 +199758,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list010.expected testfile-list010_dolmen.output))) + (deps testfile-list010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_dolmen.output))) (rule (target testfile-list010_fpa.output) (deps (:input testfile-list010.ae)) @@ -202910,10 +199779,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list010.expected testfile-list010_fpa.output))) + (deps testfile-list010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list010.expected testfile-list010_fpa.output))) (rule (target testfile-list009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list009.ae)) @@ -202932,12 +199802,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list009.expected - testfile-list009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list009.ae)) @@ -202958,12 +199827,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list009.expected - testfile-list009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list009.ae)) @@ -202983,12 +199851,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list009.expected - testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list009.ae)) @@ -203007,12 +199874,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list009.expected - testfile-list009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list009.ae)) @@ -203031,12 +199897,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list009.expected - testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list009.ae)) @@ -203055,12 +199920,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list009.expected - testfile-list009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list009_cdcl.output) (deps (:input testfile-list009.ae)) @@ -203078,10 +199942,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list009.expected testfile-list009_cdcl.output))) + (deps testfile-list009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_cdcl.output))) (rule (target testfile-list009_tableaux_cdcl.output) (deps (:input testfile-list009.ae)) @@ -203099,10 +199964,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list009.expected testfile-list009_tableaux_cdcl.output))) + (deps testfile-list009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_tableaux_cdcl.output))) (rule (target testfile-list009_tableaux.output) (deps (:input testfile-list009.ae)) @@ -203120,10 +199986,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list009.expected testfile-list009_tableaux.output))) + (deps testfile-list009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_tableaux.output))) (rule (target testfile-list009_legacy.output) (deps (:input testfile-list009.ae)) @@ -203140,10 +200007,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list009.expected testfile-list009_legacy.output))) + (deps testfile-list009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_legacy.output))) (rule (target testfile-list009_dolmen.output) (deps (:input testfile-list009.ae)) @@ -203160,10 +200028,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list009.expected testfile-list009_dolmen.output))) + (deps testfile-list009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_dolmen.output))) (rule (target testfile-list009_fpa.output) (deps (:input testfile-list009.ae)) @@ -203180,10 +200049,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list009.expected testfile-list009_fpa.output))) + (deps testfile-list009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list009.expected testfile-list009_fpa.output))) (rule (target testfile-list008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list008.ae)) @@ -203202,12 +200072,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list008.expected - testfile-list008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list008.ae)) @@ -203228,12 +200097,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list008.expected - testfile-list008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list008.ae)) @@ -203253,12 +200121,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list008.expected - testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list008.ae)) @@ -203277,12 +200144,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list008.expected - testfile-list008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list008.ae)) @@ -203301,12 +200167,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list008.expected - testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list008.ae)) @@ -203325,12 +200190,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list008.expected - testfile-list008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list008_cdcl.output) (deps (:input testfile-list008.ae)) @@ -203348,10 +200212,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list008.expected testfile-list008_cdcl.output))) + (deps testfile-list008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_cdcl.output))) (rule (target testfile-list008_tableaux_cdcl.output) (deps (:input testfile-list008.ae)) @@ -203369,10 +200234,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list008.expected testfile-list008_tableaux_cdcl.output))) + (deps testfile-list008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_tableaux_cdcl.output))) (rule (target testfile-list008_tableaux.output) (deps (:input testfile-list008.ae)) @@ -203390,10 +200256,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list008.expected testfile-list008_tableaux.output))) + (deps testfile-list008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_tableaux.output))) (rule (target testfile-list008_legacy.output) (deps (:input testfile-list008.ae)) @@ -203410,10 +200277,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list008.expected testfile-list008_legacy.output))) + (deps testfile-list008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_legacy.output))) (rule (target testfile-list008_dolmen.output) (deps (:input testfile-list008.ae)) @@ -203430,10 +200298,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list008.expected testfile-list008_dolmen.output))) + (deps testfile-list008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_dolmen.output))) (rule (target testfile-list008_fpa.output) (deps (:input testfile-list008.ae)) @@ -203450,10 +200319,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list008.expected testfile-list008_fpa.output))) + (deps testfile-list008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list008.expected testfile-list008_fpa.output))) (rule (target testfile-list007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list007.ae)) @@ -203472,12 +200342,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list007.expected - testfile-list007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list007.ae)) @@ -203498,12 +200367,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list007.expected - testfile-list007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list007.ae)) @@ -203523,12 +200391,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list007.expected - testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list007.ae)) @@ -203547,12 +200414,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list007.expected - testfile-list007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list007.ae)) @@ -203571,12 +200437,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list007.expected - testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list007.ae)) @@ -203595,12 +200460,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list007.expected - testfile-list007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list007_cdcl.output) (deps (:input testfile-list007.ae)) @@ -203618,10 +200482,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list007.expected testfile-list007_cdcl.output))) + (deps testfile-list007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_cdcl.output))) (rule (target testfile-list007_tableaux_cdcl.output) (deps (:input testfile-list007.ae)) @@ -203639,10 +200504,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list007.expected testfile-list007_tableaux_cdcl.output))) + (deps testfile-list007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_tableaux_cdcl.output))) (rule (target testfile-list007_tableaux.output) (deps (:input testfile-list007.ae)) @@ -203660,10 +200526,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list007.expected testfile-list007_tableaux.output))) + (deps testfile-list007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_tableaux.output))) (rule (target testfile-list007_legacy.output) (deps (:input testfile-list007.ae)) @@ -203680,10 +200547,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list007.expected testfile-list007_legacy.output))) + (deps testfile-list007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_legacy.output))) (rule (target testfile-list007_dolmen.output) (deps (:input testfile-list007.ae)) @@ -203700,10 +200568,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list007.expected testfile-list007_dolmen.output))) + (deps testfile-list007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_dolmen.output))) (rule (target testfile-list007_fpa.output) (deps (:input testfile-list007.ae)) @@ -203720,10 +200589,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list007.expected testfile-list007_fpa.output))) + (deps testfile-list007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list007.expected testfile-list007_fpa.output))) (rule (target testfile-list006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list006.ae)) @@ -203742,12 +200612,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list006.expected - testfile-list006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list006.ae)) @@ -203768,12 +200637,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list006.expected - testfile-list006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list006.ae)) @@ -203793,12 +200661,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list006.expected - testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list006.ae)) @@ -203817,12 +200684,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list006.expected - testfile-list006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list006.ae)) @@ -203841,12 +200707,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list006.expected - testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list006.ae)) @@ -203865,12 +200730,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list006.expected - testfile-list006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list006_cdcl.output) (deps (:input testfile-list006.ae)) @@ -203888,10 +200752,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list006.expected testfile-list006_cdcl.output))) + (deps testfile-list006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_cdcl.output))) (rule (target testfile-list006_tableaux_cdcl.output) (deps (:input testfile-list006.ae)) @@ -203909,10 +200774,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list006.expected testfile-list006_tableaux_cdcl.output))) + (deps testfile-list006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_tableaux_cdcl.output))) (rule (target testfile-list006_tableaux.output) (deps (:input testfile-list006.ae)) @@ -203930,10 +200796,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list006.expected testfile-list006_tableaux.output))) + (deps testfile-list006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_tableaux.output))) (rule (target testfile-list006_legacy.output) (deps (:input testfile-list006.ae)) @@ -203950,10 +200817,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list006.expected testfile-list006_legacy.output))) + (deps testfile-list006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_legacy.output))) (rule (target testfile-list006_dolmen.output) (deps (:input testfile-list006.ae)) @@ -203970,10 +200838,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list006.expected testfile-list006_dolmen.output))) + (deps testfile-list006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_dolmen.output))) (rule (target testfile-list006_fpa.output) (deps (:input testfile-list006.ae)) @@ -203990,10 +200859,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list006.expected testfile-list006_fpa.output))) + (deps testfile-list006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list006.expected testfile-list006_fpa.output))) (rule (target testfile-list005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list005.ae)) @@ -204012,12 +200882,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list005.expected - testfile-list005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list005.ae)) @@ -204038,12 +200907,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list005.expected - testfile-list005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list005.ae)) @@ -204063,12 +200931,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list005.expected - testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list005.ae)) @@ -204087,12 +200954,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list005.expected - testfile-list005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list005.ae)) @@ -204111,12 +200977,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list005.expected - testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list005.ae)) @@ -204135,12 +201000,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list005.expected - testfile-list005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list005_cdcl.output) (deps (:input testfile-list005.ae)) @@ -204158,10 +201022,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list005.expected testfile-list005_cdcl.output))) + (deps testfile-list005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_cdcl.output))) (rule (target testfile-list005_tableaux_cdcl.output) (deps (:input testfile-list005.ae)) @@ -204179,10 +201044,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list005.expected testfile-list005_tableaux_cdcl.output))) + (deps testfile-list005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_tableaux_cdcl.output))) (rule (target testfile-list005_tableaux.output) (deps (:input testfile-list005.ae)) @@ -204200,10 +201066,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list005.expected testfile-list005_tableaux.output))) + (deps testfile-list005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_tableaux.output))) (rule (target testfile-list005_legacy.output) (deps (:input testfile-list005.ae)) @@ -204220,10 +201087,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list005.expected testfile-list005_legacy.output))) + (deps testfile-list005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_legacy.output))) (rule (target testfile-list005_dolmen.output) (deps (:input testfile-list005.ae)) @@ -204240,10 +201108,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list005.expected testfile-list005_dolmen.output))) + (deps testfile-list005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_dolmen.output))) (rule (target testfile-list005_fpa.output) (deps (:input testfile-list005.ae)) @@ -204260,10 +201129,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list005.expected testfile-list005_fpa.output))) + (deps testfile-list005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list005.expected testfile-list005_fpa.output))) (rule (target testfile-list004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list004.ae)) @@ -204282,12 +201152,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list004.expected - testfile-list004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list004.ae)) @@ -204308,12 +201177,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list004.expected - testfile-list004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list004.ae)) @@ -204333,12 +201201,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list004.expected - testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list004.ae)) @@ -204357,12 +201224,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list004.expected - testfile-list004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list004.ae)) @@ -204381,12 +201247,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list004.expected - testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list004.ae)) @@ -204405,12 +201270,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list004.expected - testfile-list004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list004_cdcl.output) (deps (:input testfile-list004.ae)) @@ -204428,10 +201292,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list004.expected testfile-list004_cdcl.output))) + (deps testfile-list004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_cdcl.output))) (rule (target testfile-list004_tableaux_cdcl.output) (deps (:input testfile-list004.ae)) @@ -204449,10 +201314,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list004.expected testfile-list004_tableaux_cdcl.output))) + (deps testfile-list004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_tableaux_cdcl.output))) (rule (target testfile-list004_tableaux.output) (deps (:input testfile-list004.ae)) @@ -204470,10 +201336,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list004.expected testfile-list004_tableaux.output))) + (deps testfile-list004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_tableaux.output))) (rule (target testfile-list004_legacy.output) (deps (:input testfile-list004.ae)) @@ -204490,10 +201357,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list004.expected testfile-list004_legacy.output))) + (deps testfile-list004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_legacy.output))) (rule (target testfile-list004_dolmen.output) (deps (:input testfile-list004.ae)) @@ -204510,10 +201378,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list004.expected testfile-list004_dolmen.output))) + (deps testfile-list004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_dolmen.output))) (rule (target testfile-list004_fpa.output) (deps (:input testfile-list004.ae)) @@ -204530,10 +201399,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list004.expected testfile-list004_fpa.output))) + (deps testfile-list004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list004.expected testfile-list004_fpa.output))) (rule (target testfile-list003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list003.ae)) @@ -204552,12 +201422,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list003.expected - testfile-list003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list003.ae)) @@ -204578,12 +201447,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list003.expected - testfile-list003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list003.ae)) @@ -204603,12 +201471,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list003.expected - testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list003.ae)) @@ -204627,12 +201494,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list003.expected - testfile-list003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list003.ae)) @@ -204651,12 +201517,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list003.expected - testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list003.ae)) @@ -204675,12 +201540,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list003.expected - testfile-list003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list003_cdcl.output) (deps (:input testfile-list003.ae)) @@ -204698,10 +201562,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list003.expected testfile-list003_cdcl.output))) + (deps testfile-list003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_cdcl.output))) (rule (target testfile-list003_tableaux_cdcl.output) (deps (:input testfile-list003.ae)) @@ -204719,10 +201584,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list003.expected testfile-list003_tableaux_cdcl.output))) + (deps testfile-list003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_tableaux_cdcl.output))) (rule (target testfile-list003_tableaux.output) (deps (:input testfile-list003.ae)) @@ -204740,10 +201606,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list003.expected testfile-list003_tableaux.output))) + (deps testfile-list003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_tableaux.output))) (rule (target testfile-list003_legacy.output) (deps (:input testfile-list003.ae)) @@ -204760,10 +201627,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list003.expected testfile-list003_legacy.output))) + (deps testfile-list003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_legacy.output))) (rule (target testfile-list003_dolmen.output) (deps (:input testfile-list003.ae)) @@ -204780,10 +201648,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list003.expected testfile-list003_dolmen.output))) + (deps testfile-list003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_dolmen.output))) (rule (target testfile-list003_fpa.output) (deps (:input testfile-list003.ae)) @@ -204800,10 +201669,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list003.expected testfile-list003_fpa.output))) + (deps testfile-list003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list003.expected testfile-list003_fpa.output))) (rule (target testfile-list002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list002.ae)) @@ -204822,12 +201692,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list002.expected - testfile-list002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list002.ae)) @@ -204848,12 +201717,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list002.expected - testfile-list002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list002.ae)) @@ -204873,12 +201741,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list002.expected - testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list002.ae)) @@ -204897,12 +201764,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list002.expected - testfile-list002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list002.ae)) @@ -204921,12 +201787,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list002.expected - testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list002.ae)) @@ -204945,12 +201810,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list002.expected - testfile-list002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list002_cdcl.output) (deps (:input testfile-list002.ae)) @@ -204968,10 +201832,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list002.expected testfile-list002_cdcl.output))) + (deps testfile-list002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_cdcl.output))) (rule (target testfile-list002_tableaux_cdcl.output) (deps (:input testfile-list002.ae)) @@ -204989,10 +201854,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list002.expected testfile-list002_tableaux_cdcl.output))) + (deps testfile-list002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_tableaux_cdcl.output))) (rule (target testfile-list002_tableaux.output) (deps (:input testfile-list002.ae)) @@ -205010,10 +201876,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list002.expected testfile-list002_tableaux.output))) + (deps testfile-list002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_tableaux.output))) (rule (target testfile-list002_legacy.output) (deps (:input testfile-list002.ae)) @@ -205030,10 +201897,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list002.expected testfile-list002_legacy.output))) + (deps testfile-list002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_legacy.output))) (rule (target testfile-list002_dolmen.output) (deps (:input testfile-list002.ae)) @@ -205050,10 +201918,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list002.expected testfile-list002_dolmen.output))) + (deps testfile-list002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_dolmen.output))) (rule (target testfile-list002_fpa.output) (deps (:input testfile-list002.ae)) @@ -205070,10 +201939,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list002.expected testfile-list002_fpa.output))) + (deps testfile-list002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list002.expected testfile-list002_fpa.output))) (rule (target testfile-list001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-list001.ae)) @@ -205092,12 +201962,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list001.expected - testfile-list001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-list001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-list001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list001.ae)) @@ -205118,12 +201987,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list001.expected - testfile-list001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-list001.ae)) @@ -205143,12 +202011,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list001.expected - testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-list001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-list001.ae)) @@ -205167,12 +202034,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list001.expected - testfile-list001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-list001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-list001.ae)) @@ -205191,12 +202057,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list001.expected - testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-list001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-list001.ae)) @@ -205215,12 +202080,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-list001.expected - testfile-list001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-list001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-list001_cdcl.output) (deps (:input testfile-list001.ae)) @@ -205238,10 +202102,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list001.expected testfile-list001_cdcl.output))) + (deps testfile-list001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_cdcl.output))) (rule (target testfile-list001_tableaux_cdcl.output) (deps (:input testfile-list001.ae)) @@ -205259,10 +202124,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list001.expected testfile-list001_tableaux_cdcl.output))) + (deps testfile-list001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_tableaux_cdcl.output))) (rule (target testfile-list001_tableaux.output) (deps (:input testfile-list001.ae)) @@ -205280,10 +202146,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list001.expected testfile-list001_tableaux.output))) + (deps testfile-list001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_tableaux.output))) (rule (target testfile-list001_legacy.output) (deps (:input testfile-list001.ae)) @@ -205300,10 +202167,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list001.expected testfile-list001_legacy.output))) + (deps testfile-list001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_legacy.output))) (rule (target testfile-list001_dolmen.output) (deps (:input testfile-list001.ae)) @@ -205320,10 +202188,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list001.expected testfile-list001_dolmen.output))) + (deps testfile-list001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_dolmen.output))) (rule (target testfile-list001_fpa.output) (deps (:input testfile-list001.ae)) @@ -205340,10 +202209,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-list001.expected testfile-list001_fpa.output))) + (deps testfile-list001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-list001.expected testfile-list001_fpa.output))) (rule (target testfile-github003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-github003.ae)) @@ -205362,12 +202232,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github003.expected - testfile-github003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-github003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-github003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-github003.ae)) @@ -205388,12 +202257,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github003.expected - testfile-github003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-github003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-github003.ae)) @@ -205413,12 +202281,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github003.expected - testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-github003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-github003.ae)) @@ -205437,12 +202304,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github003.expected - testfile-github003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-github003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-github003.ae)) @@ -205461,12 +202327,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github003.expected - testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-github003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-github003.ae)) @@ -205485,12 +202350,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github003.expected - testfile-github003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-github003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-github003_cdcl.output) (deps (:input testfile-github003.ae)) @@ -205508,10 +202372,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github003.expected testfile-github003_cdcl.output))) + (deps testfile-github003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_cdcl.output))) (rule (target testfile-github003_tableaux_cdcl.output) (deps (:input testfile-github003.ae)) @@ -205529,12 +202394,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-github003.expected - testfile-github003_tableaux_cdcl.output))) + (deps testfile-github003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_tableaux_cdcl.output))) (rule (target testfile-github003_tableaux.output) (deps (:input testfile-github003.ae)) @@ -205552,10 +202416,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github003.expected testfile-github003_tableaux.output))) + (deps testfile-github003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_tableaux.output))) (rule (target testfile-github003_legacy.output) (deps (:input testfile-github003.ae)) @@ -205572,10 +202437,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github003.expected testfile-github003_legacy.output))) + (deps testfile-github003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_legacy.output))) (rule (target testfile-github003_dolmen.output) (deps (:input testfile-github003.ae)) @@ -205592,10 +202458,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github003.expected testfile-github003_dolmen.output))) + (deps testfile-github003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_dolmen.output))) (rule (target testfile-github003_fpa.output) (deps (:input testfile-github003.ae)) @@ -205612,10 +202479,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github003.expected testfile-github003_fpa.output))) + (deps testfile-github003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github003.expected testfile-github003_fpa.output))) (rule (target testfile-github002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-github002.ae)) @@ -205634,12 +202502,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github002.expected - testfile-github002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-github002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-github002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-github002.ae)) @@ -205660,12 +202527,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github002.expected - testfile-github002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-github002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-github002.ae)) @@ -205685,12 +202551,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github002.expected - testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-github002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-github002.ae)) @@ -205709,12 +202574,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github002.expected - testfile-github002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-github002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-github002.ae)) @@ -205733,12 +202597,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github002.expected - testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-github002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-github002.ae)) @@ -205757,12 +202620,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github002.expected - testfile-github002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-github002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-github002_cdcl.output) (deps (:input testfile-github002.ae)) @@ -205780,10 +202642,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github002.expected testfile-github002_cdcl.output))) + (deps testfile-github002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_cdcl.output))) (rule (target testfile-github002_tableaux_cdcl.output) (deps (:input testfile-github002.ae)) @@ -205801,12 +202664,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-github002.expected - testfile-github002_tableaux_cdcl.output))) + (deps testfile-github002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_tableaux_cdcl.output))) (rule (target testfile-github002_tableaux.output) (deps (:input testfile-github002.ae)) @@ -205824,10 +202686,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github002.expected testfile-github002_tableaux.output))) + (deps testfile-github002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_tableaux.output))) (rule (target testfile-github002_legacy.output) (deps (:input testfile-github002.ae)) @@ -205844,10 +202707,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github002.expected testfile-github002_legacy.output))) + (deps testfile-github002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_legacy.output))) (rule (target testfile-github002_dolmen.output) (deps (:input testfile-github002.ae)) @@ -205864,10 +202728,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github002.expected testfile-github002_dolmen.output))) + (deps testfile-github002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_dolmen.output))) (rule (target testfile-github002_fpa.output) (deps (:input testfile-github002.ae)) @@ -205884,10 +202749,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github002.expected testfile-github002_fpa.output))) + (deps testfile-github002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github002.expected testfile-github002_fpa.output))) (rule (target testfile-github001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-github001.ae)) @@ -205906,12 +202772,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github001.expected - testfile-github001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-github001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-github001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-github001.ae)) @@ -205932,12 +202797,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github001.expected - testfile-github001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-github001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-github001.ae)) @@ -205957,12 +202821,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github001.expected - testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-github001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-github001.ae)) @@ -205981,12 +202844,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github001.expected - testfile-github001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-github001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-github001.ae)) @@ -206005,12 +202867,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github001.expected - testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-github001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-github001.ae)) @@ -206029,12 +202890,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-github001.expected - testfile-github001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-github001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-github001_cdcl.output) (deps (:input testfile-github001.ae)) @@ -206052,10 +202912,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github001.expected testfile-github001_cdcl.output))) + (deps testfile-github001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_cdcl.output))) (rule (target testfile-github001_tableaux_cdcl.output) (deps (:input testfile-github001.ae)) @@ -206073,12 +202934,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-github001.expected - testfile-github001_tableaux_cdcl.output))) + (deps testfile-github001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_tableaux_cdcl.output))) (rule (target testfile-github001_tableaux.output) (deps (:input testfile-github001.ae)) @@ -206096,10 +202956,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github001.expected testfile-github001_tableaux.output))) + (deps testfile-github001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_tableaux.output))) (rule (target testfile-github001_legacy.output) (deps (:input testfile-github001.ae)) @@ -206116,10 +202977,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github001.expected testfile-github001_legacy.output))) + (deps testfile-github001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_legacy.output))) (rule (target testfile-github001_dolmen.output) (deps (:input testfile-github001.ae)) @@ -206136,10 +202998,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github001.expected testfile-github001_dolmen.output))) + (deps testfile-github001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_dolmen.output))) (rule (target testfile-github001_fpa.output) (deps (:input testfile-github001.ae)) @@ -206156,10 +203019,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-github001.expected testfile-github001_fpa.output)))) + (deps testfile-github001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-github001.expected testfile-github001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -206183,12 +203047,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206209,12 +203072,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206234,12 +203096,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206258,12 +203119,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206282,12 +203142,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206306,12 +203165,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays002_cdcl.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206329,12 +203187,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_cdcl.output))) + (deps testfile-sum_poly_arrays002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_cdcl.output))) (rule (target testfile-sum_poly_arrays002_tableaux_cdcl.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206352,12 +203209,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_tableaux_cdcl.output))) + (deps testfile-sum_poly_arrays002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_tableaux_cdcl.output))) (rule (target testfile-sum_poly_arrays002_tableaux.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206375,12 +203231,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_tableaux.output))) + (deps testfile-sum_poly_arrays002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_tableaux.output))) (rule (target testfile-sum_poly_arrays002_legacy.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206397,12 +203252,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_legacy.output))) + (deps testfile-sum_poly_arrays002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_legacy.output))) (rule (target testfile-sum_poly_arrays002_dolmen.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206419,12 +203273,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_dolmen.output))) + (deps testfile-sum_poly_arrays002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_dolmen.output))) (rule (target testfile-sum_poly_arrays002_fpa.output) (deps (:input testfile-sum_poly_arrays002.ae)) @@ -206441,12 +203294,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays002.expected - testfile-sum_poly_arrays002_fpa.output))) + (deps testfile-sum_poly_arrays002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays002.expected testfile-sum_poly_arrays002_fpa.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206465,12 +203317,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206491,12 +203342,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206516,12 +203366,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206540,12 +203389,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206564,12 +203412,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206588,12 +203435,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum_poly_arrays001_cdcl.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206611,12 +203457,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_cdcl.output))) + (deps testfile-sum_poly_arrays001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_cdcl.output))) (rule (target testfile-sum_poly_arrays001_tableaux_cdcl.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206634,12 +203479,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_tableaux_cdcl.output))) + (deps testfile-sum_poly_arrays001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_tableaux_cdcl.output))) (rule (target testfile-sum_poly_arrays001_tableaux.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206657,12 +203501,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_tableaux.output))) + (deps testfile-sum_poly_arrays001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_tableaux.output))) (rule (target testfile-sum_poly_arrays001_legacy.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206679,12 +203522,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_legacy.output))) + (deps testfile-sum_poly_arrays001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_legacy.output))) (rule (target testfile-sum_poly_arrays001_dolmen.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206701,12 +203543,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_dolmen.output))) + (deps testfile-sum_poly_arrays001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_dolmen.output))) (rule (target testfile-sum_poly_arrays001_fpa.output) (deps (:input testfile-sum_poly_arrays001.ae)) @@ -206723,12 +203564,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-sum_poly_arrays001.expected - testfile-sum_poly_arrays001_fpa.output))) + (deps testfile-sum_poly_arrays001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum_poly_arrays001.expected testfile-sum_poly_arrays001_fpa.output))) (rule (target testfile-sum018_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum018.ae)) @@ -206747,12 +203587,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum018.expected - testfile-sum018_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum018_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum018.ae)) @@ -206773,12 +203612,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum018.expected - testfile-sum018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum018.ae)) @@ -206798,12 +203636,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum018.expected - testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum018_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum018.ae)) @@ -206822,12 +203659,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum018.expected - testfile-sum018_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum018_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum018.ae)) @@ -206846,12 +203682,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum018.expected - testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum018_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum018.ae)) @@ -206870,12 +203705,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum018.expected - testfile-sum018_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum018_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum018_cdcl.output) (deps (:input testfile-sum018.ae)) @@ -206893,10 +203727,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum018.expected testfile-sum018_cdcl.output))) + (deps testfile-sum018_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_cdcl.output))) (rule (target testfile-sum018_tableaux_cdcl.output) (deps (:input testfile-sum018.ae)) @@ -206914,10 +203749,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum018.expected testfile-sum018_tableaux_cdcl.output))) + (deps testfile-sum018_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_tableaux_cdcl.output))) (rule (target testfile-sum018_tableaux.output) (deps (:input testfile-sum018.ae)) @@ -206935,10 +203771,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum018.expected testfile-sum018_tableaux.output))) + (deps testfile-sum018_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_tableaux.output))) (rule (target testfile-sum018_legacy.output) (deps (:input testfile-sum018.ae)) @@ -206955,10 +203792,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum018.expected testfile-sum018_legacy.output))) + (deps testfile-sum018_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_legacy.output))) (rule (target testfile-sum018_dolmen.output) (deps (:input testfile-sum018.ae)) @@ -206975,10 +203813,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum018.expected testfile-sum018_dolmen.output))) + (deps testfile-sum018_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_dolmen.output))) (rule (target testfile-sum018_fpa.output) (deps (:input testfile-sum018.ae)) @@ -206995,10 +203834,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum018.expected testfile-sum018_fpa.output))) + (deps testfile-sum018_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum018.expected testfile-sum018_fpa.output))) (rule (target testfile-sum017_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum017.ae)) @@ -207017,12 +203857,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum017.expected - testfile-sum017_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum017_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum017.ae)) @@ -207043,12 +203882,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum017.expected - testfile-sum017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum017.ae)) @@ -207068,12 +203906,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum017.expected - testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum017_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum017.ae)) @@ -207092,12 +203929,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum017.expected - testfile-sum017_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum017_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum017.ae)) @@ -207116,12 +203952,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum017.expected - testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum017_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum017.ae)) @@ -207140,12 +203975,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum017.expected - testfile-sum017_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum017_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum017_cdcl.output) (deps (:input testfile-sum017.ae)) @@ -207163,10 +203997,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum017.expected testfile-sum017_cdcl.output))) + (deps testfile-sum017_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_cdcl.output))) (rule (target testfile-sum017_tableaux_cdcl.output) (deps (:input testfile-sum017.ae)) @@ -207184,10 +204019,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum017.expected testfile-sum017_tableaux_cdcl.output))) + (deps testfile-sum017_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_tableaux_cdcl.output))) (rule (target testfile-sum017_tableaux.output) (deps (:input testfile-sum017.ae)) @@ -207205,10 +204041,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum017.expected testfile-sum017_tableaux.output))) + (deps testfile-sum017_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_tableaux.output))) (rule (target testfile-sum017_legacy.output) (deps (:input testfile-sum017.ae)) @@ -207225,10 +204062,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum017.expected testfile-sum017_legacy.output))) + (deps testfile-sum017_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_legacy.output))) (rule (target testfile-sum017_dolmen.output) (deps (:input testfile-sum017.ae)) @@ -207245,10 +204083,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum017.expected testfile-sum017_dolmen.output))) + (deps testfile-sum017_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_dolmen.output))) (rule (target testfile-sum017_fpa.output) (deps (:input testfile-sum017.ae)) @@ -207265,10 +204104,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum017.expected testfile-sum017_fpa.output))) + (deps testfile-sum017_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum017.expected testfile-sum017_fpa.output))) (rule (target testfile-sum016_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum016.ae)) @@ -207287,12 +204127,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum016.expected - testfile-sum016_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum016_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum016.ae)) @@ -207313,12 +204152,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum016.expected - testfile-sum016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum016.ae)) @@ -207338,12 +204176,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum016.expected - testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum016_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum016.ae)) @@ -207362,12 +204199,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum016.expected - testfile-sum016_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum016_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum016.ae)) @@ -207386,12 +204222,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum016.expected - testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum016_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum016.ae)) @@ -207410,12 +204245,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum016.expected - testfile-sum016_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum016_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum016_cdcl.output) (deps (:input testfile-sum016.ae)) @@ -207433,10 +204267,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum016.expected testfile-sum016_cdcl.output))) + (deps testfile-sum016_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_cdcl.output))) (rule (target testfile-sum016_tableaux_cdcl.output) (deps (:input testfile-sum016.ae)) @@ -207454,10 +204289,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum016.expected testfile-sum016_tableaux_cdcl.output))) + (deps testfile-sum016_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_tableaux_cdcl.output))) (rule (target testfile-sum016_tableaux.output) (deps (:input testfile-sum016.ae)) @@ -207475,10 +204311,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum016.expected testfile-sum016_tableaux.output))) + (deps testfile-sum016_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_tableaux.output))) (rule (target testfile-sum016_legacy.output) (deps (:input testfile-sum016.ae)) @@ -207495,10 +204332,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum016.expected testfile-sum016_legacy.output))) + (deps testfile-sum016_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_legacy.output))) (rule (target testfile-sum016_dolmen.output) (deps (:input testfile-sum016.ae)) @@ -207515,10 +204353,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum016.expected testfile-sum016_dolmen.output))) + (deps testfile-sum016_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_dolmen.output))) (rule (target testfile-sum016_fpa.output) (deps (:input testfile-sum016.ae)) @@ -207535,10 +204374,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum016.expected testfile-sum016_fpa.output))) + (deps testfile-sum016_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum016.expected testfile-sum016_fpa.output))) (rule (target testfile-sum015_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum015.ae)) @@ -207557,12 +204397,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum015.expected - testfile-sum015_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum015_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum015.ae)) @@ -207583,12 +204422,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum015.expected - testfile-sum015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum015.ae)) @@ -207608,12 +204446,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum015.expected - testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum015_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum015.ae)) @@ -207632,12 +204469,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum015.expected - testfile-sum015_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum015_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum015.ae)) @@ -207656,12 +204492,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum015.expected - testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum015_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum015.ae)) @@ -207680,12 +204515,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum015.expected - testfile-sum015_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum015_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum015_cdcl.output) (deps (:input testfile-sum015.ae)) @@ -207703,10 +204537,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum015.expected testfile-sum015_cdcl.output))) + (deps testfile-sum015_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_cdcl.output))) (rule (target testfile-sum015_tableaux_cdcl.output) (deps (:input testfile-sum015.ae)) @@ -207724,10 +204559,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum015.expected testfile-sum015_tableaux_cdcl.output))) + (deps testfile-sum015_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_tableaux_cdcl.output))) (rule (target testfile-sum015_tableaux.output) (deps (:input testfile-sum015.ae)) @@ -207745,10 +204581,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum015.expected testfile-sum015_tableaux.output))) + (deps testfile-sum015_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_tableaux.output))) (rule (target testfile-sum015_legacy.output) (deps (:input testfile-sum015.ae)) @@ -207765,10 +204602,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum015.expected testfile-sum015_legacy.output))) + (deps testfile-sum015_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_legacy.output))) (rule (target testfile-sum015_dolmen.output) (deps (:input testfile-sum015.ae)) @@ -207785,10 +204623,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum015.expected testfile-sum015_dolmen.output))) + (deps testfile-sum015_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_dolmen.output))) (rule (target testfile-sum015_fpa.output) (deps (:input testfile-sum015.ae)) @@ -207805,10 +204644,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum015.expected testfile-sum015_fpa.output))) + (deps testfile-sum015_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum015.expected testfile-sum015_fpa.output))) (rule (target testfile-sum014_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum014.ae)) @@ -207827,12 +204667,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum014.expected - testfile-sum014_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum014_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum014.ae)) @@ -207853,12 +204692,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum014.expected - testfile-sum014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum014.ae)) @@ -207878,12 +204716,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum014.expected - testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum014_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum014.ae)) @@ -207902,12 +204739,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum014.expected - testfile-sum014_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum014_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum014.ae)) @@ -207926,12 +204762,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum014.expected - testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum014_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum014.ae)) @@ -207950,12 +204785,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum014.expected - testfile-sum014_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum014_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum014_cdcl.output) (deps (:input testfile-sum014.ae)) @@ -207973,10 +204807,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum014.expected testfile-sum014_cdcl.output))) + (deps testfile-sum014_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_cdcl.output))) (rule (target testfile-sum014_tableaux_cdcl.output) (deps (:input testfile-sum014.ae)) @@ -207994,10 +204829,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum014.expected testfile-sum014_tableaux_cdcl.output))) + (deps testfile-sum014_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_tableaux_cdcl.output))) (rule (target testfile-sum014_tableaux.output) (deps (:input testfile-sum014.ae)) @@ -208015,10 +204851,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum014.expected testfile-sum014_tableaux.output))) + (deps testfile-sum014_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_tableaux.output))) (rule (target testfile-sum014_legacy.output) (deps (:input testfile-sum014.ae)) @@ -208035,10 +204872,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum014.expected testfile-sum014_legacy.output))) + (deps testfile-sum014_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_legacy.output))) (rule (target testfile-sum014_dolmen.output) (deps (:input testfile-sum014.ae)) @@ -208055,10 +204893,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum014.expected testfile-sum014_dolmen.output))) + (deps testfile-sum014_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_dolmen.output))) (rule (target testfile-sum014_fpa.output) (deps (:input testfile-sum014.ae)) @@ -208075,10 +204914,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum014.expected testfile-sum014_fpa.output))) + (deps testfile-sum014_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum014.expected testfile-sum014_fpa.output))) (rule (target testfile-sum013_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum013.ae)) @@ -208097,12 +204937,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum013.expected - testfile-sum013_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum013_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum013.ae)) @@ -208123,12 +204962,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum013.expected - testfile-sum013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum013.ae)) @@ -208148,12 +204986,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum013.expected - testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum013_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum013.ae)) @@ -208172,12 +205009,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum013.expected - testfile-sum013_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum013_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum013.ae)) @@ -208196,12 +205032,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum013.expected - testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum013_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum013.ae)) @@ -208220,12 +205055,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum013.expected - testfile-sum013_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum013_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum013_cdcl.output) (deps (:input testfile-sum013.ae)) @@ -208243,10 +205077,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum013.expected testfile-sum013_cdcl.output))) + (deps testfile-sum013_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_cdcl.output))) (rule (target testfile-sum013_tableaux_cdcl.output) (deps (:input testfile-sum013.ae)) @@ -208264,10 +205099,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum013.expected testfile-sum013_tableaux_cdcl.output))) + (deps testfile-sum013_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_tableaux_cdcl.output))) (rule (target testfile-sum013_tableaux.output) (deps (:input testfile-sum013.ae)) @@ -208285,10 +205121,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum013.expected testfile-sum013_tableaux.output))) + (deps testfile-sum013_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_tableaux.output))) (rule (target testfile-sum013_legacy.output) (deps (:input testfile-sum013.ae)) @@ -208305,10 +205142,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum013.expected testfile-sum013_legacy.output))) + (deps testfile-sum013_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_legacy.output))) (rule (target testfile-sum013_dolmen.output) (deps (:input testfile-sum013.ae)) @@ -208325,10 +205163,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum013.expected testfile-sum013_dolmen.output))) + (deps testfile-sum013_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_dolmen.output))) (rule (target testfile-sum013_fpa.output) (deps (:input testfile-sum013.ae)) @@ -208345,10 +205184,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum013.expected testfile-sum013_fpa.output))) + (deps testfile-sum013_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum013.expected testfile-sum013_fpa.output))) (rule (target testfile-sum012_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum012.ae)) @@ -208367,12 +205207,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum012.expected - testfile-sum012_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum012_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum012.ae)) @@ -208393,12 +205232,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum012.expected - testfile-sum012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum012.ae)) @@ -208418,12 +205256,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum012.expected - testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum012_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum012.ae)) @@ -208442,12 +205279,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum012.expected - testfile-sum012_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum012_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum012.ae)) @@ -208466,12 +205302,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum012.expected - testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum012_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum012.ae)) @@ -208490,12 +205325,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum012.expected - testfile-sum012_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum012_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum012_cdcl.output) (deps (:input testfile-sum012.ae)) @@ -208513,10 +205347,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum012.expected testfile-sum012_cdcl.output))) + (deps testfile-sum012_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_cdcl.output))) (rule (target testfile-sum012_tableaux_cdcl.output) (deps (:input testfile-sum012.ae)) @@ -208534,10 +205369,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum012.expected testfile-sum012_tableaux_cdcl.output))) + (deps testfile-sum012_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_tableaux_cdcl.output))) (rule (target testfile-sum012_tableaux.output) (deps (:input testfile-sum012.ae)) @@ -208555,10 +205391,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum012.expected testfile-sum012_tableaux.output))) + (deps testfile-sum012_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_tableaux.output))) (rule (target testfile-sum012_legacy.output) (deps (:input testfile-sum012.ae)) @@ -208575,10 +205412,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum012.expected testfile-sum012_legacy.output))) + (deps testfile-sum012_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_legacy.output))) (rule (target testfile-sum012_dolmen.output) (deps (:input testfile-sum012.ae)) @@ -208595,10 +205433,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum012.expected testfile-sum012_dolmen.output))) + (deps testfile-sum012_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_dolmen.output))) (rule (target testfile-sum012_fpa.output) (deps (:input testfile-sum012.ae)) @@ -208615,10 +205454,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum012.expected testfile-sum012_fpa.output))) + (deps testfile-sum012_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum012.expected testfile-sum012_fpa.output))) (rule (target testfile-sum011_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum011.ae)) @@ -208637,12 +205477,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum011.expected - testfile-sum011_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum011_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum011.ae)) @@ -208663,12 +205502,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum011.expected - testfile-sum011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum011.ae)) @@ -208688,12 +205526,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum011.expected - testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum011_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum011.ae)) @@ -208712,12 +205549,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum011.expected - testfile-sum011_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum011_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum011.ae)) @@ -208736,12 +205572,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum011.expected - testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum011_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum011.ae)) @@ -208760,12 +205595,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum011.expected - testfile-sum011_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum011_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum011_cdcl.output) (deps (:input testfile-sum011.ae)) @@ -208783,10 +205617,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum011.expected testfile-sum011_cdcl.output))) + (deps testfile-sum011_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_cdcl.output))) (rule (target testfile-sum011_tableaux_cdcl.output) (deps (:input testfile-sum011.ae)) @@ -208804,10 +205639,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum011.expected testfile-sum011_tableaux_cdcl.output))) + (deps testfile-sum011_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_tableaux_cdcl.output))) (rule (target testfile-sum011_tableaux.output) (deps (:input testfile-sum011.ae)) @@ -208825,10 +205661,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum011.expected testfile-sum011_tableaux.output))) + (deps testfile-sum011_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_tableaux.output))) (rule (target testfile-sum011_legacy.output) (deps (:input testfile-sum011.ae)) @@ -208845,10 +205682,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum011.expected testfile-sum011_legacy.output))) + (deps testfile-sum011_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_legacy.output))) (rule (target testfile-sum011_dolmen.output) (deps (:input testfile-sum011.ae)) @@ -208865,10 +205703,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum011.expected testfile-sum011_dolmen.output))) + (deps testfile-sum011_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_dolmen.output))) (rule (target testfile-sum011_fpa.output) (deps (:input testfile-sum011.ae)) @@ -208885,10 +205724,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum011.expected testfile-sum011_fpa.output))) + (deps testfile-sum011_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum011.expected testfile-sum011_fpa.output))) (rule (target testfile-sum009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum009.ae)) @@ -208907,12 +205747,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum009.expected - testfile-sum009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum009.ae)) @@ -208933,12 +205772,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum009.expected - testfile-sum009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum009.ae)) @@ -208958,12 +205796,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum009.expected - testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum009.ae)) @@ -208982,12 +205819,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum009.expected - testfile-sum009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum009.ae)) @@ -209006,12 +205842,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum009.expected - testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum009.ae)) @@ -209030,12 +205865,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum009.expected - testfile-sum009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum009_cdcl.output) (deps (:input testfile-sum009.ae)) @@ -209053,10 +205887,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum009.expected testfile-sum009_cdcl.output))) + (deps testfile-sum009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_cdcl.output))) (rule (target testfile-sum009_tableaux_cdcl.output) (deps (:input testfile-sum009.ae)) @@ -209074,10 +205909,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum009.expected testfile-sum009_tableaux_cdcl.output))) + (deps testfile-sum009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_tableaux_cdcl.output))) (rule (target testfile-sum009_tableaux.output) (deps (:input testfile-sum009.ae)) @@ -209095,10 +205931,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum009.expected testfile-sum009_tableaux.output))) + (deps testfile-sum009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_tableaux.output))) (rule (target testfile-sum009_legacy.output) (deps (:input testfile-sum009.ae)) @@ -209115,10 +205952,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum009.expected testfile-sum009_legacy.output))) + (deps testfile-sum009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_legacy.output))) (rule (target testfile-sum009_dolmen.output) (deps (:input testfile-sum009.ae)) @@ -209135,10 +205973,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum009.expected testfile-sum009_dolmen.output))) + (deps testfile-sum009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_dolmen.output))) (rule (target testfile-sum009_fpa.output) (deps (:input testfile-sum009.ae)) @@ -209155,10 +205994,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum009.expected testfile-sum009_fpa.output))) + (deps testfile-sum009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum009.expected testfile-sum009_fpa.output))) (rule (target testfile-sum008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum008.ae)) @@ -209177,12 +206017,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum008.expected - testfile-sum008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum008.ae)) @@ -209203,12 +206042,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum008.expected - testfile-sum008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum008.ae)) @@ -209228,12 +206066,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum008.expected - testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum008.ae)) @@ -209252,12 +206089,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum008.expected - testfile-sum008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum008.ae)) @@ -209276,12 +206112,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum008.expected - testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum008.ae)) @@ -209300,12 +206135,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum008.expected - testfile-sum008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum008_cdcl.output) (deps (:input testfile-sum008.ae)) @@ -209323,10 +206157,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum008.expected testfile-sum008_cdcl.output))) + (deps testfile-sum008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_cdcl.output))) (rule (target testfile-sum008_tableaux_cdcl.output) (deps (:input testfile-sum008.ae)) @@ -209344,10 +206179,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum008.expected testfile-sum008_tableaux_cdcl.output))) + (deps testfile-sum008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_tableaux_cdcl.output))) (rule (target testfile-sum008_tableaux.output) (deps (:input testfile-sum008.ae)) @@ -209365,10 +206201,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum008.expected testfile-sum008_tableaux.output))) + (deps testfile-sum008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_tableaux.output))) (rule (target testfile-sum008_legacy.output) (deps (:input testfile-sum008.ae)) @@ -209385,10 +206222,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum008.expected testfile-sum008_legacy.output))) + (deps testfile-sum008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_legacy.output))) (rule (target testfile-sum008_dolmen.output) (deps (:input testfile-sum008.ae)) @@ -209405,10 +206243,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum008.expected testfile-sum008_dolmen.output))) + (deps testfile-sum008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_dolmen.output))) (rule (target testfile-sum008_fpa.output) (deps (:input testfile-sum008.ae)) @@ -209425,10 +206264,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum008.expected testfile-sum008_fpa.output))) + (deps testfile-sum008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum008.expected testfile-sum008_fpa.output))) (rule (target testfile-sum007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum007.ae)) @@ -209447,12 +206287,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum007.expected - testfile-sum007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum007.ae)) @@ -209473,12 +206312,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum007.expected - testfile-sum007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum007.ae)) @@ -209498,12 +206336,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum007.expected - testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum007.ae)) @@ -209522,12 +206359,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum007.expected - testfile-sum007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum007.ae)) @@ -209546,12 +206382,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum007.expected - testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum007.ae)) @@ -209570,12 +206405,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum007.expected - testfile-sum007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum007_cdcl.output) (deps (:input testfile-sum007.ae)) @@ -209593,10 +206427,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum007.expected testfile-sum007_cdcl.output))) + (deps testfile-sum007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_cdcl.output))) (rule (target testfile-sum007_tableaux_cdcl.output) (deps (:input testfile-sum007.ae)) @@ -209614,10 +206449,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum007.expected testfile-sum007_tableaux_cdcl.output))) + (deps testfile-sum007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_tableaux_cdcl.output))) (rule (target testfile-sum007_tableaux.output) (deps (:input testfile-sum007.ae)) @@ -209635,10 +206471,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum007.expected testfile-sum007_tableaux.output))) + (deps testfile-sum007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_tableaux.output))) (rule (target testfile-sum007_legacy.output) (deps (:input testfile-sum007.ae)) @@ -209655,10 +206492,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum007.expected testfile-sum007_legacy.output))) + (deps testfile-sum007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_legacy.output))) (rule (target testfile-sum007_dolmen.output) (deps (:input testfile-sum007.ae)) @@ -209675,10 +206513,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum007.expected testfile-sum007_dolmen.output))) + (deps testfile-sum007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_dolmen.output))) (rule (target testfile-sum007_fpa.output) (deps (:input testfile-sum007.ae)) @@ -209695,10 +206534,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum007.expected testfile-sum007_fpa.output))) + (deps testfile-sum007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum007.expected testfile-sum007_fpa.output))) (rule (target testfile-sum006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum006.ae)) @@ -209717,12 +206557,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum006.expected - testfile-sum006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum006.ae)) @@ -209743,12 +206582,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum006.expected - testfile-sum006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum006.ae)) @@ -209768,12 +206606,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum006.expected - testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum006.ae)) @@ -209792,12 +206629,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum006.expected - testfile-sum006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum006.ae)) @@ -209816,12 +206652,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum006.expected - testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum006.ae)) @@ -209840,12 +206675,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum006.expected - testfile-sum006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum006_cdcl.output) (deps (:input testfile-sum006.ae)) @@ -209863,10 +206697,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum006.expected testfile-sum006_cdcl.output))) + (deps testfile-sum006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_cdcl.output))) (rule (target testfile-sum006_tableaux_cdcl.output) (deps (:input testfile-sum006.ae)) @@ -209884,10 +206719,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum006.expected testfile-sum006_tableaux_cdcl.output))) + (deps testfile-sum006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_tableaux_cdcl.output))) (rule (target testfile-sum006_tableaux.output) (deps (:input testfile-sum006.ae)) @@ -209905,10 +206741,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum006.expected testfile-sum006_tableaux.output))) + (deps testfile-sum006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_tableaux.output))) (rule (target testfile-sum006_legacy.output) (deps (:input testfile-sum006.ae)) @@ -209925,10 +206762,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum006.expected testfile-sum006_legacy.output))) + (deps testfile-sum006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_legacy.output))) (rule (target testfile-sum006_dolmen.output) (deps (:input testfile-sum006.ae)) @@ -209945,10 +206783,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum006.expected testfile-sum006_dolmen.output))) + (deps testfile-sum006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_dolmen.output))) (rule (target testfile-sum006_fpa.output) (deps (:input testfile-sum006.ae)) @@ -209965,10 +206804,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum006.expected testfile-sum006_fpa.output))) + (deps testfile-sum006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum006.expected testfile-sum006_fpa.output))) (rule (target testfile-sum005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum005.ae)) @@ -209987,12 +206827,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum005.expected - testfile-sum005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum005.ae)) @@ -210013,12 +206852,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum005.expected - testfile-sum005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum005.ae)) @@ -210038,12 +206876,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum005.expected - testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum005.ae)) @@ -210062,12 +206899,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum005.expected - testfile-sum005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum005.ae)) @@ -210086,12 +206922,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum005.expected - testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum005.ae)) @@ -210110,12 +206945,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum005.expected - testfile-sum005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum005_cdcl.output) (deps (:input testfile-sum005.ae)) @@ -210133,10 +206967,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum005.expected testfile-sum005_cdcl.output))) + (deps testfile-sum005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_cdcl.output))) (rule (target testfile-sum005_tableaux_cdcl.output) (deps (:input testfile-sum005.ae)) @@ -210154,10 +206989,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum005.expected testfile-sum005_tableaux_cdcl.output))) + (deps testfile-sum005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_tableaux_cdcl.output))) (rule (target testfile-sum005_tableaux.output) (deps (:input testfile-sum005.ae)) @@ -210175,10 +207011,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum005.expected testfile-sum005_tableaux.output))) + (deps testfile-sum005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_tableaux.output))) (rule (target testfile-sum005_legacy.output) (deps (:input testfile-sum005.ae)) @@ -210195,10 +207032,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum005.expected testfile-sum005_legacy.output))) + (deps testfile-sum005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_legacy.output))) (rule (target testfile-sum005_dolmen.output) (deps (:input testfile-sum005.ae)) @@ -210215,10 +207053,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum005.expected testfile-sum005_dolmen.output))) + (deps testfile-sum005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_dolmen.output))) (rule (target testfile-sum005_fpa.output) (deps (:input testfile-sum005.ae)) @@ -210235,10 +207074,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum005.expected testfile-sum005_fpa.output))) + (deps testfile-sum005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum005.expected testfile-sum005_fpa.output))) (rule (target testfile-sum004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum004.ae)) @@ -210257,12 +207097,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum004.expected - testfile-sum004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum004.ae)) @@ -210283,12 +207122,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum004.expected - testfile-sum004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum004.ae)) @@ -210308,12 +207146,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum004.expected - testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum004.ae)) @@ -210332,12 +207169,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum004.expected - testfile-sum004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum004.ae)) @@ -210356,12 +207192,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum004.expected - testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum004.ae)) @@ -210380,12 +207215,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum004.expected - testfile-sum004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum004_cdcl.output) (deps (:input testfile-sum004.ae)) @@ -210403,10 +207237,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum004.expected testfile-sum004_cdcl.output))) + (deps testfile-sum004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_cdcl.output))) (rule (target testfile-sum004_tableaux_cdcl.output) (deps (:input testfile-sum004.ae)) @@ -210424,10 +207259,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum004.expected testfile-sum004_tableaux_cdcl.output))) + (deps testfile-sum004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_tableaux_cdcl.output))) (rule (target testfile-sum004_tableaux.output) (deps (:input testfile-sum004.ae)) @@ -210445,10 +207281,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum004.expected testfile-sum004_tableaux.output))) + (deps testfile-sum004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_tableaux.output))) (rule (target testfile-sum004_legacy.output) (deps (:input testfile-sum004.ae)) @@ -210465,10 +207302,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum004.expected testfile-sum004_legacy.output))) + (deps testfile-sum004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_legacy.output))) (rule (target testfile-sum004_dolmen.output) (deps (:input testfile-sum004.ae)) @@ -210485,10 +207323,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum004.expected testfile-sum004_dolmen.output))) + (deps testfile-sum004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_dolmen.output))) (rule (target testfile-sum004_fpa.output) (deps (:input testfile-sum004.ae)) @@ -210505,10 +207344,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum004.expected testfile-sum004_fpa.output))) + (deps testfile-sum004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum004.expected testfile-sum004_fpa.output))) (rule (target testfile-sum003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum003.ae)) @@ -210527,12 +207367,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum003.expected - testfile-sum003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum003.ae)) @@ -210553,12 +207392,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum003.expected - testfile-sum003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum003.ae)) @@ -210578,12 +207416,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum003.expected - testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum003.ae)) @@ -210602,12 +207439,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum003.expected - testfile-sum003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum003.ae)) @@ -210626,12 +207462,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum003.expected - testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum003.ae)) @@ -210650,12 +207485,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum003.expected - testfile-sum003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum003_cdcl.output) (deps (:input testfile-sum003.ae)) @@ -210673,10 +207507,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum003.expected testfile-sum003_cdcl.output))) + (deps testfile-sum003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_cdcl.output))) (rule (target testfile-sum003_tableaux_cdcl.output) (deps (:input testfile-sum003.ae)) @@ -210694,10 +207529,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum003.expected testfile-sum003_tableaux_cdcl.output))) + (deps testfile-sum003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_tableaux_cdcl.output))) (rule (target testfile-sum003_tableaux.output) (deps (:input testfile-sum003.ae)) @@ -210715,10 +207551,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum003.expected testfile-sum003_tableaux.output))) + (deps testfile-sum003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_tableaux.output))) (rule (target testfile-sum003_legacy.output) (deps (:input testfile-sum003.ae)) @@ -210735,10 +207572,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum003.expected testfile-sum003_legacy.output))) + (deps testfile-sum003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_legacy.output))) (rule (target testfile-sum003_dolmen.output) (deps (:input testfile-sum003.ae)) @@ -210755,10 +207593,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum003.expected testfile-sum003_dolmen.output))) + (deps testfile-sum003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_dolmen.output))) (rule (target testfile-sum003_fpa.output) (deps (:input testfile-sum003.ae)) @@ -210775,10 +207614,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum003.expected testfile-sum003_fpa.output))) + (deps testfile-sum003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum003.expected testfile-sum003_fpa.output))) (rule (target testfile-sum002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum002.ae)) @@ -210797,12 +207637,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum002.expected - testfile-sum002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum002.ae)) @@ -210823,12 +207662,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum002.expected - testfile-sum002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum002.ae)) @@ -210848,12 +207686,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum002.expected - testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum002.ae)) @@ -210872,12 +207709,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum002.expected - testfile-sum002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum002.ae)) @@ -210896,12 +207732,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum002.expected - testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum002.ae)) @@ -210920,12 +207755,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum002.expected - testfile-sum002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum002_cdcl.output) (deps (:input testfile-sum002.ae)) @@ -210943,10 +207777,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum002.expected testfile-sum002_cdcl.output))) + (deps testfile-sum002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_cdcl.output))) (rule (target testfile-sum002_tableaux_cdcl.output) (deps (:input testfile-sum002.ae)) @@ -210964,10 +207799,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum002.expected testfile-sum002_tableaux_cdcl.output))) + (deps testfile-sum002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_tableaux_cdcl.output))) (rule (target testfile-sum002_tableaux.output) (deps (:input testfile-sum002.ae)) @@ -210985,10 +207821,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum002.expected testfile-sum002_tableaux.output))) + (deps testfile-sum002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_tableaux.output))) (rule (target testfile-sum002_legacy.output) (deps (:input testfile-sum002.ae)) @@ -211005,10 +207842,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum002.expected testfile-sum002_legacy.output))) + (deps testfile-sum002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_legacy.output))) (rule (target testfile-sum002_dolmen.output) (deps (:input testfile-sum002.ae)) @@ -211025,10 +207863,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum002.expected testfile-sum002_dolmen.output))) + (deps testfile-sum002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_dolmen.output))) (rule (target testfile-sum002_fpa.output) (deps (:input testfile-sum002.ae)) @@ -211045,10 +207884,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum002.expected testfile-sum002_fpa.output))) + (deps testfile-sum002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum002.expected testfile-sum002_fpa.output))) (rule (target testfile-sum001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-sum001.ae)) @@ -211067,12 +207907,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum001.expected - testfile-sum001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-sum001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-sum001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum001.ae)) @@ -211093,12 +207932,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum001.expected - testfile-sum001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-sum001.ae)) @@ -211118,12 +207956,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum001.expected - testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-sum001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-sum001.ae)) @@ -211142,12 +207979,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum001.expected - testfile-sum001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-sum001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-sum001.ae)) @@ -211166,12 +208002,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum001.expected - testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-sum001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-sum001.ae)) @@ -211190,12 +208025,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-sum001.expected - testfile-sum001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-sum001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-sum001_cdcl.output) (deps (:input testfile-sum001.ae)) @@ -211213,10 +208047,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum001.expected testfile-sum001_cdcl.output))) + (deps testfile-sum001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_cdcl.output))) (rule (target testfile-sum001_tableaux_cdcl.output) (deps (:input testfile-sum001.ae)) @@ -211234,10 +208069,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum001.expected testfile-sum001_tableaux_cdcl.output))) + (deps testfile-sum001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_tableaux_cdcl.output))) (rule (target testfile-sum001_tableaux.output) (deps (:input testfile-sum001.ae)) @@ -211255,10 +208091,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum001.expected testfile-sum001_tableaux.output))) + (deps testfile-sum001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_tableaux.output))) (rule (target testfile-sum001_legacy.output) (deps (:input testfile-sum001.ae)) @@ -211275,10 +208112,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum001.expected testfile-sum001_legacy.output))) + (deps testfile-sum001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_legacy.output))) (rule (target testfile-sum001_dolmen.output) (deps (:input testfile-sum001.ae)) @@ -211295,10 +208133,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum001.expected testfile-sum001_dolmen.output))) + (deps testfile-sum001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_dolmen.output))) (rule (target testfile-sum001_fpa.output) (deps (:input testfile-sum001.ae)) @@ -211315,10 +208154,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-sum001.expected testfile-sum001_fpa.output)))) + (deps testfile-sum001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-sum001.expected testfile-sum001_fpa.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -211342,12 +208182,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage010.expected - testfile-typage010_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage010_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage010.ae)) @@ -211368,12 +208207,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage010.expected - testfile-typage010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage010.ae)) @@ -211393,12 +208231,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage010.expected - testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage010_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage010.ae)) @@ -211417,12 +208254,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage010.expected - testfile-typage010_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage010_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage010.ae)) @@ -211441,12 +208277,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage010.expected - testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage010_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage010.ae)) @@ -211465,12 +208300,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage010.expected - testfile-typage010_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage010_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage010_cdcl.output) (deps (:input testfile-typage010.ae)) @@ -211488,10 +208322,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage010.expected testfile-typage010_cdcl.output))) + (deps testfile-typage010_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_cdcl.output))) (rule (target testfile-typage010_tableaux_cdcl.output) (deps (:input testfile-typage010.ae)) @@ -211509,12 +208344,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage010.expected - testfile-typage010_tableaux_cdcl.output))) + (deps testfile-typage010_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_tableaux_cdcl.output))) (rule (target testfile-typage010_tableaux.output) (deps (:input testfile-typage010.ae)) @@ -211532,10 +208366,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage010.expected testfile-typage010_tableaux.output))) + (deps testfile-typage010_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_tableaux.output))) (rule (target testfile-typage010_legacy.output) (deps (:input testfile-typage010.ae)) @@ -211552,10 +208387,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage010.expected testfile-typage010_legacy.output))) + (deps testfile-typage010_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_legacy.output))) (rule (target testfile-typage010_dolmen.output) (deps (:input testfile-typage010.ae)) @@ -211572,10 +208408,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage010.expected testfile-typage010_dolmen.output))) + (deps testfile-typage010_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_dolmen.output))) (rule (target testfile-typage010_fpa.output) (deps (:input testfile-typage010.ae)) @@ -211592,10 +208429,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage010.expected testfile-typage010_fpa.output))) + (deps testfile-typage010_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage010.expected testfile-typage010_fpa.output))) (rule (target testfile-typage009_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage009.ae)) @@ -211614,12 +208452,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage009.expected - testfile-typage009_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage009_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage009.ae)) @@ -211640,12 +208477,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage009.expected - testfile-typage009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage009.ae)) @@ -211665,12 +208501,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage009.expected - testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage009_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage009.ae)) @@ -211689,12 +208524,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage009.expected - testfile-typage009_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage009_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage009.ae)) @@ -211713,12 +208547,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage009.expected - testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage009_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage009.ae)) @@ -211737,12 +208570,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage009.expected - testfile-typage009_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage009_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage009_cdcl.output) (deps (:input testfile-typage009.ae)) @@ -211760,10 +208592,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage009.expected testfile-typage009_cdcl.output))) + (deps testfile-typage009_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_cdcl.output))) (rule (target testfile-typage009_tableaux_cdcl.output) (deps (:input testfile-typage009.ae)) @@ -211781,12 +208614,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage009.expected - testfile-typage009_tableaux_cdcl.output))) + (deps testfile-typage009_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_tableaux_cdcl.output))) (rule (target testfile-typage009_tableaux.output) (deps (:input testfile-typage009.ae)) @@ -211804,10 +208636,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage009.expected testfile-typage009_tableaux.output))) + (deps testfile-typage009_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_tableaux.output))) (rule (target testfile-typage009_legacy.output) (deps (:input testfile-typage009.ae)) @@ -211824,10 +208657,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage009.expected testfile-typage009_legacy.output))) + (deps testfile-typage009_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_legacy.output))) (rule (target testfile-typage009_dolmen.output) (deps (:input testfile-typage009.ae)) @@ -211844,10 +208678,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage009.expected testfile-typage009_dolmen.output))) + (deps testfile-typage009_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_dolmen.output))) (rule (target testfile-typage009_fpa.output) (deps (:input testfile-typage009.ae)) @@ -211864,10 +208699,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage009.expected testfile-typage009_fpa.output))) + (deps testfile-typage009_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage009.expected testfile-typage009_fpa.output))) (rule (target testfile-typage008_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage008.ae)) @@ -211886,12 +208722,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage008.expected - testfile-typage008_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage008_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage008.ae)) @@ -211912,12 +208747,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage008.expected - testfile-typage008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage008.ae)) @@ -211937,12 +208771,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage008.expected - testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage008_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage008.ae)) @@ -211961,12 +208794,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage008.expected - testfile-typage008_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage008_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage008.ae)) @@ -211985,12 +208817,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage008.expected - testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage008_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage008.ae)) @@ -212009,12 +208840,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage008.expected - testfile-typage008_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage008_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage008_cdcl.output) (deps (:input testfile-typage008.ae)) @@ -212032,10 +208862,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage008.expected testfile-typage008_cdcl.output))) + (deps testfile-typage008_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_cdcl.output))) (rule (target testfile-typage008_tableaux_cdcl.output) (deps (:input testfile-typage008.ae)) @@ -212053,12 +208884,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage008.expected - testfile-typage008_tableaux_cdcl.output))) + (deps testfile-typage008_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_tableaux_cdcl.output))) (rule (target testfile-typage008_tableaux.output) (deps (:input testfile-typage008.ae)) @@ -212076,10 +208906,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage008.expected testfile-typage008_tableaux.output))) + (deps testfile-typage008_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_tableaux.output))) (rule (target testfile-typage008_legacy.output) (deps (:input testfile-typage008.ae)) @@ -212096,10 +208927,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage008.expected testfile-typage008_legacy.output))) + (deps testfile-typage008_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_legacy.output))) (rule (target testfile-typage008_dolmen.output) (deps (:input testfile-typage008.ae)) @@ -212116,10 +208948,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage008.expected testfile-typage008_dolmen.output))) + (deps testfile-typage008_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_dolmen.output))) (rule (target testfile-typage008_fpa.output) (deps (:input testfile-typage008.ae)) @@ -212136,10 +208969,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage008.expected testfile-typage008_fpa.output))) + (deps testfile-typage008_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage008.expected testfile-typage008_fpa.output))) (rule (target testfile-typage007_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage007.ae)) @@ -212158,12 +208992,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage007.expected - testfile-typage007_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage007_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage007.ae)) @@ -212184,12 +209017,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage007.expected - testfile-typage007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage007.ae)) @@ -212209,12 +209041,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage007.expected - testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage007_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage007.ae)) @@ -212233,12 +209064,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage007.expected - testfile-typage007_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage007_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage007.ae)) @@ -212257,12 +209087,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage007.expected - testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage007_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage007.ae)) @@ -212281,12 +209110,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage007.expected - testfile-typage007_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage007_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage007_cdcl.output) (deps (:input testfile-typage007.ae)) @@ -212304,10 +209132,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage007.expected testfile-typage007_cdcl.output))) + (deps testfile-typage007_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_cdcl.output))) (rule (target testfile-typage007_tableaux_cdcl.output) (deps (:input testfile-typage007.ae)) @@ -212325,12 +209154,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage007.expected - testfile-typage007_tableaux_cdcl.output))) + (deps testfile-typage007_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_tableaux_cdcl.output))) (rule (target testfile-typage007_tableaux.output) (deps (:input testfile-typage007.ae)) @@ -212348,10 +209176,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage007.expected testfile-typage007_tableaux.output))) + (deps testfile-typage007_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_tableaux.output))) (rule (target testfile-typage007_legacy.output) (deps (:input testfile-typage007.ae)) @@ -212368,10 +209197,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage007.expected testfile-typage007_legacy.output))) + (deps testfile-typage007_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_legacy.output))) (rule (target testfile-typage007_dolmen.output) (deps (:input testfile-typage007.ae)) @@ -212388,10 +209218,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage007.expected testfile-typage007_dolmen.output))) + (deps testfile-typage007_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_dolmen.output))) (rule (target testfile-typage007_fpa.output) (deps (:input testfile-typage007.ae)) @@ -212408,10 +209239,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage007.expected testfile-typage007_fpa.output))) + (deps testfile-typage007_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage007.expected testfile-typage007_fpa.output))) (rule (target testfile-typage006_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage006.ae)) @@ -212430,12 +209262,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage006.expected - testfile-typage006_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage006_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage006.ae)) @@ -212456,12 +209287,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage006.expected - testfile-typage006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage006.ae)) @@ -212481,12 +209311,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage006.expected - testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage006_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage006.ae)) @@ -212505,12 +209334,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage006.expected - testfile-typage006_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage006_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage006.ae)) @@ -212529,12 +209357,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage006.expected - testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage006_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage006.ae)) @@ -212553,12 +209380,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage006.expected - testfile-typage006_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage006_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage006_cdcl.output) (deps (:input testfile-typage006.ae)) @@ -212576,10 +209402,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage006.expected testfile-typage006_cdcl.output))) + (deps testfile-typage006_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_cdcl.output))) (rule (target testfile-typage006_tableaux_cdcl.output) (deps (:input testfile-typage006.ae)) @@ -212597,12 +209424,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage006.expected - testfile-typage006_tableaux_cdcl.output))) + (deps testfile-typage006_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_tableaux_cdcl.output))) (rule (target testfile-typage006_tableaux.output) (deps (:input testfile-typage006.ae)) @@ -212620,10 +209446,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage006.expected testfile-typage006_tableaux.output))) + (deps testfile-typage006_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_tableaux.output))) (rule (target testfile-typage006_legacy.output) (deps (:input testfile-typage006.ae)) @@ -212640,10 +209467,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage006.expected testfile-typage006_legacy.output))) + (deps testfile-typage006_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_legacy.output))) (rule (target testfile-typage006_dolmen.output) (deps (:input testfile-typage006.ae)) @@ -212660,10 +209488,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage006.expected testfile-typage006_dolmen.output))) + (deps testfile-typage006_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_dolmen.output))) (rule (target testfile-typage006_fpa.output) (deps (:input testfile-typage006.ae)) @@ -212680,10 +209509,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage006.expected testfile-typage006_fpa.output))) + (deps testfile-typage006_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage006.expected testfile-typage006_fpa.output))) (rule (target testfile-typage005_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage005.ae)) @@ -212702,12 +209532,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage005.expected - testfile-typage005_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage005_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage005.ae)) @@ -212728,12 +209557,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage005.expected - testfile-typage005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage005.ae)) @@ -212753,12 +209581,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage005.expected - testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage005_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage005.ae)) @@ -212777,12 +209604,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage005.expected - testfile-typage005_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage005_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage005.ae)) @@ -212801,12 +209627,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage005.expected - testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage005_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage005.ae)) @@ -212825,12 +209650,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage005.expected - testfile-typage005_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage005_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage005_cdcl.output) (deps (:input testfile-typage005.ae)) @@ -212848,10 +209672,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage005.expected testfile-typage005_cdcl.output))) + (deps testfile-typage005_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_cdcl.output))) (rule (target testfile-typage005_tableaux_cdcl.output) (deps (:input testfile-typage005.ae)) @@ -212869,12 +209694,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage005.expected - testfile-typage005_tableaux_cdcl.output))) + (deps testfile-typage005_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_tableaux_cdcl.output))) (rule (target testfile-typage005_tableaux.output) (deps (:input testfile-typage005.ae)) @@ -212892,10 +209716,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage005.expected testfile-typage005_tableaux.output))) + (deps testfile-typage005_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_tableaux.output))) (rule (target testfile-typage005_legacy.output) (deps (:input testfile-typage005.ae)) @@ -212912,10 +209737,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage005.expected testfile-typage005_legacy.output))) + (deps testfile-typage005_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_legacy.output))) (rule (target testfile-typage005_dolmen.output) (deps (:input testfile-typage005.ae)) @@ -212932,10 +209758,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage005.expected testfile-typage005_dolmen.output))) + (deps testfile-typage005_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_dolmen.output))) (rule (target testfile-typage005_fpa.output) (deps (:input testfile-typage005.ae)) @@ -212952,10 +209779,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage005.expected testfile-typage005_fpa.output))) + (deps testfile-typage005_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage005.expected testfile-typage005_fpa.output))) (rule (target testfile-typage004_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage004.ae)) @@ -212974,12 +209802,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage004.expected - testfile-typage004_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage004_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage004.ae)) @@ -213000,12 +209827,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage004.expected - testfile-typage004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage004.ae)) @@ -213025,12 +209851,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage004.expected - testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage004_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage004.ae)) @@ -213049,12 +209874,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage004.expected - testfile-typage004_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage004_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage004.ae)) @@ -213073,12 +209897,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage004.expected - testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage004_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage004.ae)) @@ -213097,12 +209920,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage004.expected - testfile-typage004_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage004_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage004_cdcl.output) (deps (:input testfile-typage004.ae)) @@ -213120,10 +209942,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage004.expected testfile-typage004_cdcl.output))) + (deps testfile-typage004_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_cdcl.output))) (rule (target testfile-typage004_tableaux_cdcl.output) (deps (:input testfile-typage004.ae)) @@ -213141,12 +209964,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage004.expected - testfile-typage004_tableaux_cdcl.output))) + (deps testfile-typage004_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_tableaux_cdcl.output))) (rule (target testfile-typage004_tableaux.output) (deps (:input testfile-typage004.ae)) @@ -213164,10 +209986,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage004.expected testfile-typage004_tableaux.output))) + (deps testfile-typage004_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_tableaux.output))) (rule (target testfile-typage004_legacy.output) (deps (:input testfile-typage004.ae)) @@ -213184,10 +210007,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage004.expected testfile-typage004_legacy.output))) + (deps testfile-typage004_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_legacy.output))) (rule (target testfile-typage004_dolmen.output) (deps (:input testfile-typage004.ae)) @@ -213204,10 +210028,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage004.expected testfile-typage004_dolmen.output))) + (deps testfile-typage004_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_dolmen.output))) (rule (target testfile-typage004_fpa.output) (deps (:input testfile-typage004.ae)) @@ -213224,10 +210049,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage004.expected testfile-typage004_fpa.output))) + (deps testfile-typage004_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage004.expected testfile-typage004_fpa.output))) (rule (target testfile-typage003_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage003.ae)) @@ -213246,12 +210072,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage003.expected - testfile-typage003_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage003_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage003.ae)) @@ -213272,12 +210097,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage003.expected - testfile-typage003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage003.ae)) @@ -213297,12 +210121,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage003.expected - testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage003_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage003.ae)) @@ -213321,12 +210144,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage003.expected - testfile-typage003_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage003_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage003.ae)) @@ -213345,12 +210167,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage003.expected - testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage003_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage003.ae)) @@ -213369,12 +210190,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage003.expected - testfile-typage003_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage003_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage003_cdcl.output) (deps (:input testfile-typage003.ae)) @@ -213392,10 +210212,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage003.expected testfile-typage003_cdcl.output))) + (deps testfile-typage003_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_cdcl.output))) (rule (target testfile-typage003_tableaux_cdcl.output) (deps (:input testfile-typage003.ae)) @@ -213413,12 +210234,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage003.expected - testfile-typage003_tableaux_cdcl.output))) + (deps testfile-typage003_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_tableaux_cdcl.output))) (rule (target testfile-typage003_tableaux.output) (deps (:input testfile-typage003.ae)) @@ -213436,10 +210256,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage003.expected testfile-typage003_tableaux.output))) + (deps testfile-typage003_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_tableaux.output))) (rule (target testfile-typage003_legacy.output) (deps (:input testfile-typage003.ae)) @@ -213456,10 +210277,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage003.expected testfile-typage003_legacy.output))) + (deps testfile-typage003_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_legacy.output))) (rule (target testfile-typage003_dolmen.output) (deps (:input testfile-typage003.ae)) @@ -213476,10 +210298,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage003.expected testfile-typage003_dolmen.output))) + (deps testfile-typage003_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_dolmen.output))) (rule (target testfile-typage003_fpa.output) (deps (:input testfile-typage003.ae)) @@ -213496,10 +210319,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage003.expected testfile-typage003_fpa.output))) + (deps testfile-typage003_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage003.expected testfile-typage003_fpa.output))) (rule (target testfile-typage002_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage002.ae)) @@ -213518,12 +210342,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage002.expected - testfile-typage002_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage002_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage002.ae)) @@ -213544,12 +210367,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage002.expected - testfile-typage002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage002.ae)) @@ -213569,12 +210391,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage002.expected - testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage002_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage002.ae)) @@ -213593,12 +210414,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage002.expected - testfile-typage002_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage002_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage002.ae)) @@ -213617,12 +210437,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage002.expected - testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage002_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage002.ae)) @@ -213641,12 +210460,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage002.expected - testfile-typage002_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage002_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage002_cdcl.output) (deps (:input testfile-typage002.ae)) @@ -213664,10 +210482,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage002.expected testfile-typage002_cdcl.output))) + (deps testfile-typage002_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_cdcl.output))) (rule (target testfile-typage002_tableaux_cdcl.output) (deps (:input testfile-typage002.ae)) @@ -213685,12 +210504,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage002.expected - testfile-typage002_tableaux_cdcl.output))) + (deps testfile-typage002_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_tableaux_cdcl.output))) (rule (target testfile-typage002_tableaux.output) (deps (:input testfile-typage002.ae)) @@ -213708,10 +210526,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage002.expected testfile-typage002_tableaux.output))) + (deps testfile-typage002_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_tableaux.output))) (rule (target testfile-typage002_legacy.output) (deps (:input testfile-typage002.ae)) @@ -213728,10 +210547,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage002.expected testfile-typage002_legacy.output))) + (deps testfile-typage002_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_legacy.output))) (rule (target testfile-typage002_dolmen.output) (deps (:input testfile-typage002.ae)) @@ -213748,10 +210568,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage002.expected testfile-typage002_dolmen.output))) + (deps testfile-typage002_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_dolmen.output))) (rule (target testfile-typage002_fpa.output) (deps (:input testfile-typage002.ae)) @@ -213768,10 +210589,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage002.expected testfile-typage002_fpa.output))) + (deps testfile-typage002_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage002.expected testfile-typage002_fpa.output))) (rule (target testfile-typage001_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-typage001.ae)) @@ -213790,12 +210612,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_no_minimal_bj.output))) + (deps testfile-typage001_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage001.ae)) @@ -213816,12 +210637,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-typage001.ae)) @@ -213841,12 +210661,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-typage001.ae)) @@ -213865,12 +210684,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-typage001.ae)) @@ -213889,12 +210707,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-typage001.ae)) @@ -213913,12 +210730,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-typage001_cdcl.output) (deps (:input testfile-typage001.ae)) @@ -213936,10 +210752,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_cdcl.output))) + (deps testfile-typage001_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_cdcl.output))) (rule (target testfile-typage001_tableaux_cdcl.output) (deps (:input testfile-typage001.ae)) @@ -213957,12 +210774,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-typage001.expected - testfile-typage001_tableaux_cdcl.output))) + (deps testfile-typage001_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_tableaux_cdcl.output))) (rule (target testfile-typage001_tableaux.output) (deps (:input testfile-typage001.ae)) @@ -213980,10 +210796,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_tableaux.output))) + (deps testfile-typage001_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_tableaux.output))) (rule (target testfile-typage001_legacy.output) (deps (:input testfile-typage001.ae)) @@ -214000,10 +210817,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_legacy.output))) + (deps testfile-typage001_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_legacy.output))) (rule (target testfile-typage001_dolmen.output) (deps (:input testfile-typage001.ae)) @@ -214020,10 +210838,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_dolmen.output))) + (deps testfile-typage001_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_dolmen.output))) (rule (target testfile-typage001_fpa.output) (deps (:input testfile-typage001.ae)) @@ -214040,10 +210859,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff testfile-typage001.expected testfile-typage001_fpa.output))) + (deps testfile-typage001_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-typage001.expected testfile-typage001_fpa.output))) (rule (target testfile-mut-pred_def_1_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214062,12 +210882,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_ci_cdcl_no_minimal_bj.output))) + (deps testfile-mut-pred_def_1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-mut-pred_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214088,12 +210907,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-mut-pred_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214113,12 +210931,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-mut-pred_def_1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214137,12 +210954,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-mut-pred_def_1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214161,12 +210977,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-mut-pred_def_1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214185,12 +211000,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-mut-pred_def_1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-mut-pred_def_1_cdcl.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214208,12 +211022,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_cdcl.output))) + (deps testfile-mut-pred_def_1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_cdcl.output))) (rule (target testfile-mut-pred_def_1_tableaux_cdcl.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214231,12 +211044,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_tableaux_cdcl.output))) + (deps testfile-mut-pred_def_1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_tableaux_cdcl.output))) (rule (target testfile-mut-pred_def_1_tableaux.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214254,12 +211066,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_tableaux.output))) + (deps testfile-mut-pred_def_1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_tableaux.output))) (rule (target testfile-mut-pred_def_1_legacy.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214276,12 +211087,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_legacy.output))) + (deps testfile-mut-pred_def_1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_legacy.output))) (rule (target testfile-mut-pred_def_1_dolmen.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214298,12 +211108,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_dolmen.output))) + (deps testfile-mut-pred_def_1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_dolmen.output))) (rule (target testfile-mut-pred_def_1_fpa.output) (deps (:input testfile-mut-pred_def_1.ae)) @@ -214320,12 +211129,11 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-pred_def_1.expected - testfile-mut-pred_def_1_fpa.output))) + (deps testfile-mut-pred_def_1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-pred_def_1.expected testfile-mut-pred_def_1_fpa.output))) (rule (target testfile-mut-fun_def_1_ci_cdcl_no_minimal_bj.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214344,12 +211152,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_ci_cdcl_no_minimal_bj.output))) + (deps testfile-mut-fun_def_1_ci_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_ci_cdcl_no_minimal_bj.output))) (rule (target testfile-mut-fun_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214370,12 +211177,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-mut-fun_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_ci_cdcl_tableaux_no_minimal_bj_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214395,12 +211201,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) + (deps testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories_and_instantiation.output))) (rule (target testfile-mut-fun_def_1_ci_no_tableaux_cdcl_in_instantiation.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214419,12 +211224,11 @@ --no-tableaux-cdcl-in-instantiation %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_ci_no_tableaux_cdcl_in_instantiation.output))) + (deps testfile-mut-fun_def_1_ci_no_tableaux_cdcl_in_instantiation.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_ci_no_tableaux_cdcl_in_instantiation.output))) (rule (target testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214443,12 +211247,11 @@ --no-tableaux-cdcl-in-theories %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) + (deps testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_ci_cdcl_tableaux_no_tableaux_cdcl_in_theories.output))) (rule (target testfile-mut-fun_def_1_ci_tableaux_cdcl_no_minimal_bj.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214467,12 +211270,11 @@ --no-minimal-bj %{input}))))))) (rule - (alias runtest-ci) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_ci_tableaux_cdcl_no_minimal_bj.output))) + (deps testfile-mut-fun_def_1_ci_tableaux_cdcl_no_minimal_bj.output) + (alias runtest-ci) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_ci_tableaux_cdcl_no_minimal_bj.output))) (rule (target testfile-mut-fun_def_1_cdcl.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214490,12 +211292,11 @@ --sat-solver CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_cdcl.output))) + (deps testfile-mut-fun_def_1_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_cdcl.output))) (rule (target testfile-mut-fun_def_1_tableaux_cdcl.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214513,12 +211314,11 @@ --sat-solver Tableaux-CDCL %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_tableaux_cdcl.output))) + (deps testfile-mut-fun_def_1_tableaux_cdcl.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_tableaux_cdcl.output))) (rule (target testfile-mut-fun_def_1_tableaux.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214536,12 +211336,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_tableaux.output))) + (deps testfile-mut-fun_def_1_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_tableaux.output))) (rule (target testfile-mut-fun_def_1_legacy.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214558,12 +211357,11 @@ --frontend legacy %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_legacy.output))) + (deps testfile-mut-fun_def_1_legacy.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_legacy.output))) (rule (target testfile-mut-fun_def_1_dolmen.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214580,12 +211378,11 @@ --frontend dolmen %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_dolmen.output))) + (deps testfile-mut-fun_def_1_dolmen.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_dolmen.output))) (rule (target testfile-mut-fun_def_1_fpa.output) (deps (:input testfile-mut-fun_def_1.ae)) @@ -214602,10 +211399,9 @@ --enable-theories fpa %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff - testfile-mut-fun_def_1.expected - testfile-mut-fun_def_1_fpa.output)))) + (deps testfile-mut-fun_def_1_fpa.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff testfile-mut-fun_def_1.expected testfile-mut-fun_def_1_fpa.output)))) ; Auto-generated part end diff --git a/tests/issues/555.models.expected b/tests/issues/555.models.fail.expected similarity index 100% rename from tests/issues/555.models.expected rename to tests/issues/555.models.fail.expected diff --git a/tests/issues/555.models.smt2 b/tests/issues/555.models.fail.smt2 similarity index 100% rename from tests/issues/555.models.smt2 rename to tests/issues/555.models.fail.smt2 diff --git a/tests/issues/777.models.expected b/tests/issues/777.models.fail.expected similarity index 100% rename from tests/issues/777.models.expected rename to tests/issues/777.models.fail.expected diff --git a/tests/issues/777.models.smt2 b/tests/issues/777.models.fail.smt2 similarity index 100% rename from tests/issues/777.models.smt2 rename to tests/issues/777.models.fail.smt2 diff --git a/tests/models/arith/arith1.models.expected b/tests/models/arith/arith1.models.fail.expected similarity index 100% rename from tests/models/arith/arith1.models.expected rename to tests/models/arith/arith1.models.fail.expected diff --git a/tests/models/arith/arith1.models.smt2 b/tests/models/arith/arith1.models.fail.smt2 similarity index 100% rename from tests/models/arith/arith1.models.smt2 rename to tests/models/arith/arith1.models.fail.smt2 diff --git a/tests/models/arith/arith2.models.expected b/tests/models/arith/arith2.models.fail.expected similarity index 100% rename from tests/models/arith/arith2.models.expected rename to tests/models/arith/arith2.models.fail.expected diff --git a/tests/models/arith/arith2.models.smt2 b/tests/models/arith/arith2.models.fail.smt2 similarity index 100% rename from tests/models/arith/arith2.models.smt2 rename to tests/models/arith/arith2.models.fail.smt2 diff --git a/tests/models/bool/bool1.models.expected b/tests/models/bool/bool1.models.fail.expected similarity index 100% rename from tests/models/bool/bool1.models.expected rename to tests/models/bool/bool1.models.fail.expected diff --git a/tests/models/bool/bool1.models.smt2 b/tests/models/bool/bool1.models.fail.smt2 similarity index 100% rename from tests/models/bool/bool1.models.smt2 rename to tests/models/bool/bool1.models.fail.smt2 diff --git a/tests/models/bool/bool2.models.expected b/tests/models/bool/bool2.models.fail.expected similarity index 100% rename from tests/models/bool/bool2.models.expected rename to tests/models/bool/bool2.models.fail.expected diff --git a/tests/models/bool/bool2.models.smt2 b/tests/models/bool/bool2.models.fail.smt2 similarity index 100% rename from tests/models/bool/bool2.models.smt2 rename to tests/models/bool/bool2.models.fail.smt2 diff --git a/tests/models/issues/715/715_2.models.expected b/tests/models/issues/715/715_2.models.fail.expected similarity index 100% rename from tests/models/issues/715/715_2.models.expected rename to tests/models/issues/715/715_2.models.fail.expected diff --git a/tests/models/issues/715/715_2.models.smt2 b/tests/models/issues/715/715_2.models.fail.smt2 similarity index 100% rename from tests/models/issues/715/715_2.models.smt2 rename to tests/models/issues/715/715_2.models.fail.smt2 diff --git a/tests/models/records/record1.models.expected b/tests/models/records/record1.models.fail.expected similarity index 100% rename from tests/models/records/record1.models.expected rename to tests/models/records/record1.models.fail.expected diff --git a/tests/models/records/record1.models.smt2 b/tests/models/records/record1.models.fail.smt2 similarity index 100% rename from tests/models/records/record1.models.smt2 rename to tests/models/records/record1.models.fail.smt2 diff --git a/tests/models/uf/uf1.models.expected b/tests/models/uf/uf1.models.fail.expected similarity index 100% rename from tests/models/uf/uf1.models.expected rename to tests/models/uf/uf1.models.fail.expected diff --git a/tests/models/uf/uf1.models.smt2 b/tests/models/uf/uf1.models.fail.smt2 similarity index 100% rename from tests/models/uf/uf1.models.smt2 rename to tests/models/uf/uf1.models.fail.smt2 diff --git a/tests/models/uf/uf2.models.expected b/tests/models/uf/uf2.models.fail.expected similarity index 100% rename from tests/models/uf/uf2.models.expected rename to tests/models/uf/uf2.models.fail.expected diff --git a/tests/models/uf/uf2.models.smt2 b/tests/models/uf/uf2.models.fail.smt2 similarity index 100% rename from tests/models/uf/uf2.models.smt2 rename to tests/models/uf/uf2.models.fail.smt2 diff --git a/tools/gentest.ml b/tools/gentest.ml index db18949fc..7938a7847 100644 --- a/tools/gentest.ml +++ b/tools/gentest.ml @@ -109,11 +109,12 @@ end module Test : sig type t = private { cmd: Cmd.t; - pb_file: string + pb_file: string; + should_succeed: bool } (** Type of a test. *) - val make: cmd: Cmd.t -> pb_file: string -> t + val make: cmd: Cmd.t -> pb_file: string -> should_succeed: bool -> t (** Set up the test. *) val pp_expected_output: t printer @@ -124,10 +125,11 @@ module Test : sig end = struct type t = { cmd: Cmd.t; - pb_file: string + pb_file: string; + should_succeed: bool } - let make ~cmd ~pb_file = {cmd; pb_file} + let make ~cmd ~pb_file ~should_succeed = {cmd; pb_file; should_succeed} let pp_output fmt tst = let filename = Filename.chop_extension tst.pb_file in @@ -139,6 +141,17 @@ end = struct Format.fprintf fmt "%s.expected" filename let pp_stanza fmt tst = + let pp_diff_command fmt tst = + if tst.should_succeed then + Format.fprintf fmt "@[(diff %a %a)@]" + pp_expected_output tst + pp_output tst + else + Format.fprintf fmt + "@[(ignore-stdout (with-accepted-exit-codes (not 0) (run diff %a %a)))@]" + pp_expected_output tst + pp_output tst + in Format.fprintf fmt "\ @[\ (rule@,\ @@ -152,15 +165,16 @@ end = struct @[(with-accepted-exit-codes 0@,\ @[(run @[%a@])))))))@]@]@]@]@]@]@]@ \ @[(rule@,\ +@[(deps %a)@,\ @[(alias %s)@,\ @[(package alt-ergo)@,\ -@[(action@ @[(diff@ %a@ %a)@]))@]@]@]@]" +@[(action@ %a))@]@]@]@]@]" pp_output tst tst.pb_file Cmd.pp tst.cmd - (Cmd.group tst.cmd) - pp_expected_output tst pp_output tst + (Cmd.group tst.cmd) + pp_diff_command tst end module Batch : sig @@ -192,25 +206,32 @@ end = struct let make ~root ~path ~cmds ~pb_files = let tests = List.fold_left (fun acc1 pb_file -> - let exclude, filters = + let exclude, filters, should_succeed = List.fold_left ( - fun (exclude, filters_opt) -> + fun (exclude, filters_opt, should_succeed) -> function + | "fail" -> + exclude, + filters_opt, + false | "dolmen" -> "legacy" :: exclude, - Some ["dolmen"] + Some ["dolmen"], + should_succeed | "models" -> exclude, - Some ["tableaux"] + Some ["tableaux"], + should_succeed | "fpa" -> exclude, - Some ["fpa"] - | _ -> (exclude, filters_opt) - ) ([], None) (String.split_on_char '.' pb_file) + Some ["fpa"], + should_succeed + | _ -> (exclude, filters_opt, should_succeed) + ) ([], None, true) (String.split_on_char '.' pb_file) in List.fold_left (fun acc2 cmd -> if filter ~exclude filters cmd then - Test.make ~cmd ~pb_file :: acc2 + Test.make ~cmd ~pb_file ~should_succeed :: acc2 else acc2 ) acc1 cmds) [] pb_files