From c1e43876d82a143459a9c0ad37f7e034a6531aca Mon Sep 17 00:00:00 2001 From: Pierrot Date: Wed, 27 Sep 2023 15:17:40 +0200 Subject: [PATCH] Model generation support for SatML (#829) * Theory: harden 'compute_concrete_model' function * Push the test 'get_case_split_policy() == origin' into Theory.do_case_split * CS: functions return all the env instead of just 'gamma_finite'. * Fun_sat: refactor the way models are handled/printed - add a data-structure for models, - save the strucutre in the SAT's env - print the models in the Frontend module * satML: add missing case-split strategies * satML: implement models generation. * Make model tests negative Some tests about models failed in the OptimAE PR. This commit allows to tag tests in `tests/` with `fail` tag which means the test is supposed to fail. * Reindent * Update documentation about `output_concrete_model` I also remove the mention about the different kind of formats used to print models. Indeed, we use only the SMT-LIB format and the Why3 format is slightly different but probably outdated. * Document the timeout_reason ADT * poetry * Restore the comment about `reinit_cpt` * Fix spelling * Remainder to the issue 834 * Simplify get-model processing * Remove SAT solver choices while model generating As SatML supports model generation, we don't need to select the appropriate SAT solver while parsing the command line or the SMT-LIB statement `(set-option :produce-models true)`. * Fix model output We should print constraints in models only if the appropriate flag is used in the command line. * All the model tests are positive * Remove deprecated cram tests Some cram tests are not valid anymore as we don't need to select the SAT solver Tableaux while generating models. * Test models with all the SAT solvers * Restoring dump-models option The dump-models option have been broken by the refactoring in OptimAE. I restore this feature. * Use the right post-solve SAT environment for models Return the appropriate environment in the Frontend module to retrieve the model with `(get-model)` as we did in the PR #789. * Print dump models on the channel models This commit restore the feature of the PR #838 as the location of code moved after the refactoring of model generation in OptimAE. * Prevent printing internal names in models Symbol names prefixed with a dot or @ shouldn't never be printed in models as they cannot be declared by the user. This behaviour is SMT-LIB compliant. * Promote tests * Revert "Simplify get-model processing" This reverts commit 9507d632babad381cd29c2a40c997da034cf43ce. * Review changes * Test only models with FunSAT Prevent to test models with other solvers as we cannot guarantee they will produce exactly the same model. We have to modify gentest to manage several expected files while testing models. --------- Co-authored-by: iguer --- docs/sphinx_docs/Usage/index.md | 12 +- src/bin/common/parse_command.ml | 74 +- src/bin/common/solving_loop.ml | 22 +- src/lib/frontend/frontend.ml | 46 +- src/lib/frontend/models.ml | 42 +- src/lib/frontend/models.mli | 23 +- src/lib/reasoners/ccx.ml | 11 +- src/lib/reasoners/ccx.mli | 5 +- src/lib/reasoners/fun_sat.ml | 269 +- src/lib/reasoners/sat_solver_sig.ml | 11 +- src/lib/reasoners/sat_solver_sig.mli | 11 +- src/lib/reasoners/satml.ml | 20 +- src/lib/reasoners/satml.mli | 2 +- src/lib/reasoners/satml_frontend.ml | 117 +- src/lib/reasoners/theory.ml | 104 +- src/lib/reasoners/theory.mli | 15 +- src/lib/reasoners/uf.ml | 19 +- src/lib/reasoners/uf.mli | 9 +- src/lib/structures/symbols.ml | 8 + src/lib/structures/symbols.mli | 4 + src/lib/util/printer.ml | 4 +- tests/cram.t/run.t | 14 +- tests/dune.inc | 97113 ++++++++++++------------- tools/gentest.ml | 53 +- 24 files changed, 47458 insertions(+), 50550 deletions(-) diff --git a/docs/sphinx_docs/Usage/index.md b/docs/sphinx_docs/Usage/index.md index 98802445c..efdcdacaa 100644 --- a/docs/sphinx_docs/Usage/index.md +++ b/docs/sphinx_docs/Usage/index.md @@ -51,8 +51,8 @@ Model generation is disabled by default. There are two recommended ways to enabl on demand using the statement `(get-model)`. Alternatively, you can enable model generation using the statement - `(set-option :produce-models true)`. This currently requires using the options - `--sat-solver tableaux` and `--frontend dolmen`. + `(set-option :produce-models true)`. This currently requires using the option + `--frontend dolmen`. #### Examples @@ -142,7 +142,7 @@ Model generation is disabled by default. There are two recommended ways to enabl (get-model) ``` - and the command `alt-ergo --frontend dolmen --sat-solver tableaux INPUT.smt2` produces + and the command `alt-ergo --frontend dolmen INPUT.smt2` produces the output model ``` unknown @@ -154,10 +154,8 @@ Model generation is disabled by default. There are two recommended ways to enabl ``` ```{admonition} Note - You need to select the Dolmen frontend and the SAT solver Tableaux as the - model generation is not supported yet by the other SAT solvers. The options - `--dump-models` and `--produce-models` select the right frontend and SAT solver - for you. + You need to select the Dolmen frontend. The options `--dump-models` and + `--produce-models` select the right frontend for you. ``` - As a more didactic example, let us imagine while checking the loop invariant diff --git a/src/bin/common/parse_command.ml b/src/bin/common/parse_command.ml index b2fd15739..d09cc1d02 100644 --- a/src/bin/common/parse_command.ml +++ b/src/bin/common/parse_command.ml @@ -943,58 +943,38 @@ let parse_output_opt = frontend in - (* Use the --sat-solver to determine the sat solver. - - If an interpretation is provided, the solver is forced to be Tableaux, - because generation of models requires OptimAE for the other solvers. - - See https://github.com/OCamlPro/alt-ergo/pull/553 *) + (* Use the --sat-solver to determine the sat solver. *) let sat_solver = - let sat_solver_arg = - let sat_solver : _ Arg.conv = - let parse = function - | "CDCL" | "satML" -> - Ok Util.CDCL - | "CDCL-Tableaux" | "satML-Tableaux" - | "CDCL-tableaux" | "satML-tableaux" -> - Ok Util.CDCL_Tableaux - | "tableaux" | "Tableaux" - | "tableaux-like" | "Tableaux-like" -> - Ok Util.Tableaux - | "tableaux-cdcl" | "Tableaux-CDCL" - | "tableaux-CDCL" | "Tableaux-cdcl" -> - Ok Util.Tableaux_CDCL - | sat_solver -> - Error ("Args parsing error: unkown SAT solver " ^ sat_solver) + let sat_solver : _ Arg.conv = + let parse = function + | "CDCL" | "satML" -> + Ok Util.CDCL + | "CDCL-Tableaux" | "satML-Tableaux" + | "CDCL-tableaux" | "satML-tableaux" -> + Ok Util.CDCL_Tableaux + | "tableaux" | "Tableaux" + | "tableaux-like" | "Tableaux-like" -> + Ok Util.Tableaux + | "tableaux-cdcl" | "Tableaux-CDCL" + | "tableaux-CDCL" | "Tableaux-cdcl" -> + Ok Util.Tableaux_CDCL + | sat_solver -> + Error ("Args parsing error: unkown SAT solver " ^ sat_solver) - in - Arg.(conv' (parse, Util.pp_sat_solver)) in - let default, sum_up = "CDCL-Tableaux", "satML" in - let doc = Format.sprintf - "Choose the SAT solver to use. Default value is %s (i.e. %s\ - solver). Possible options are %s." - default sum_up - (Arg.doc_alts ["CDCL"; "satML"; "CDCL-Tableaux"; - "satML-Tableaux"; "Tableaux-CDCL"]) - in - let docv = "SAT" in - Arg.(value & opt (some ~none:default sat_solver) None & - info ["sat-solver"] ~docv ~docs:s_sat ~doc) + Arg.(conv' (parse, Util.pp_sat_solver)) in - - let mk_sat_solver sat_solver interpretation = - match interpretation, sat_solver with - | INone, None -> Ok Util.CDCL_Tableaux - | INone, Some sat_solver -> Ok sat_solver - | _, (None | Some Util.Tableaux) -> Ok Tableaux - | _, Some sat_solver -> - Fmt.error - "solver '%a' does not suppot model generation" - Util.pp_sat_solver sat_solver + let default, sum_up = "CDCL-Tableaux", "satML" in + let doc = Format.sprintf + "Choose the SAT solver to use. Default value is %s (i.e. %s\ + solver). Possible options are %s." + default sum_up + (Arg.doc_alts ["CDCL"; "satML"; "CDCL-Tableaux"; + "satML-Tableaux"; "Tableaux-CDCL"]) in - Term.term_result' @@ - Term.(const mk_sat_solver $ sat_solver_arg $ interpretation) + let docv = "SAT" in + Arg.(value & opt sat_solver Util.CDCL_Tableaux & + info ["sat-solver"] ~docv ~docs:s_sat ~doc) in let cdcl_tableaux_inst = diff --git a/src/bin/common/solving_loop.ml b/src/bin/common/solving_loop.ml index 326892135..22afb5053 100644 --- a/src/bin/common/solving_loop.ml +++ b/src/bin/common/solving_loop.ml @@ -358,15 +358,7 @@ let main () = Options.Output.create_channel name |> Options.Output.set_diagnostic | ":produce-models", Symbol { name = Simple "true"; _ } -> - (* TODO: The generation of models is supported only with the SAT - solver Tableaux. Remove this line after merging the OptimAE - PR. See https://github.com/OCamlPro/alt-ergo/pull/553 *) - if Stdlib.(Options.get_sat_solver () = Tableaux) then - Options.set_interpretation ILast - else - Printer.print_smtlib_err - "Model generation requires the Tableaux solver \ - (try --produce-models)"; + Options.set_interpretation ILast | ":produce-models", Symbol { name = Simple "false"; _ } -> Options.set_interpretation INone | ":produce-unsat-cores", Symbol { name = Simple "true"; _ } -> @@ -489,7 +481,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 + (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/lib/frontend/frontend.ml b/src/lib/frontend/frontend.ml index cf407df99..8de0f2c4d 100644 --- a/src/lib/frontend/frontend.ml +++ b/src/lib/frontend/frontend.ml @@ -154,6 +154,30 @@ 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 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 env timeout = + if Options.(get_interpretation () && get_dump_models ()) then begin + let s = timeout_reason_to_string timeout in + match SAT.get_model env with + | None -> + 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 (lazy model) -> + Printer.print_fmt + (Options.Output.get_fmt_diagnostic ()) + "@[; Returned timeout reason = %s@]" s; + Models.output_concrete_model (Options.Output.get_fmt_models ()) model + end + let process_decl print_status used_context consistent_dep_stack ((env, consistent, dep) as acc) d = try @@ -246,7 +270,7 @@ 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;*) + print_model env (Some SAT.NoTimeout); env, `Sat t, dep | SAT.Unsat dep' -> (* This case should mainly occur when a new assumption results in an unsat @@ -255,18 +279,24 @@ 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 , `Unsat, dep + | SAT.I_dont_know {env = t; timeout} -> + (* TODO: always print Unknown for why3 ? *) + let status = + if timeout != NoTimeout then (Timeout (Some d)) + else (Unknown (d, t)) + in + print_status status (Steps.get_steps ()); + print_model t (Some timeout); + (* TODO: Is it an appropriate behaviour? *) + (* if timeout != NoTimeout then raise Util.Timeout; *) env, `Unknown t, dep + | 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_model env None; raise e let print_status status steps = diff --git a/src/lib/frontend/models.ml b/src/lib/frontend/models.ml index 35d0d38f7..8d5e315fd 100644 --- a/src/lib/frontend/models.ml +++ b/src/lib/frontend/models.ml @@ -45,6 +45,13 @@ module MX = Shostak.MXH let constraints = ref MS.empty +type t = { + propositional : Expr.Set.t; + constants : ModelMap.t; + functions : ModelMap.t; + arrays : ModelMap.t; +} + module Pp_smtlib_term = struct let to_string_type t = @@ -483,29 +490,27 @@ 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 = +let output_concrete_model fmt m = SmtlibCounterExample.reset_counter (); - if ModelMap.(is_suspicious functions || is_suspicious constants - || is_suspicious arrays) then + 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 "@[("; - if Options.get_model_type_constraints () then - begin - Why3CounterExample.output_constraints fmt props; - Format.fprintf fmt "@ ; values" - end; + if Options.get_model_type_constraints () then begin + Why3CounterExample.output_constraints fmt m.propositional + 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; + 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 -> @@ -515,9 +520,8 @@ let output_concrete_model fmt props ~functions ~constants ~arrays = in Hashtbl.replace values f @@ ModelMap.V.fold (fun (keys, rs) acc -> - Store (acc, value (snd (List.hd keys)), value rs)) - st root) - arrays; + Store (acc, value (snd (List.hd keys)), value rs)) st root + ) m.arrays; let pp_value = pp_value (fun ppf (sy, _) -> @@ -527,12 +531,16 @@ let output_concrete_model fmt props ~functions ~constants ~arrays = let pp_x ppf xs = pp_value ppf (value xs) in (* Functions *) - let records = SmtlibCounterExample.output_functions_counterexample - pp_x fmt MS.empty functions + let records = + SmtlibCounterExample.output_functions_counterexample + pp_x fmt MS.empty m.functions in (* Constants *) SmtlibCounterExample.output_constants_counterexample - pp_x fmt records constants; + pp_x fmt records m.constants; + + (* Arrays *) + (* SmtlibCounterExample.output_arrays_counterexample fmt m.arrays; *) Printer.print_fmt fmt "@]@,)"; diff --git a/src/lib/frontend/models.mli b/src/lib/frontend/models.mli index dcbe944a3..3120efa18 100644 --- a/src/lib/frontend/models.mli +++ b/src/lib/frontend/models.mli @@ -30,16 +30,13 @@ (** {1 Models module} *) -(** 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. -*) -val output_concrete_model : - Format.formatter -> - Expr.Set.t -> - functions:ModelMap.t -> - constants:ModelMap.t -> - arrays:ModelMap.t -> - unit +type t = { + propositional : Expr.Set.t; + constants : ModelMap.t; + functions : ModelMap.t; + arrays : ModelMap.t; +} + +val output_concrete_model : t Fmt.t +(** [output_concrete_model ppf mdl] prints the model [mdl] on + the formatter [ppf]. *) diff --git a/src/lib/reasoners/ccx.ml b/src/lib/reasoners/ccx.ml index 11cbabc15..a7d6a7123 100644 --- a/src/lib/reasoners/ccx.ml +++ b/src/lib/reasoners/ccx.ml @@ -85,11 +85,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 -> t -> - unit + Models.t Lazy.t option + end module Main : S = struct @@ -738,7 +738,6 @@ 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 env = + Uf.extract_concrete_model ~prop_model env.uf end diff --git a/src/lib/reasoners/ccx.mli b/src/lib/reasoners/ccx.mli index c49af116e..e97a9e55c 100644 --- a/src/lib/reasoners/ccx.mli +++ b/src/lib/reasoners/ccx.mli @@ -76,11 +76,10 @@ 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 -> t -> - unit + Models.t Lazy.t option end module Main : S diff --git a/src/lib/reasoners/fun_sat.ml b/src/lib/reasoners/fun_sat.ml index 9f5a08ac9..19ad29cb2 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,23 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct { env with unit_facts_cache = ref refs.unit_facts}, guard + (* Specify the pass in which Alt-Ergo runs out of time. This information + is used to decide if the last produced model is relevant. *) + type timeout_reason = + | NoTimeout + | Assume + (* Timeout while assuming a ground formula. *) + + | ProofSearch + (* Timeout while doing instantiation or backtracking phases + during the proof search. *) + + | ModelGen + (* Timeout while generating a new model. *) + 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 +447,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 +620,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 +1125,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 +1144,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_models ()) ~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 +1279,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 +1312,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 +1426,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 +1664,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 @@ -1788,16 +1738,14 @@ 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 @@ -1810,10 +1758,12 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct 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 +1837,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 +1853,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 +1875,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 (); diff --git a/src/lib/reasoners/sat_solver_sig.ml b/src/lib/reasoners/sat_solver_sig.ml index 10d3f1376..0c10a0d49 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,8 @@ 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 + end diff --git a/src/lib/reasoners/sat_solver_sig.mli b/src/lib/reasoners/sat_solver_sig.mli index 4d01811c0..611b6034d 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,8 @@ 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 + end diff --git a/src/lib/reasoners/satml.ml b/src/lib/reasoners/satml.ml index a946f88e7..4b6269f5d 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 @@ -703,17 +705,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 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..9348554f8 100644 --- a/src/lib/reasoners/satml_frontend.ml +++ b/src/lib/reasoners/satml_frontend.ml @@ -60,6 +60,8 @@ 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; } let empty_guards () = { @@ -86,15 +88,23 @@ 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; } 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 +982,72 @@ 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 incoherent 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 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 +1062,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 +1076,24 @@ 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 (* copied from sat_solvers.ml *) let max_term_depth_in_sat env = @@ -1033,7 +1112,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 +1156,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 @@ -1108,7 +1188,8 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct let env = {env with inst = Inst.register_max_term_depth env.inst max_t} in unsat_rec 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 +1199,22 @@ module Make (Th : Theory.S) : Sat_solver_sig.S = struct )dep true end; dep + | (Util.Timeout | I_dont_know _) 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 +1245,8 @@ 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 reinit_ctx () = Steps.reinit_steps (); Th.reinit_cpt (); @@ -1169,8 +1262,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/theory.ml b/src/lib/reasoners/theory.ml index 04ebaa1e6..c8d65dbb0 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 : @@ -71,12 +73,6 @@ module type S = sig 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 end @@ -362,35 +358,42 @@ module Main_Default : S = struct choices : choice list } - 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 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 l, base_env = CC_X.case_split env.gamma_finite ~for_model 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 + { env with choices = List.rev dl }, ch + + | new_splits -> + let new_splits = add_explanations_to_splits new_splits in + aux ch None dl env new_splits + 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 +407,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 -> @@ -427,9 +431,9 @@ 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] + 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,_,_,_) = @@ -484,11 +488,15 @@ module Main_Default : S = struct 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 = { t with gamma_finite = t.gamma } 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 @@ -496,8 +504,10 @@ module Main_Default : S = struct let uf = CC_X.get_union_find t.gamma in let filt_choices = filter_choices uf t.choices in Debug.split_sat_contradicts_cs filt_choices; + (* re-init gamma_finite with gamma *) + let t = { t with gamma_finite = t.gamma } 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 +557,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 +567,18 @@ 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 + (* facts are sorted in decreasing order with respect to (dlvl, plvl) *) let assume ordered in_facts t = let facts = CC_X.empty_facts () in @@ -744,17 +760,17 @@ 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; _}, _ = + do_case_split_aux env ~for_model:true in + CC_X.extract_concrete_model + ~prop_model:env.assumed_set + 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 () @@ -785,13 +801,13 @@ 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 () = () + end diff --git a/src/lib/reasoners/theory.mli b/src/lib/reasoners/theory.mli index 9a47dac9e..6105343d2 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 : @@ -60,15 +62,8 @@ module type S = sig 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 *) - + (** Reinitializes the internal counter. *) end module Main_Default : S diff --git a/src/lib/reasoners/uf.ml b/src/lib/reasoners/uf.ml index b16f6a854..f1d7ddb76 100644 --- a/src/lib/reasoners/uf.ml +++ b/src/lib/reasoners/uf.ml @@ -1031,6 +1031,7 @@ let compute_concrete_model ({ make; _ } as env) = && 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 + || Sy.is_internal f then acc else @@ -1074,14 +1075,20 @@ let compute_concrete_model ({ make; _ } as env) = ) make (ModelMap.empty, ModelMap.empty, ModelMap.empty, ME.empty) -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 () let reinit_cache () = LX.reinit_cache () + +let extract_concrete_model ~prop_model env = + if Options.get_interpretation () then + Some (lazy ( + let functions, constants, arrays, _mrepr = + compute_concrete_model env + in + { Models.propositional = prop_model; + functions; constants; arrays } + )) + else + None diff --git a/src/lib/reasoners/uf.mli b/src/lib/reasoners/uf.mli index ddd80b567..e6e6d7f73 100644 --- a/src/lib/reasoners/uf.mli +++ b/src/lib/reasoners/uf.mli @@ -71,14 +71,11 @@ 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 -> t -> - unit + Models.t Lazy.t option (** saves the module's cache *) val save_cache : unit -> unit diff --git a/src/lib/structures/symbols.ml b/src/lib/structures/symbols.ml index e0fa1cef6..437384a42 100644 --- a/src/lib/structures/symbols.ml +++ b/src/lib/structures/symbols.ml @@ -122,6 +122,14 @@ let is_ac x = match x with | Name(_, Ac, _) -> true | _ -> false +let is_internal sy = + match sy with + | Name (hs, _, _) -> + let s = Hstring.view hs in + Compat.String.starts_with ~prefix:"." s || + Compat.String.starts_with ~prefix:"@" s + | _ -> false + let underscore = Random.self_init (); var @@ Var.of_string @@ Format.sprintf "_%d" (Random.int 1_000_000) diff --git a/src/lib/structures/symbols.mli b/src/lib/structures/symbols.mli index 6cf275e44..6ee5543cb 100644 --- a/src/lib/structures/symbols.mli +++ b/src/lib/structures/symbols.mli @@ -109,6 +109,10 @@ val mk_maps_to : Var.t -> t val is_ac : t -> bool +val is_internal : t -> bool +(** Check if the symbol is internal name that should never be printed on the + regular output. *) + val equal : t -> t -> bool val compare : t -> t -> int val compare_bounds : bound -> bound -> int diff --git a/src/lib/util/printer.ml b/src/lib/util/printer.ml index c67e670b7..983cbaa67 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. + See issue https://github.com/OCamlPro/alt-ergo/issues/834. *) 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/tests/cram.t/run.t b/tests/cram.t/run.t index 3839345ac..187dc2748 100644 --- a/tests/cram.t/run.t +++ b/tests/cram.t/run.t @@ -59,7 +59,7 @@ This should be the case Tableaux solver as well: (error "Model generation disabled (try --produce-models)") The messages above mention `--produce-models`, but we can also use -`set-option`. This requires the Tableaux solver, however: +`set-option`. $ echo '(get-model)' | alt-ergo --frontend dolmen --produce-models -i smtlib2 -o smtlib2 (error "No model produced.") @@ -67,12 +67,7 @@ The messages above mention `--produce-models`, but we can also use $ echo '(set-option :produce-models true)(get-model)' | alt-ergo --frontend dolmen --sat-solver Tableaux -i smtlib2 -o smtlib2 (error "No model produced.") - $ echo '(set-option :produce-models true)(get-model)' | alt-ergo --frontend dolmen -i smtlib2 -o smtlib2 - (error "Model generation requires the Tableaux solver (try --produce-models)") - (error "Model generation disabled (try --produce-models)") - -And now some cases where it should work (using either `--produce-models` or -`Tableaux` with `set-option`): +And now some cases where it should work (using either `--produce-models` or `set-option`): $ echo '(check-sat)(get-model)' | alt-ergo --frontend dolmen --produce-models -i smtlib2 -o smtlib2 2>/dev/null @@ -80,6 +75,11 @@ And now some cases where it should work (using either `--produce-models` or ( ) + $ echo '(set-option :produce-models true)(check-sat)(get-model)' | alt-ergo --frontend dolmen -i smtlib2 -o smtlib2 2>/dev/null + + unknown + ( + ) $ echo '(set-option :produce-models true)(check-sat)(get-model)' | alt-ergo --frontend dolmen --sat-solver Tableaux -i smtlib2 -o smtlib2 2>/dev/null unknown diff --git a/tests/dune.inc b/tests/dune.inc index fa3c71566..1413e9191 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,12 +175616,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)))) ; Auto-generated part end ; File auto-generated by gentests @@ -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_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 777.models.expected 777.models_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,10 +176453,11 @@ --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)) @@ -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_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 555.models.expected 555.models_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,10 +192229,11 @@ --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 @@ -195248,10 +192256,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff arith2.models.expected arith2.models_tableaux.output))) + (deps arith2.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff arith2.models.expected arith2.models_tableaux.output))) (rule (target arith1.models_tableaux.output) (deps (:input arith1.models.smt2)) @@ -195269,10 +192278,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff arith1.models.expected arith1.models_tableaux.output)))) + (deps arith1.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff arith1.models.expected arith1.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -195295,10 +192305,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff array1.models.expected array1.models_tableaux.output)))) + (deps array1.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff array1.models.expected array1.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -195321,10 +192332,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bool2.models.expected bool2.models_tableaux.output))) + (deps bool2.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bool2.models.expected bool2.models_tableaux.output))) (rule (target bool1.models_tableaux.output) (deps (:input bool1.models.smt2)) @@ -195342,10 +192354,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff bool1.models.expected bool1.models_tableaux.output)))) + (deps bool1.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff bool1.models.expected bool1.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -195368,10 +192381,11 @@ --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 @@ -195394,10 +192408,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_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff 715_2.models.expected 715_2.models_tableaux.output))) (rule (target 715_1.models_tableaux.output) (deps (:input 715_1.models.ae)) @@ -195415,10 +192430,11 @@ --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 @@ -195441,10 +192457,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff record1.models.expected record1.models_tableaux.output)))) + (deps record1.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff record1.models.expected record1.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -195467,10 +192484,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff uf2.models.expected uf2.models_tableaux.output))) + (deps uf2.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff uf2.models.expected uf2.models_tableaux.output))) (rule (target uf1.models_tableaux.output) (deps (:input uf1.models.smt2)) @@ -195488,10 +192506,11 @@ --sat-solver Tableaux %{input}))))))) (rule - (alias runtest-quick) - (package alt-ergo) - (action - (diff uf1.models.expected uf1.models_tableaux.output)))) + (deps uf1.models_tableaux.output) + (alias runtest-quick) + (package alt-ergo) + (action + (diff uf1.models.expected uf1.models_tableaux.output)))) ; Auto-generated part end ; File auto-generated by gentests @@ -195515,12 +192534,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)) @@ -195541,12 +192559,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)) @@ -195566,12 +192583,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)) @@ -195590,12 +192606,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)) @@ -195614,12 +192629,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)) @@ -195638,12 +192652,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)) @@ -195661,12 +192674,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)) @@ -195684,12 +192696,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)) @@ -195707,12 +192718,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)) @@ -195729,12 +192739,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)) @@ -195751,12 +192760,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)) @@ -195773,12 +192781,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)) @@ -195797,12 +192804,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)) @@ -195823,12 +192829,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)) @@ -195848,12 +192853,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)) @@ -195872,12 +192876,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)) @@ -195896,12 +192899,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)) @@ -195920,12 +192922,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)) @@ -195943,12 +192944,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)) @@ -195966,12 +192966,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)) @@ -195989,12 +192988,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)) @@ -196011,12 +193009,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)) @@ -196033,12 +193030,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)) @@ -196055,12 +193051,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)) @@ -196079,12 +193074,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)) @@ -196105,12 +193099,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)) @@ -196130,12 +193123,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)) @@ -196154,12 +193146,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)) @@ -196178,12 +193169,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)) @@ -196202,12 +193192,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)) @@ -196225,12 +193214,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)) @@ -196248,12 +193236,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)) @@ -196271,12 +193258,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)) @@ -196293,12 +193279,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)) @@ -196315,12 +193300,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)) @@ -196337,12 +193321,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)) @@ -196361,12 +193344,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)) @@ -196387,12 +193369,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)) @@ -196412,12 +193393,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)) @@ -196436,12 +193416,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)) @@ -196460,12 +193439,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)) @@ -196484,12 +193462,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)) @@ -196507,12 +193484,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)) @@ -196530,12 +193506,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)) @@ -196553,12 +193528,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)) @@ -196575,12 +193549,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)) @@ -196597,12 +193570,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)) @@ -196619,12 +193591,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)) @@ -196643,12 +193614,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)) @@ -196669,12 +193639,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)) @@ -196694,12 +193663,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)) @@ -196718,12 +193686,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)) @@ -196742,12 +193709,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)) @@ -196766,12 +193732,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)) @@ -196789,12 +193754,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)) @@ -196812,12 +193776,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)) @@ -196835,12 +193798,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)) @@ -196857,12 +193819,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)) @@ -196879,12 +193840,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)) @@ -196901,12 +193861,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)) @@ -196925,12 +193884,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)) @@ -196951,12 +193909,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)) @@ -196976,12 +193933,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)) @@ -197000,12 +193956,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)) @@ -197024,12 +193979,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)) @@ -197048,12 +194002,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)) @@ -197071,12 +194024,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)) @@ -197094,12 +194046,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)) @@ -197117,12 +194068,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)) @@ -197139,12 +194089,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)) @@ -197161,12 +194110,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)) @@ -197183,12 +194131,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)) @@ -197207,12 +194154,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)) @@ -197233,12 +194179,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)) @@ -197258,12 +194203,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)) @@ -197282,12 +194226,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)) @@ -197306,12 +194249,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)) @@ -197330,12 +194272,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)) @@ -197353,12 +194294,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)) @@ -197376,12 +194316,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)) @@ -197399,12 +194338,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)) @@ -197421,12 +194359,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)) @@ -197443,12 +194380,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)) @@ -197465,12 +194401,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)) @@ -197489,12 +194424,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)) @@ -197515,12 +194449,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)) @@ -197540,12 +194473,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)) @@ -197564,12 +194496,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)) @@ -197588,12 +194519,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)) @@ -197612,12 +194542,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)) @@ -197635,12 +194564,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)) @@ -197658,12 +194586,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)) @@ -197681,12 +194608,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)) @@ -197703,12 +194629,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)) @@ -197725,12 +194650,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)) @@ -197747,12 +194671,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 @@ -197776,12 +194699,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)) @@ -197802,12 +194724,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)) @@ -197827,12 +194748,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)) @@ -197851,12 +194771,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)) @@ -197875,12 +194794,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)) @@ -197899,12 +194817,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)) @@ -197922,10 +194839,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)) @@ -197943,12 +194861,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)) @@ -197966,10 +194883,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)) @@ -197986,10 +194904,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)) @@ -198006,10 +194925,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)) @@ -198026,10 +194946,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)) @@ -198048,12 +194969,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)) @@ -198074,12 +194994,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)) @@ -198099,12 +195018,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)) @@ -198123,12 +195041,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)) @@ -198147,12 +195064,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)) @@ -198171,12 +195087,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)) @@ -198194,10 +195109,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)) @@ -198215,12 +195131,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)) @@ -198238,10 +195153,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)) @@ -198258,10 +195174,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)) @@ -198278,10 +195195,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)) @@ -198298,10 +195216,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)) @@ -198320,12 +195239,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)) @@ -198346,12 +195264,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)) @@ -198371,12 +195288,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)) @@ -198395,12 +195311,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)) @@ -198419,12 +195334,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)) @@ -198443,12 +195357,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)) @@ -198466,10 +195379,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)) @@ -198487,12 +195401,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)) @@ -198510,10 +195423,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)) @@ -198530,10 +195444,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)) @@ -198550,10 +195465,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)) @@ -198570,10 +195486,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)) @@ -198592,12 +195509,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)) @@ -198618,12 +195534,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)) @@ -198643,12 +195558,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)) @@ -198667,12 +195581,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)) @@ -198691,12 +195604,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)) @@ -198715,12 +195627,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)) @@ -198738,10 +195649,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)) @@ -198759,12 +195671,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)) @@ -198782,10 +195693,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)) @@ -198802,10 +195714,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)) @@ -198822,10 +195735,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)) @@ -198842,10 +195756,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)) @@ -198864,12 +195779,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)) @@ -198890,12 +195804,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)) @@ -198915,12 +195828,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)) @@ -198939,12 +195851,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)) @@ -198963,12 +195874,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)) @@ -198987,12 +195897,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)) @@ -199010,10 +195919,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)) @@ -199031,12 +195941,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)) @@ -199054,10 +195963,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)) @@ -199074,10 +195984,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)) @@ -199094,10 +196005,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)) @@ -199114,10 +196026,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)) @@ -199136,12 +196049,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)) @@ -199162,12 +196074,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)) @@ -199187,12 +196098,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)) @@ -199211,12 +196121,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)) @@ -199235,12 +196144,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)) @@ -199259,12 +196167,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)) @@ -199282,10 +196189,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)) @@ -199303,12 +196211,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)) @@ -199326,10 +196233,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)) @@ -199346,10 +196254,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)) @@ -199366,10 +196275,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)) @@ -199386,10 +196296,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)) @@ -199408,12 +196319,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)) @@ -199434,12 +196344,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)) @@ -199459,12 +196368,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)) @@ -199483,12 +196391,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)) @@ -199507,12 +196414,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)) @@ -199531,12 +196437,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)) @@ -199554,10 +196459,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)) @@ -199575,12 +196481,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)) @@ -199598,10 +196503,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)) @@ -199618,10 +196524,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)) @@ -199638,10 +196545,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)) @@ -199658,10 +196566,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)) @@ -199680,12 +196589,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)) @@ -199706,12 +196614,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)) @@ -199731,12 +196638,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)) @@ -199755,12 +196661,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)) @@ -199779,12 +196684,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)) @@ -199803,12 +196707,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)) @@ -199826,10 +196729,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)) @@ -199847,12 +196751,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)) @@ -199870,10 +196773,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)) @@ -199890,10 +196794,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)) @@ -199910,10 +196815,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)) @@ -199930,10 +196836,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)) @@ -199952,12 +196859,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)) @@ -199978,12 +196884,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)) @@ -200003,12 +196908,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)) @@ -200027,12 +196931,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)) @@ -200051,12 +196954,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)) @@ -200075,12 +196977,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)) @@ -200098,10 +196999,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)) @@ -200119,12 +197021,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)) @@ -200142,10 +197043,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)) @@ -200162,10 +197064,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)) @@ -200182,10 +197085,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)) @@ -200202,10 +197106,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)) @@ -200224,12 +197129,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)) @@ -200250,12 +197154,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)) @@ -200275,12 +197178,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)) @@ -200299,12 +197201,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)) @@ -200323,12 +197224,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)) @@ -200347,12 +197247,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)) @@ -200370,10 +197269,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)) @@ -200391,12 +197291,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)) @@ -200414,10 +197313,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)) @@ -200434,10 +197334,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)) @@ -200454,10 +197355,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)) @@ -200474,10 +197376,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)) @@ -200496,12 +197399,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)) @@ -200522,12 +197424,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)) @@ -200547,12 +197448,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)) @@ -200571,12 +197471,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)) @@ -200595,12 +197494,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)) @@ -200619,12 +197517,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)) @@ -200642,10 +197539,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)) @@ -200663,12 +197561,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)) @@ -200686,10 +197583,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)) @@ -200706,10 +197604,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)) @@ -200726,10 +197625,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)) @@ -200746,10 +197646,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)) @@ -200768,12 +197669,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)) @@ -200794,12 +197694,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)) @@ -200819,12 +197718,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)) @@ -200843,12 +197741,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)) @@ -200867,12 +197764,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)) @@ -200891,12 +197787,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)) @@ -200914,10 +197809,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)) @@ -200935,12 +197831,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)) @@ -200958,10 +197853,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)) @@ -200978,10 +197874,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)) @@ -200998,10 +197895,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)) @@ -201018,10 +197916,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)) @@ -201040,12 +197939,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)) @@ -201066,12 +197964,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)) @@ -201091,12 +197988,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)) @@ -201115,12 +198011,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)) @@ -201139,12 +198034,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)) @@ -201163,12 +198057,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)) @@ -201186,10 +198079,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)) @@ -201207,12 +198101,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)) @@ -201230,10 +198123,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)) @@ -201250,10 +198144,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)) @@ -201270,10 +198165,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)) @@ -201290,10 +198186,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)) @@ -201312,12 +198209,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)) @@ -201338,12 +198234,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)) @@ -201363,12 +198258,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)) @@ -201387,12 +198281,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)) @@ -201411,12 +198304,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)) @@ -201435,12 +198327,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)) @@ -201458,10 +198349,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)) @@ -201479,12 +198371,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)) @@ -201502,10 +198393,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)) @@ -201522,10 +198414,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)) @@ -201542,10 +198435,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)) @@ -201562,10 +198456,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)) @@ -201584,12 +198479,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)) @@ -201610,12 +198504,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)) @@ -201635,12 +198528,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)) @@ -201659,12 +198551,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)) @@ -201683,12 +198574,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)) @@ -201707,12 +198597,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)) @@ -201730,12 +198619,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)) @@ -201753,12 +198641,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)) @@ -201776,12 +198663,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)) @@ -201798,12 +198684,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)) @@ -201820,12 +198705,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)) @@ -201842,12 +198726,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)) @@ -201866,12 +198749,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)) @@ -201892,12 +198774,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)) @@ -201917,12 +198798,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)) @@ -201941,12 +198821,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)) @@ -201965,12 +198844,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)) @@ -201989,12 +198867,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)) @@ -202012,12 +198889,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)) @@ -202035,12 +198911,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)) @@ -202058,12 +198933,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)) @@ -202080,12 +198954,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)) @@ -202102,12 +198975,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)) @@ -202124,12 +198996,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)) @@ -202148,12 +199019,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)) @@ -202174,12 +199044,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)) @@ -202199,12 +199068,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)) @@ -202223,12 +199091,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)) @@ -202247,12 +199114,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)) @@ -202271,12 +199137,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)) @@ -202294,10 +199159,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)) @@ -202315,10 +199181,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)) @@ -202336,10 +199203,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)) @@ -202356,10 +199224,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)) @@ -202376,10 +199245,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)) @@ -202396,10 +199266,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)) @@ -202418,12 +199289,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)) @@ -202444,12 +199314,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)) @@ -202469,12 +199338,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)) @@ -202493,12 +199361,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)) @@ -202517,12 +199384,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)) @@ -202541,12 +199407,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)) @@ -202564,10 +199429,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)) @@ -202585,10 +199451,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)) @@ -202606,10 +199473,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)) @@ -202626,10 +199494,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)) @@ -202646,10 +199515,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)) @@ -202666,10 +199536,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)) @@ -202688,12 +199559,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)) @@ -202714,12 +199584,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)) @@ -202739,12 +199608,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)) @@ -202763,12 +199631,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)) @@ -202787,12 +199654,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)) @@ -202811,12 +199677,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)) @@ -202834,10 +199699,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)) @@ -202855,10 +199721,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)) @@ -202876,10 +199743,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)) @@ -202896,10 +199764,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)) @@ -202916,10 +199785,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)) @@ -202936,10 +199806,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)) @@ -202958,12 +199829,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)) @@ -202984,12 +199854,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)) @@ -203009,12 +199878,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)) @@ -203033,12 +199901,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)) @@ -203057,12 +199924,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)) @@ -203081,12 +199947,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)) @@ -203104,10 +199969,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)) @@ -203125,10 +199991,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)) @@ -203146,10 +200013,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)) @@ -203166,10 +200034,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)) @@ -203186,10 +200055,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)) @@ -203206,10 +200076,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)) @@ -203228,12 +200099,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)) @@ -203254,12 +200124,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)) @@ -203279,12 +200148,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)) @@ -203303,12 +200171,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)) @@ -203327,12 +200194,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)) @@ -203351,12 +200217,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)) @@ -203374,10 +200239,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)) @@ -203395,10 +200261,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)) @@ -203416,10 +200283,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)) @@ -203436,10 +200304,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)) @@ -203456,10 +200325,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)) @@ -203476,10 +200346,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)) @@ -203498,12 +200369,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)) @@ -203524,12 +200394,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)) @@ -203549,12 +200418,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)) @@ -203573,12 +200441,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)) @@ -203597,12 +200464,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)) @@ -203621,12 +200487,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)) @@ -203644,10 +200509,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)) @@ -203665,10 +200531,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)) @@ -203686,10 +200553,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)) @@ -203706,10 +200574,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)) @@ -203726,10 +200595,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)) @@ -203746,10 +200616,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)) @@ -203768,12 +200639,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)) @@ -203794,12 +200664,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)) @@ -203819,12 +200688,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)) @@ -203843,12 +200711,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)) @@ -203867,12 +200734,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)) @@ -203891,12 +200757,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)) @@ -203914,10 +200779,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)) @@ -203935,10 +200801,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)) @@ -203956,10 +200823,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)) @@ -203976,10 +200844,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)) @@ -203996,10 +200865,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)) @@ -204016,10 +200886,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)) @@ -204038,12 +200909,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)) @@ -204064,12 +200934,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)) @@ -204089,12 +200958,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)) @@ -204113,12 +200981,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)) @@ -204137,12 +201004,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)) @@ -204161,12 +201027,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)) @@ -204184,10 +201049,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)) @@ -204205,10 +201071,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)) @@ -204226,10 +201093,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)) @@ -204246,10 +201114,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)) @@ -204266,10 +201135,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)) @@ -204286,10 +201156,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)) @@ -204308,12 +201179,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)) @@ -204334,12 +201204,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)) @@ -204359,12 +201228,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)) @@ -204383,12 +201251,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)) @@ -204407,12 +201274,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)) @@ -204431,12 +201297,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)) @@ -204454,10 +201319,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)) @@ -204475,10 +201341,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)) @@ -204496,10 +201363,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)) @@ -204516,10 +201384,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)) @@ -204536,10 +201405,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)) @@ -204556,10 +201426,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)) @@ -204578,12 +201449,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)) @@ -204604,12 +201474,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)) @@ -204629,12 +201498,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)) @@ -204653,12 +201521,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)) @@ -204677,12 +201544,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)) @@ -204701,12 +201567,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)) @@ -204724,10 +201589,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)) @@ -204745,10 +201611,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)) @@ -204766,10 +201633,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)) @@ -204786,10 +201654,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)) @@ -204806,10 +201675,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)) @@ -204826,10 +201696,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)) @@ -204848,12 +201719,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)) @@ -204874,12 +201744,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)) @@ -204899,12 +201768,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)) @@ -204923,12 +201791,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)) @@ -204947,12 +201814,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)) @@ -204971,12 +201837,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)) @@ -204994,10 +201859,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)) @@ -205015,10 +201881,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)) @@ -205036,10 +201903,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)) @@ -205056,10 +201924,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)) @@ -205076,10 +201945,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)) @@ -205096,10 +201966,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)) @@ -205118,12 +201989,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)) @@ -205144,12 +202014,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)) @@ -205169,12 +202038,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)) @@ -205193,12 +202061,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)) @@ -205217,12 +202084,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)) @@ -205241,12 +202107,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)) @@ -205264,10 +202129,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)) @@ -205285,10 +202151,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)) @@ -205306,10 +202173,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)) @@ -205326,10 +202194,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)) @@ -205346,10 +202215,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)) @@ -205366,10 +202236,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)) @@ -205388,12 +202259,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)) @@ -205414,12 +202284,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)) @@ -205439,12 +202308,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)) @@ -205463,12 +202331,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)) @@ -205487,12 +202354,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)) @@ -205511,12 +202377,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)) @@ -205534,10 +202399,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)) @@ -205555,12 +202421,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)) @@ -205578,10 +202443,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)) @@ -205598,10 +202464,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)) @@ -205618,10 +202485,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)) @@ -205638,10 +202506,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)) @@ -205660,12 +202529,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)) @@ -205686,12 +202554,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)) @@ -205711,12 +202578,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)) @@ -205735,12 +202601,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)) @@ -205759,12 +202624,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)) @@ -205783,12 +202647,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)) @@ -205806,10 +202669,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)) @@ -205827,12 +202691,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)) @@ -205850,10 +202713,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)) @@ -205870,10 +202734,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)) @@ -205890,10 +202755,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)) @@ -205910,10 +202776,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)) @@ -205932,12 +202799,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)) @@ -205958,12 +202824,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)) @@ -205983,12 +202848,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)) @@ -206007,12 +202871,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)) @@ -206031,12 +202894,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)) @@ -206055,12 +202917,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)) @@ -206078,10 +202939,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)) @@ -206099,12 +202961,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)) @@ -206122,10 +202983,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)) @@ -206142,10 +203004,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)) @@ -206162,10 +203025,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)) @@ -206182,10 +203046,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 @@ -206209,12 +203074,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)) @@ -206235,12 +203099,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)) @@ -206260,12 +203123,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)) @@ -206284,12 +203146,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)) @@ -206308,12 +203169,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)) @@ -206332,12 +203192,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)) @@ -206355,12 +203214,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)) @@ -206378,12 +203236,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)) @@ -206401,12 +203258,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)) @@ -206423,12 +203279,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)) @@ -206445,12 +203300,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)) @@ -206467,12 +203321,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)) @@ -206491,12 +203344,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)) @@ -206517,12 +203369,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)) @@ -206542,12 +203393,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)) @@ -206566,12 +203416,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)) @@ -206590,12 +203439,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)) @@ -206614,12 +203462,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)) @@ -206637,12 +203484,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)) @@ -206660,12 +203506,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)) @@ -206683,12 +203528,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)) @@ -206705,12 +203549,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)) @@ -206727,12 +203570,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)) @@ -206749,12 +203591,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)) @@ -206773,12 +203614,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)) @@ -206799,12 +203639,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)) @@ -206824,12 +203663,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)) @@ -206848,12 +203686,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)) @@ -206872,12 +203709,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)) @@ -206896,12 +203732,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)) @@ -206919,10 +203754,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)) @@ -206940,10 +203776,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)) @@ -206961,10 +203798,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)) @@ -206981,10 +203819,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)) @@ -207001,10 +203840,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)) @@ -207021,10 +203861,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)) @@ -207043,12 +203884,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)) @@ -207069,12 +203909,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)) @@ -207094,12 +203933,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)) @@ -207118,12 +203956,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)) @@ -207142,12 +203979,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)) @@ -207166,12 +204002,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)) @@ -207189,10 +204024,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)) @@ -207210,10 +204046,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)) @@ -207231,10 +204068,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)) @@ -207251,10 +204089,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)) @@ -207271,10 +204110,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)) @@ -207291,10 +204131,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)) @@ -207313,12 +204154,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)) @@ -207339,12 +204179,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)) @@ -207364,12 +204203,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)) @@ -207388,12 +204226,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)) @@ -207412,12 +204249,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)) @@ -207436,12 +204272,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)) @@ -207459,10 +204294,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)) @@ -207480,10 +204316,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)) @@ -207501,10 +204338,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)) @@ -207521,10 +204359,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)) @@ -207541,10 +204380,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)) @@ -207561,10 +204401,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)) @@ -207583,12 +204424,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)) @@ -207609,12 +204449,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)) @@ -207634,12 +204473,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)) @@ -207658,12 +204496,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)) @@ -207682,12 +204519,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)) @@ -207706,12 +204542,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)) @@ -207729,10 +204564,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)) @@ -207750,10 +204586,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)) @@ -207771,10 +204608,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)) @@ -207791,10 +204629,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)) @@ -207811,10 +204650,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)) @@ -207831,10 +204671,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)) @@ -207853,12 +204694,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)) @@ -207879,12 +204719,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)) @@ -207904,12 +204743,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)) @@ -207928,12 +204766,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)) @@ -207952,12 +204789,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)) @@ -207976,12 +204812,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)) @@ -207999,10 +204834,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)) @@ -208020,10 +204856,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)) @@ -208041,10 +204878,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)) @@ -208061,10 +204899,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)) @@ -208081,10 +204920,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)) @@ -208101,10 +204941,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)) @@ -208123,12 +204964,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)) @@ -208149,12 +204989,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)) @@ -208174,12 +205013,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)) @@ -208198,12 +205036,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)) @@ -208222,12 +205059,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)) @@ -208246,12 +205082,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)) @@ -208269,10 +205104,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)) @@ -208290,10 +205126,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)) @@ -208311,10 +205148,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)) @@ -208331,10 +205169,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)) @@ -208351,10 +205190,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)) @@ -208371,10 +205211,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)) @@ -208393,12 +205234,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)) @@ -208419,12 +205259,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)) @@ -208444,12 +205283,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)) @@ -208468,12 +205306,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)) @@ -208492,12 +205329,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)) @@ -208516,12 +205352,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)) @@ -208539,10 +205374,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)) @@ -208560,10 +205396,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)) @@ -208581,10 +205418,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)) @@ -208601,10 +205439,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)) @@ -208621,10 +205460,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)) @@ -208641,10 +205481,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)) @@ -208663,12 +205504,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)) @@ -208689,12 +205529,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)) @@ -208714,12 +205553,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)) @@ -208738,12 +205576,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)) @@ -208762,12 +205599,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)) @@ -208786,12 +205622,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)) @@ -208809,10 +205644,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)) @@ -208830,10 +205666,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)) @@ -208851,10 +205688,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)) @@ -208871,10 +205709,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)) @@ -208891,10 +205730,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)) @@ -208911,10 +205751,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)) @@ -208933,12 +205774,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)) @@ -208959,12 +205799,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)) @@ -208984,12 +205823,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)) @@ -209008,12 +205846,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)) @@ -209032,12 +205869,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)) @@ -209056,12 +205892,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)) @@ -209079,10 +205914,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)) @@ -209100,10 +205936,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)) @@ -209121,10 +205958,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)) @@ -209141,10 +205979,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)) @@ -209161,10 +206000,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)) @@ -209181,10 +206021,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)) @@ -209203,12 +206044,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)) @@ -209229,12 +206069,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)) @@ -209254,12 +206093,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)) @@ -209278,12 +206116,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)) @@ -209302,12 +206139,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)) @@ -209326,12 +206162,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)) @@ -209349,10 +206184,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)) @@ -209370,10 +206206,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)) @@ -209391,10 +206228,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)) @@ -209411,10 +206249,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)) @@ -209431,10 +206270,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)) @@ -209451,10 +206291,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)) @@ -209473,12 +206314,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)) @@ -209499,12 +206339,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)) @@ -209524,12 +206363,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)) @@ -209548,12 +206386,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)) @@ -209572,12 +206409,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)) @@ -209596,12 +206432,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)) @@ -209619,10 +206454,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)) @@ -209640,10 +206476,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)) @@ -209661,10 +206498,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)) @@ -209681,10 +206519,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)) @@ -209701,10 +206540,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)) @@ -209721,10 +206561,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)) @@ -209743,12 +206584,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)) @@ -209769,12 +206609,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)) @@ -209794,12 +206633,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)) @@ -209818,12 +206656,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)) @@ -209842,12 +206679,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)) @@ -209866,12 +206702,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)) @@ -209889,10 +206724,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)) @@ -209910,10 +206746,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)) @@ -209931,10 +206768,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)) @@ -209951,10 +206789,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)) @@ -209971,10 +206810,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)) @@ -209991,10 +206831,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)) @@ -210013,12 +206854,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)) @@ -210039,12 +206879,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)) @@ -210064,12 +206903,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)) @@ -210088,12 +206926,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)) @@ -210112,12 +206949,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)) @@ -210136,12 +206972,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)) @@ -210159,10 +206994,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)) @@ -210180,10 +207016,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)) @@ -210201,10 +207038,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)) @@ -210221,10 +207059,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)) @@ -210241,10 +207080,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)) @@ -210261,10 +207101,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)) @@ -210283,12 +207124,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)) @@ -210309,12 +207149,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)) @@ -210334,12 +207173,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)) @@ -210358,12 +207196,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)) @@ -210382,12 +207219,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)) @@ -210406,12 +207242,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)) @@ -210429,10 +207264,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)) @@ -210450,10 +207286,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)) @@ -210471,10 +207308,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)) @@ -210491,10 +207329,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)) @@ -210511,10 +207350,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)) @@ -210531,10 +207371,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)) @@ -210553,12 +207394,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)) @@ -210579,12 +207419,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)) @@ -210604,12 +207443,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)) @@ -210628,12 +207466,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)) @@ -210652,12 +207489,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)) @@ -210676,12 +207512,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)) @@ -210699,10 +207534,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)) @@ -210720,10 +207556,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)) @@ -210741,10 +207578,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)) @@ -210761,10 +207599,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)) @@ -210781,10 +207620,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)) @@ -210801,10 +207641,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)) @@ -210823,12 +207664,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)) @@ -210849,12 +207689,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)) @@ -210874,12 +207713,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)) @@ -210898,12 +207736,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)) @@ -210922,12 +207759,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)) @@ -210946,12 +207782,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)) @@ -210969,10 +207804,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)) @@ -210990,10 +207826,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)) @@ -211011,10 +207848,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)) @@ -211031,10 +207869,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)) @@ -211051,10 +207890,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)) @@ -211071,10 +207911,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)) @@ -211093,12 +207934,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)) @@ -211119,12 +207959,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)) @@ -211144,12 +207983,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)) @@ -211168,12 +208006,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)) @@ -211192,12 +208029,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)) @@ -211216,12 +208052,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)) @@ -211239,10 +208074,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)) @@ -211260,10 +208096,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)) @@ -211281,10 +208118,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)) @@ -211301,10 +208139,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)) @@ -211321,10 +208160,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)) @@ -211341,10 +208181,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 @@ -211368,12 +208209,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)) @@ -211394,12 +208234,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)) @@ -211419,12 +208258,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)) @@ -211443,12 +208281,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)) @@ -211467,12 +208304,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)) @@ -211491,12 +208327,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)) @@ -211514,10 +208349,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)) @@ -211535,12 +208371,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)) @@ -211558,10 +208393,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)) @@ -211578,10 +208414,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)) @@ -211598,10 +208435,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)) @@ -211618,10 +208456,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)) @@ -211640,12 +208479,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)) @@ -211666,12 +208504,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)) @@ -211691,12 +208528,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)) @@ -211715,12 +208551,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)) @@ -211739,12 +208574,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)) @@ -211763,12 +208597,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)) @@ -211786,10 +208619,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)) @@ -211807,12 +208641,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)) @@ -211830,10 +208663,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)) @@ -211850,10 +208684,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)) @@ -211870,10 +208705,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)) @@ -211890,10 +208726,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)) @@ -211912,12 +208749,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)) @@ -211938,12 +208774,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)) @@ -211963,12 +208798,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)) @@ -211987,12 +208821,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)) @@ -212011,12 +208844,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)) @@ -212035,12 +208867,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)) @@ -212058,10 +208889,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)) @@ -212079,12 +208911,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)) @@ -212102,10 +208933,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)) @@ -212122,10 +208954,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)) @@ -212142,10 +208975,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)) @@ -212162,10 +208996,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)) @@ -212184,12 +209019,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)) @@ -212210,12 +209044,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)) @@ -212235,12 +209068,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)) @@ -212259,12 +209091,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)) @@ -212283,12 +209114,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)) @@ -212307,12 +209137,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)) @@ -212330,10 +209159,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)) @@ -212351,12 +209181,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)) @@ -212374,10 +209203,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)) @@ -212394,10 +209224,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)) @@ -212414,10 +209245,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)) @@ -212434,10 +209266,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)) @@ -212456,12 +209289,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)) @@ -212482,12 +209314,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)) @@ -212507,12 +209338,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)) @@ -212531,12 +209361,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)) @@ -212555,12 +209384,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)) @@ -212579,12 +209407,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)) @@ -212602,10 +209429,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)) @@ -212623,12 +209451,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)) @@ -212646,10 +209473,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)) @@ -212666,10 +209494,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)) @@ -212686,10 +209515,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)) @@ -212706,10 +209536,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)) @@ -212728,12 +209559,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)) @@ -212754,12 +209584,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)) @@ -212779,12 +209608,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)) @@ -212803,12 +209631,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)) @@ -212827,12 +209654,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)) @@ -212851,12 +209677,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)) @@ -212874,10 +209699,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)) @@ -212895,12 +209721,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)) @@ -212918,10 +209743,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)) @@ -212938,10 +209764,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)) @@ -212958,10 +209785,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)) @@ -212978,10 +209806,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)) @@ -213000,12 +209829,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)) @@ -213026,12 +209854,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)) @@ -213051,12 +209878,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)) @@ -213075,12 +209901,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)) @@ -213099,12 +209924,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)) @@ -213123,12 +209947,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)) @@ -213146,10 +209969,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)) @@ -213167,12 +209991,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)) @@ -213190,10 +210013,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)) @@ -213210,10 +210034,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)) @@ -213230,10 +210055,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)) @@ -213250,10 +210076,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)) @@ -213272,12 +210099,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)) @@ -213298,12 +210124,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)) @@ -213323,12 +210148,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)) @@ -213347,12 +210171,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)) @@ -213371,12 +210194,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)) @@ -213395,12 +210217,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)) @@ -213418,10 +210239,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)) @@ -213439,12 +210261,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)) @@ -213462,10 +210283,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)) @@ -213482,10 +210304,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)) @@ -213502,10 +210325,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)) @@ -213522,10 +210346,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)) @@ -213544,12 +210369,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)) @@ -213570,12 +210394,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)) @@ -213595,12 +210418,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)) @@ -213619,12 +210441,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)) @@ -213643,12 +210464,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)) @@ -213667,12 +210487,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)) @@ -213690,10 +210509,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)) @@ -213711,12 +210531,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)) @@ -213734,10 +210553,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)) @@ -213754,10 +210574,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)) @@ -213774,10 +210595,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)) @@ -213794,10 +210616,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)) @@ -213816,12 +210639,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)) @@ -213842,12 +210664,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)) @@ -213867,12 +210688,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)) @@ -213891,12 +210711,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)) @@ -213915,12 +210734,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)) @@ -213939,12 +210757,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)) @@ -213962,10 +210779,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)) @@ -213983,12 +210801,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)) @@ -214006,10 +210823,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)) @@ -214026,10 +210844,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)) @@ -214046,10 +210865,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)) @@ -214066,10 +210886,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)) @@ -214088,12 +210909,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)) @@ -214114,12 +210934,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)) @@ -214139,12 +210958,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)) @@ -214163,12 +210981,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)) @@ -214187,12 +211004,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)) @@ -214211,12 +211027,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)) @@ -214234,12 +211049,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)) @@ -214257,12 +211071,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)) @@ -214280,12 +211093,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)) @@ -214302,12 +211114,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)) @@ -214324,12 +211135,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)) @@ -214346,12 +211156,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)) @@ -214370,12 +211179,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)) @@ -214396,12 +211204,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)) @@ -214421,12 +211228,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)) @@ -214445,12 +211251,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)) @@ -214469,12 +211274,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)) @@ -214493,12 +211297,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)) @@ -214516,12 +211319,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)) @@ -214539,12 +211341,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)) @@ -214562,12 +211363,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)) @@ -214584,12 +211384,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)) @@ -214606,12 +211405,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)) @@ -214628,10 +211426,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/tools/gentest.ml b/tools/gentest.ml index db18949fc..92181b68a 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"] + "legacy" :: "fpa" :: exclude, + 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